[dba-issues] [Issue 110675] Macros assigned to Base F orm's When Loading event doesn't work

2010-04-08 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110675





--- Additional comments from mch...@openoffice.org Thu Apr  8 06:04:32 
+ 2010 ---
I couldn't replicate it on a MySQL database connected via unix ODBC under Ubuntu
9.10.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 104410] The command open to ope n a form in a directory doesn't work when you use ThisDatabaseDocument.

2009-08-21 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104410





--- Additional comments from mch...@openoffice.org Fri Aug 21 20:42:22 
+ 2009 ---
This issue is true for linux too. But I think the whole service is experimental
for now.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 94033] Form controls are put on t he screen extremely slow

2009-04-30 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94033





--- Additional comments from mch...@openoffice.org Thu Apr 30 17:20:12 
+ 2009 ---
I think this issue must be opened again for 3.1rc2.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100862] Macro assigned to Open Do cument for embedded forms is not called till t he db has been closed and reopened

2009-04-06 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100862





--- Additional comments from mch...@openoffice.org Mon Apr  6 15:42:48 
+ 2009 ---
I can confirm this but on 310m7.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 93815] Custom properties of Docum entInfo are not accessible by BASIC code

2008-10-07 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93815





--- Additional comments from [EMAIL PROTECTED] Tue Oct  7 15:44:03 + 
2008 ---
Please search the possibility that DocumentInfo service is depreciated in OOo
3.0 SDK. I don't have access to this SDK yet.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 93815] Custom properties of Docum entInfo are not accessible by BASIC code

2008-09-15 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93815





--- Additional comments from [EMAIL PROTECTED] Mon Sep 15 07:06:25 + 
2008 ---
I made some tests and I found out that it is more complicated. hasPropertyByName
method always returns true.

I don't know if assignment works because accessing a custom property always
returns a null string but in XRayTool the value is visible.

Please ab, can you investigate what the real problem is and change the 
description?

thank you.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 93815] Custom properties of Docum entInfo are not accessible by BASIC code

2008-09-12 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93815
 Issue #|93815
 Summary|Custom properties of DocumentInfo are not accessible b
|y BASIC code
   Component|framework
 Version|OOo 3.0 RC1
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|scripting
 Assigned to|ab
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Fri Sep 12 08:42:22 + 
2008 ---
Try the following code in any OOo document (I've already tried it on Writer
documents and on Base forms):

Sub Main

if ThisComponent.DocumentInfo.PropertySetInfo.hasPropertyByName(MyProperty) 
then

ThisComponent.DocumentInfo.MyProperty=MyValue

else

ThisComponent.DocumentInfo.addProperty(MyProperty,193,MyValue)

endif

print ThisComponent.DocumentInfo.MyProperty ' It prints a null string
REM you have to install XRayTool to run this line
Xray ThisComponent.DocumentInfo
REM XRay tool shows the correct string MyValue in MyProperty but when you
REM double click on it, it shows a null string (really weird).

End Sub

In conclusion every time I try to access a custom property from DocumentInfo the
program returns a null string. This was not the case with previous versions.

I tried it only on OOo 3 RC1 under Win XP.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 93815] Custom properties of Docum entInfo are not accessible by BASIC code

2008-09-12 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93815





--- Additional comments from [EMAIL PROTECTED] Fri Sep 12 08:44:07 + 
2008 ---
Created an attachment (id=56467)
A demo text file for this issue. Search the BASIC code.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87808] Writers changes paragraph styles in lists to Default

2008-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87808
 Issue #|87808
 Summary|Writers changes paragraph styles in lists to Default
   Component|Word processor
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|formatting
 Assigned to|mru
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Thu Apr  3 11:28:13 + 
2008 ---
Writer randomly changes paragraph styles of bulleted lists to Default.
The effect is totally random and it repeats itself upon exiting the program and
running it again.

The demo file that will follow is the README file of an OpenSource EMR database
(http://freshmeat.net/projects/mypatients) program I wrote. It is in Greek but
the effect is easily distinguishable. The first 31 pages are full of bulleted
lists of Text body style.

Opening the document, some paragraphs of some lists have Default style,
something that destroys the Intends and Spacing of the paragraph. You can change
it back to Text body and save it. Exit the program and open again the
document. Now some (same or different) paragraphs of some (same or different)
lists are again of style Default 

The effect is tested on 3 computers and under Windows XP/SP2 and Ubuntu 7.10.
I thought it was caused by the corrupted DejaVu Fonts installed by OOo 2.4
(which could be another issue candidate for filling - but this has nothing to do
with the OOo program itself but with the fonts), but the effect is repeated with
DejaVu-Free documents as well.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87808] Writers changes paragraph styles in lists to Default

2008-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87808





--- Additional comments from [EMAIL PROTECTED] Thu Apr  3 11:33:34 + 
2008 ---
Created an attachment (id=52495)
Check out the lists of the first 31 pages.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87808] Writers changes paragraph styles in lists to Default

2008-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87808





--- Additional comments from [EMAIL PROTECTED] Thu Apr  3 15:40:08 + 
2008 ---
I use native builds on both OS.
This time I opened the document I see different parts as Default like the last
line of page 10 and the whole list in pages 15 and 16.
Try subsequent openings exiting the program in the meantime.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87808] Writers changes paragraph styles in lists to Default

2008-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87808





--- Additional comments from [EMAIL PROTECTED] Thu Apr  3 21:00:07 + 
2008 ---
After two days of changing paragraph styles without success, finally I cut and
paste as unformatted text the parts that were causing problems and the document
remained stable since.

Maybe it was something in the formatting that caused the problem, maybe it was
DejaVu fonts that I used before on that document and messed up the XML. I can
not know.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 78503] ReplaceString and ArrayOut OfString Functions in Tools/String module refi nement

2007-10-18 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78503





--- Additional comments from [EMAIL PROTECTED] Thu Oct 18 08:39:24 + 
2007 ---
Here is the new code that can replace ReplaceString and ArrayOutOfString:

' Replaces the string OldReplace through the String NewReplace in the String
' 'BigString'
Function ReplaceString(ByVal Bigstring, NewReplace, OldReplace as String)  as 
String
ReplaceString=join(split(BigString,OldReplace),NewReplace)
End Function

' Retrieves an Array out of a String.
' The fields of the Array are separated by the parameter 'Separator', that is
contained
' in the Array
' The Array MaxIndex delivers the highest Index of this Array
Function ArrayOutOfString2(BigString, Separator as String, Optional MaxIndex as
Integer)
Dim LocList() as String
LocList=Split(BigString,Separator)
' The following line has no effect because it seems that Optional variables are
always passed
' as ByValue variables. But MaxIndex must remain in the function for
compatibility reasons
' The user of the function can always use ubund on the return value to get the
highest index
' of the array.

'   If not isMissing(MaxIndex) then maxIndex=ubound(LocList())  

ArrayOutOfString2=LocList
End Function

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 78503] ReplaceString and ArrayOut OfString Functions in Tools/String module refi nement

2007-10-18 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78503





--- Additional comments from [EMAIL PROTECTED] Thu Oct 18 08:41:12 + 
2007 ---
I will continue with code for FileNameOutOfPath using these techniques and the
undocumented function getSeparator.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[script-issues] [Issue 82588] iif function seems to eval uate both possible return values before decidi ng

2007-10-13 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82588
 Issue #|82588
 Summary|iif function seems to evaluate both possible return va
|lues before deciding
   Component|scripting
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|kr
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Sat Oct 13 19:43:05 + 
2007 ---
iif function seems to evaluate both possible return values before deciding what
to return. For example the following code:

x=10
y=0
print iif ( y0, x/y, error)

creates a Division by Zero runtime error instead of printing error.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 82287] Can not create New Documen t based on a named Template (without knowing i ts URL)

2007-10-05 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82287
 Issue #|82287
 Summary|Can not create New Document based on a named Template 
|(without knowing its URL)
   Component|framework
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|tm
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Fri Oct  5 11:24:18 + 
2007 ---
The following code is supposed to create a new Writer document based on a custom
some_template Template on My Templates template folder:

Sub createNewDoc
Dim md(2) as New com.sun.star.beans.PropertyValue
md(0).Name=TemplateName
md(0).Value=some_template
md(1).Name=TemplateRegionName
md(1).Value=My Templates
md(2).Name=AsTemplate
md(2).Value=TRUE
StarDesktop.loadComponentFromURL(private:factory/swriter,_blank,0,md)
End Sub

But it creates a new document based on default template.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 82287] Can not create New Documen t based on a named Template (without knowing i ts URL)

2007-10-05 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82287





--- Additional comments from [EMAIL PROTECTED] Fri Oct  5 11:27:07 + 
2007 ---
Created an attachment (id=48709)
This is a Wrieter document with a macro to demonstrate the bug (just create a 
some_template in My Templates first.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 82110] MacroExecutionMode do not work when loading Base Forms

2007-10-02 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82110





--- Additional comments from [EMAIL PROTECTED] Tue Oct  2 06:08:00 + 
2007 ---
Created an attachment (id=48642)
A demo ODB file for this issue


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 82110] MacroExecutionMode do not work when loading Base Forms

2007-09-30 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82110
 Issue #|82110
 Summary|MacroExecutionMode do not work when loading Base Forms
   Component|Database access
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|dbaneedsconfirm
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Sun Sep 30 14:03:18 + 
2007 ---
Running a custom Base application with lots of forms, where a form loads others
via BASIC and loadComponentFromURL method, I have to always set Macro Security
to the lowest level to avoid annoying confirmation dialogs. The solution would
be to set the property MacroExecutionMode to
com.sun.star.document.MacroExecMode.ALWAYS_EXECUTE_NO_WARN when calling
loadComponentFromURL, but unfortunately it doesn't work.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 81932] Database Form Macros do no t execute the first time.

2007-09-25 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=81932
 Issue #|81932
 Summary|Database Form Macros do not execute the first time.
   Component|Database access
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|dbaneedsconfirm
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Tue Sep 25 12:01:16 + 
2007 ---
The first time OOo will try to execute a Base Form Macro the following error 
occurs:

A Scripting Framework error occurred while running the BASIC Script
vnd.sun.star.script.library.module.subroutine?language=Basiclocation=document.

Message: BasicProviderImpl::getScript: no script!

Closing the form and reopening it solves the problem for the form, and every
following form, and every Base file that will be loaded in the future, until the
running instance of OOo is closed. Then the bug reappears again in the first
Base form that will try to execute some BASIC Script.

I have not tasted it with other scripting languages. I tested it in 4
installations of OOo for WinXP (home and pro including) in 4 different
computers, both with a HSQL internal db engine and with MySQL via MyODBC
connection. I also tasted it in Ubuntu 7.04 with OOo 2.3 and replicated the bug.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 73021] Sub Form Fails to use IDEN TITY values of type INTEGER (MySQL 5.0)

2007-06-26 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=73021





--- Additional comments from [EMAIL PROTECTED] Tue Jun 26 22:56:03 + 
2007 ---
With OOo 2.2.1 and latest versions of MySQL and MyODBC on Win XP the problem
seem to have to do with UNSIGNED integers. If I replace them with SIGNED ones no
problem at all!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 78503] ReplaceString and ArrayOut OfString Functions in Tools/String module refi nement

2007-06-14 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78503
 Issue #|78503
 Summary|ReplaceString and ArrayOutOfString Functions in Tools/
|String module refinement
   Component|tools
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P4
Subcomponent|configure
 Assigned to|rene
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Thu Jun 14 20:28:46 + 
2007 ---
The SBASIC function ReplaceString in Tools/String module can be writen as:

[CODE]
Function ReplaceString(s$, new$, old$) as String
ReplaceString=join(split(s$,old$),new$)
end function
[/CODE]

which is far faster and shorter.

Also the ArrayOutOfString Function can be substituted by function Split follwed
by a ubound call to determine the size of the array.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 07:55:47 + 
2007 ---
I reproduced it with 2 computers so far. The date control must be on a dialog
box, not on the form. The problem may occure the second time you change it, not
the first. Try altering the date format property a couple of times to reproduce 
it.

Question: is it possible that java has to do anything with this?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 08:54:45 + 
2007 ---
Some details for reproducing the bug:
1) Create a new database (no need to create tables, just an empty odb file)
2) Create a form in design view and open Tools/Macros/Dialog organizer
3) Create a new dialog and put a date control
4) Save the form and the database file
5) Open the form again for editing and open again the dialog organizer
6) change the date format of the date control to something else.
7) save the form and the database file
8) repeat once from step 5
9) finally open the form for editing and open the dialog organizer. When you
open the dialog for editing the No Module appears on the window. No dialog 
exist!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 10:42:53 + 
2007 ---
I just reproduced it in my laptop, 3rd computer in a row.

I'll spend the day (if I have free time) trying to eliminate the bug by changing
some other things like national settings for dates on WinXP and other stuff, I
don't now right what exactly I'll try, I'm a little bit confused.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 10:57:29 + 
2007 ---
Try to change a property 3 or more times (I prefer the Date Format) and after
each change save the form and the database file, and see what is happening.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 12:02:18 + 
2007 ---
I don't use any theme. I don't close OOo between each attempt. I just save the
form and then save the whole odb file.

In case of... my java is JDK 6.0u1

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-04 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 17:01:48 + 
2007 ---
I uninstalled OOo 2.2 and installed a copy of OOo 2.1 (greek localization).
Could not reproduce the issue there. Then I installed again 2.2 after removing
2.1, the installation folders and the openoffice folder on Application Data
folder of my user account.

The issue is reproducable again in OOo 2.2.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066
 Issue #|76066
 Summary|Dissapearing dialogs after modifying date controls
   Component|Database access
 Version|OOo 2.2
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|dbaneedsconfirm
 Reported by|mchris





--- Additional comments from [EMAIL PROTECTED] Tue Apr  3 23:06:06 + 
2007 ---
When a Base form has a dialog with a date control, every attempt to modify or
delete it makes all the dialogs of this form to dissapear, even if they are
visible in macro organizer, they actually don't exist.

This problem doesn't occure with dialogs in Writer documents, it occurs only in
Base forms. I tried to change a few property values of a date control to
replicate the bug, all with success, but I didn't try all the possibilities.

After trying to open the form with dissapeared dialogs, a runtime error will
appear when the BASIC code will try to open a dialog library. After that, the
form window and the Base window refuse to close!

Editing the form with dissapeared dialogs, ends with the form window and the
Base window to also refuse to close.

The only known change between OOo 2.1 and 2.2 on the date control level is that
the date control doesn't default to current date anymore. Maybe the changes made
to the code for this are responsible for this issue.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 76066] Dissapearing dialogs after modifying date controls

2007-04-03 Thread mchris
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76066


User mchris changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |44193)
a simple ODB file w
|  |ith a table, and a form wi
|  |th a dialog






--- Additional comments from [EMAIL PROTECTED] Tue Apr  3 23:16:14 + 
2007 ---
Created an attachment (id=44193)
a simple ODB file with a table, and a form with a dialog


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]