We have a machine which cannot run any Galaxy-based programs. It is Windows 2000 Server (SP1) and we have Galaxy Global C package loaded. Our Galaxy apps fail...
Victor R. Volkman
vv@...
Aug 31, 2000 7:14 pm
306
Hi, Ambiencia has a new Galaxy 3.0 release for Visual 6 that fixes some problems with new versions of ActiveX components introduced with Office 2000, that...
Luis C. M. Molan
luis@...
Aug 31, 2000 8:54 pm
307
We have certified our Galaxy and Global Galaxy products (incl. vre) on Windows 2000 without any problem. We are using a merged version of Galaxy source code ...
Greg Harris
gregh@...
Aug 31, 2000 9:30 pm
308
I'm not familiar with this problem, however it might have something to do with the font manager startup. I had seen a similar problem on Japanese NT 4.0 a...
Eric Wiseblatt
eric@...
Sep 4, 2000 9:24 pm
309
Hi, We would like to use a timer to "smooth" the occurrance of tablet events in time (and space to some extent for that matter). The reason is that we ...
Craig R. Steury
csteury@...
Sep 22, 2000 5:41 pm
310
... vtimers use no OS-level code. When you start a vtimer, it fetches the current time, adds the interval to it, and posts a vevent into the future to go off...
David Charlap
shamino@...
Sep 22, 2000 7:00 pm
311
I'm having a problem closing a (non-modal) dialog. The following code is what I thought would work: veventFlushProcessing(); vdialogDestroy(gui_window_ptr); ...
Gregory Rochford
grochford@...
Sep 26, 2000 3:56 pm
312
You are probably referencing the window_ptr elsewhere on the call stack opening the modal dialog. Use vdialogDestroyLater instead. This will queue an event to...
Eric Wiseblatt
eric@...
Sep 26, 2000 4:19 pm
313
There is no function vdialogDestroyLater() If I use vwindowDestroyLater( vdialogGetWindow(gui_window_ptr) ); it works. (although I could've sworn that it...
Gregory Rochford
grochford@...
Sep 26, 2000 4:54 pm
314
Dont you just do the OK work and leave the dialog state management to the chooser? I wouldnt think you should be closing the dialog as that isnt your...
Eric Wiseblatt
eric@...
Sep 26, 2000 5:41 pm
315
I must admit that closing a dialog within the event processing has always been a pb for us (C++2.7). But vdialog::DeleteLater solved completely the crash pb. ...
Riccardo Cohen
rcohen@...
Sep 27, 2000 5:58 am
316
In my case the problem was multiple calls to vcommandAddSpaceDictOwned(). Once the second call was made, there was some data managed by Galaxy that wasn't...
Gregory Rochford
grochford@...
Sep 28, 2000 12:56 am
317
Hi gummers I have a vspinner in a dialog. I want to know when the user has either clicked in the text entry portion or clicked on the spinner buttons ? Ed...
Ed Steel
steel@...
Sep 29, 2000 7:19 pm
318
Hola Ed: I have used the following methods for detecting actions in my NumericSpinners: 1) ObserveDialogItem 2) HandleButtonDown/Up I normally use the...
Farid Mahini
Farid.Mahini@...
Sep 30, 2000 9:19 am
319
When you maximize a Galaxy 2.7 app (such as VRE for example), it covers up the Win9x taskbar and disables the auto-hide feature. Normally, you can maximize a...
Victor R. Volkman
vv@...
Oct 13, 2000 12:17 pm
320
there was a problem with task bar when iconizing the window, and it was solved with : AddStyle(vwindowSTYLE_MAIN); maybe it does something about hidden task...
Riccardo Cohen
rcohen@...
Oct 16, 2000 7:37 am
321
hi, Is there any mac user in here ? thanks because I have a very special bug I never corrected : with galaxy 2.5 powermac C++ local, when the user do not have...
Riccardo Cohen
rcohen@...
Nov 7, 2000 5:10 pm
322
Sorry to disturb with a non specific topic, but I really need help. I am in the process to begin a brand new developpement from scratch. Multiplateform non GUI...
Riccardo Cohen
rcohen@...
Nov 23, 2000 4:13 pm
323
Hi everyone, We're porting an application from Galaxy 2.5 on Solaris to Galaxy 2.7 on NT, and the rulers in a couple of dialogs do not appear properly on NT....
Eric Blough
Eric.Blough@...
Nov 27, 2000 11:35 pm
324
I hated so much the galaxy ruler that I wrote a new one ! It is actually a matrix with vertical and horizontal resize/switch. -- Riccardo Cohen Articque Les...
Riccardo Cohen
rcohen@...
Nov 28, 2000 12:03 am
325
Riccardo, I cannot offer you information about your specific questions regarding compiler feature compatibility. I think I've used STL indirectly on...
Eric Wiseblatt
eric@...
Nov 28, 2000 2:16 pm
326
You folks might remember this message thread from about four months ago. Well, its happened again. This time the problem is on a Windows 2000 Professional...
Victor R. Volkman
vv@...
Dec 5, 2000 4:30 pm
327
When Visix went belly-up there was a lot of traffic on the old GUM list about all the quirks of building from the source. I ignored all that at the time...
Stuart Roll
sroll@...
Dec 5, 2000 4:33 pm
328
... It's over a year since I build Galaxy from source but I might be able to help. I can't promise a fast turnaround for your questions though. My notes are...
David Postill
david.postill@...
Dec 5, 2000 4:47 pm
329
There was an infinite loop bug in the font manager startup in 2.7 global (depending on the fonts installed), but I had only seen it in Japanese. Sounds...
Eric Wiseblatt
eric@...
Dec 5, 2000 4:53 pm
330
It's been about a year since I built from source. There are a few gotchas and a definite order to the process. Like Dave, I am available on a limited basis. ...
Michael M. Lutz
mmlutz@...
Dec 5, 2000 5:02 pm
331
... I'll see if I can still remember everything here. 1: You'll need an RCS archive with everything. I think this is what you got in the distribution. 2: The...
David Charlap
shamino@...
Dec 5, 2000 5:11 pm
332
Here are my build notes, hope this helps. We have built on HP-UX 11 without any problems. For the source I recommend you try to get the merged source code...
Greg Harris
gregh@...
Dec 5, 2000 5:14 pm
333
... Building the C product is not too bad. I've done it several times while trying to get to the C++ version. In this message ...
Dave Rutherford
drutherf@...
Dec 5, 2000 5:17 pm
334
Hello GUM: I found this code in our locking routine which updates the a lockfile that we use for keeping track of locks in resource files. For Unix we use the...