Forum Replies Created
-
AuthorReplies
-
Sorry for my Englih, but i’d wrote
“Any other applet, witch works on another server crash on this machine.”
No applets works on this machine, even they work on another one.
Exactly, applets works on this machine up they open a form (any form) => Access violationL.P. Irovetz
Ok, i’d made a mistake in my reportong the button name is ‘Annul’ and the script line : Tst.ShowModal
Any other applet, witch works on another server crash on this machine.
I’d try the applet on a workstaion, it runs
For reflexion, this is the scénrio
– Tst.ShowModal => The form open with the violation access
– The form stay at the screen
– Click on the ‘Annul’ button with MrCancel action => New acces violation and the form closed
– The Msgbox “toto” after the Tst.ShowModal run wellI’ll send you the config to support@advansyscorp.com
Strange isn’t it
L.P. Irovetz
Sorry,
No error whith this syntax but … not working
if you place after : Set MailObjRef = MyAccount.DocumentsFolder.Messages.Add(“”, DocNew, fgwCurrent)
msgbox “MailObjRef : ” & MailObjRef.Classname
In GW7 => MailObjRef.Classname = GW.MESSAGE.DOCUMENTREFERENCE
and you can attached MailObjRef in a messageIn GW8 => MailObjRef.Classname = GW.MESSAGE.MAIL
and you can’t attached MailObjRef in a messageCould you tell it to Novell to help us
I was pleasd to see Novell working on libraries (Speeder Query, Document conversion) but i need this fonction working to switch to GW8, or the new syntaxThanks for your help
LP Irovetz
Arcane GroupWareA clue
The groupwise API documentation note another syntax whithout notice the classe name, assume that Document reference is used
Set MailObjRef = MyAccount.DocumentsFolder.Messages.Add(“GW.MESSAGE.DOCUMENTREFERENCE”, DocNew, 1)
could be
Set MailObjRef = MyAccount.DocumentsFolder.Messages.Add(DocNew)but in this case we have the error “Class does not support Automation”
Perhaps, Novell has changed the object or the methods to create it
no problem, but now .. how to create a document reference ??Regards
LP Irovetz
Arcane GroupWareSorry for French -> English translation of the mesage error
>>
Messages.Object
Unknown error line …
>>I’d tested in these environnements
GW 7.0.3 + Fv 2.0.1 = OK
GW 8.0.0 + Fv 2.0.1 = Error
GW 8.0.1 + Fv 2.0.1 = Error
GW 8.0.1 + Fv 2.0.2 Beta1 = ErrorAny idea ?
L.P. Irovetz
Arcane GroupWareHi Advansys team
Your solution work fine since GW 7.0.3
I Try to switch to GW 8.0.0 => Bug
Here is my code
path = “C:somefile.txt”
set DocNew = MyLibrary.documents.Add(Path,”Document”)Set MailObjRef = MyAccount.DocumentsFolder.Messages.Add(“GW.MESSAGE.DOCUMENTREFERENCE”, DocNew, 1)
Any idea or Novell reporting ?
Thanks for your help
L.P. Irovetz
Arcane GroupWareHi,
When i said “run and the first instruction in “main”
it’s because i did your test
Sub Main(Client, GWEvent)
msgbox “Main()”
…….
End SubWhith few forms, perhaps, with many and a big one (270Ko) it’s near 7 sec
Amount of RAM 2Go with XP for my workstationBetween “Run” and “Main”, what’s Formativ doing ?
Read Cache and load in memory ?
I search a clue to tunning the parametersThanks for help
L.P. Irovetz
ARCANE GroupWareWell some clue to solve the problem
I’d took a Form which couldn’t be save by Form Designer
– I’d opend it whith Word, add a textedit an a text label in page of a page control and save it by Word
I’d imported it in FormDesigner, news objects are there. If no change, save OK
I’d just move another textlabel, want to change => crash
I’d tried to use with Formativ with usual applet, no problem.
Works with applet and the new Textedit, no problemBy Word, i erase a bitmap in the form to decrease the size => Same problem when i want to save the form by FormDesigner
I think there is/are object(s) in these forms that crash save method.
Have you heard about an object which could case this kind of trouble ?
L.P. Irovetz
ARCANE GroupWareThanks for your answer,
I think we arrived at one of Fromativ frontiers
We have already, whith your help, included some DLL to improve our code, but in this case workaround is not very pleasant.
News about Formativ upgrade ?
Regards
L.P. Irovetz
Arcane GroupWareSorry, i hadn’t received you solution
Could you resend it again
ThanksL.P. Irovetz
Arcane grouPWareFebruary 4, 2007 at 3:02 pm in reply to: How can I open a find windows and search for a specified string #7805Hi,
In your post you said that your application ‘open a find windows’ to search.
I think you don’t need to ‘open’ but just make a .find request in the address book with GW Object API.
Warning .find for an eMail Adresse in systeme adressbook don’t work in all version of GW Client. (OK < 6.5.4 for now)
Could you precise you script ?
L.P. Irovetz
Arcane GroupWareHello Advansys Support
I saw this thread and i have the same problem
>I’ve installed on a Windows 2003 R2 Terminal Server and I’m getting the “incomplete installation” error
Could I also get your solution, me too
mail: lp.irovetz@arcane-inf.comI plan to install Citrix on the same server, is your solution evalable for Citrix?
Many thanks
L.P. Irovetz
ARCANE GroupWareThanks for your answer.
It could be ‘user friendly’ using a pop-up but if we coudn’t do it !
No problems to create a message with a document.
I encount a difficulty with document.reference
see http://www.advansyscorp.com/forums/topic/1461087531/You said
>> I will add this request into our enhancement database for future releaseWhen, do you think, Advansys plan to publish a futur release ? A major one not bug catcher
Sure, we are many waiting and dreaming to an another realease of your fabulous product
Thanks
L.P. Irovetz
ARCANE GroupWareThanks to Michael Risch from Novell Forum
>>Documents.add returns a document object for the newly created object.
>>That object has a document number property, and you can go with that.>>Indeed, you don’t even need the getdocument call if you just work with
>>the document that is returned by documents.add.It runs
L.P. Irovetz
ARCANE GroupWareI found a clue about NextDocumentNumber
My new code
‘—————
DocNewNum = LibTrouv.NextDocumentNumber
msgbox LibTrouv.NextDocumentNumber ‘ =====> 994‘Création du document
call LibTrouv.documents.Add(Path, “Document”)
call LibTrouv.refresh
msgbox LibTrouv.NextDocumentNumber ‘ =====> 995 ‘Betterset DocNew = LibTrouv.getdocument (DocNewNum)
‘—————
How to be sure that DocNewNum is the right one.
If some another client add a document between DocNewNum and .add ?L.P. Irovetz
ARCANE Groupware[/QUOTE] -
AuthorReplies