Hello GUMmers, I've written a Galaxy 2.6 app that can be run as a Windows service or as a normal application. However, for some reason I can't get...
Graham Stewart
graham@...
Feb 9, 2001 11:49 am
342
I had a lot of problems making a dll with galaxy 2.7 win, so I am not surprised to hear that. when making a dll I need to call void _vsysBeforeMSWMain(void*,...
Riccardo Cohen
rcohen@...
Feb 9, 2001 1:08 pm
343
... Where do these calls have to be made? Note that Galaxy provides WinMain, and does several things there before calling main(). I think the problem is the...
David Charlap
shamino@...
Feb 9, 2001 3:02 pm
344
David, Thanks for your response. The win32 service calls are made in main(). However all aspects of the service stuff seem to work okay. FYI: the win32...
Graham Stewart
graham@...
Feb 9, 2001 4:12 pm
345
Hi, I have a dialog item (a vlistview) which has a menu. The menu is opened when the Menu button on the mouse is pressed, but I want to be able to open it ...
Ludvig Borgne
ludde@...
Feb 13, 2001 12:26 pm
346
Cant you just vmenuOpen it? If you can, place the vmenuGetWindow(menu) where you want to position it. - eric ... http://www.prover.com...
Eric Wiseblatt
eric@...
Feb 13, 2001 3:40 pm
347
Hi, I tried that too, but that meant I had to place it myself, and I had some problems doing that. But I just got it working now. I use vmenuPlaceEvent to...
Ludvig Borgne
ludde@...
Feb 13, 2001 3:56 pm
348
Hi GUMmers, we still have many customers using our galaxy-based components. The exception sometimes appear from the darkness: error 1: / errno: 2: No such file...
jfallot@...
Feb 16, 2001 12:37 pm
349
we avoid that in setting a minimal size for the dialogitem. typically vdomain... -- Riccardo Cohen Articque Les Roches 37230 Fondettes France email =...
Riccardo Cohen
rcohen@...
Feb 16, 2001 3:19 pm
350
... I don't know anything about this specific failure but our application gets a similar failure. I would like to have a way to get a stack trace for...
Douglas E. Forester
dougf@...
Feb 16, 2001 5:45 pm
351
Here is a callstack: (obtained by setting a breakpoint from where the exception is generated and got a chance to get it reproduced) 1012428A add...
Jean-Francois Allot
jfallot@...
Feb 16, 2001 5:51 pm
352
... Off on a wild shot: Would this version of galaxy have been compiled from gcc on x86? To see if this if your problem, the "scalerot" sample should reproduce...
Douglas Kilpatrick
kilpatds@...
Feb 16, 2001 6:07 pm
353
Does anyone know of a tool which can be used on NT/Windows 2000 to allow a Galaxy application to work in Arabic. I have seen tools available for Unix which...
Greg Harris
gregh@...
Feb 16, 2001 8:58 pm
354
... The vchar/vstr system will handle the encodings and fonts OK. Especially if you are using Galaxy/Global - to allow vchar to be Unicode. The problem will be...
David Charlap
shamino@...
Feb 16, 2001 9:17 pm
355
I would doubt that such a tool would work with Galaxy if you were to find it for Windows. The reason is that there is a lot of logic which is coded into Galaxy...
Eric Wiseblatt
eric@...
Feb 16, 2001 9:17 pm
356
The Windows version of Galaxy (2.7) we are using has been built with Visual C++ 5. I rather believe there is a real bug in the Galaxy implementation of the ...
Jean-Francois Allot
jfallot@...
Feb 19, 2001 9:33 am
357
... Try the "scale-rot" demo first. If it crashes when you do the rotate, then I would suggest going through vmatrix and converting the floats to doubles. ...
Douglas Kilpatrick
kilpatds@...
Feb 19, 2001 4:12 pm
358
I am trying to download the Solaris/C version of the Peek tool from www.hotngui.com, but the ftp links to all their downloads seem to be broken. Does anyone...
Brian Eyster
eyster@...
Mar 14, 2001 3:57 pm
359
... Sorry about that, apparently our web-master lost our entire ftp site when we changed servers but neglected to tell me so. I'll get working on it now. So...
Joey Jarosz
joey@...
Mar 14, 2001 4:42 pm
360
I've updated our download page to point at the correct ftp site! Happy downloading!! BTW, if anybody is interested in purchasing all the rights to our Galaxy...
Joey Jarosz
joey@...
Mar 14, 2001 5:46 pm
361
I'm trying to track down a problem that shows up only on some of our HPUX 64 platforms, and wondered if someone else had already come across this and solved...
Lainhart, Todd
todd@...
Mar 14, 2001 8:00 pm
362
I assume you have run purify against this. Galaxy's memory manager wraps libc, but if you pass it bad arguments, it will free the wrong thing and screw up your...
Eric Wiseblatt
eric@...
Mar 15, 2001 3:02 pm
363
Greetings- We are having a problem keeping 2 listviews synchronized when you resize their dialog. We are running Galaxy 2.5 - C Version on Solaris. This same...
Brian Eyster
eyster@...
Mar 16, 2001 6:10 pm
364
Last week I posted that I was having a problem with the startup of our Galaxy applications on some HPUX11 platforms. After much debugging, I was able to...
Lainhart, Todd
todd@...
Mar 19, 2001 8:24 pm
365
Hi to all those still "faithful" to galaxy, I have an application that is "multi-tasking". One task is the galaxy event loop. The other is a galaxy timer that...
Ed Steel
steel@...
Mar 23, 2001 2:53 pm
366
What about the vdialog::DeleteLater? I always use this instead of 'delete' for the similar reasons. I have a bunch of timers and communication events that have...
Mahini, Farid @ MCDY
Farid.Mahini@...
Mar 23, 2001 3:29 pm
367
What if the user wants to start the same dialog, although it would have a new pointer ? Ed ... From: Mahini, Farid @ MCDY To: 'gum@yahoogroups.com' Sent:...
Ed Steel
steel@...
Mar 23, 2001 3:44 pm
368
Recap: The timer desposes of the closed dialogs and NULL outs an object list entry. Are you talking about the time between when the timer detects/starts ...
Mahini, Farid @ MCDY
Farid.Mahini@...
Mar 23, 2001 5:40 pm
369
Sounds like a design problem. You want to use DeleteLater as Farid suggests when deleting a dialog from an event handler in case the dialog methods are on the...
Eric Wiseblatt
eric@...
Mar 23, 2001 6:21 pm
370
The timer detects that the dialog is closed and deletes it and sets the pointer to it to NULL. When the user wants to open the dialog if its not NULL it is...