Hello Gummers: I have a vdialog subclass that contains a mainview object and a container object. The container has a few dialogItems and mainview has a few...
Mahini, Farid @ MCDY
Farid.Mahini@...
Sep 1, 1999 2:33 pm
51
Galaxy Users, We are having a strange problem on NT. When we run one of our Galaxy apps it seems to prevent other apps like Photoshop from coming up. We've...
Brian McCarty
bmccarty@...
Sep 2, 1999 4:13 pm
52
... If your application is non-graphical, why are you calling vwindow::GetRoot? -eric...
Eric Wiseblatt
eric@...
Sep 2, 1999 5:36 pm
53
... We are not using vstartup because we need to do some special things with preferences. We are calling the individual functions as they were detailed on...
Brian McCarty
bmccarty@...
Sep 2, 1999 5:48 pm
54
... Not at all. If you are using the "Application Manager" then that requires the Window Manager. Perhaps that is where the dependency is. What do you mean by...
Eric Wiseblatt
eric@...
Sep 2, 1999 6:04 pm
55
... To be specific, we will be making calls like vpref::GetRootDict and vprefDict::GetStringElem. From what you've said they seem to not depend on the vwindow...
Brian McCarty
bmccarty@...
Sep 2, 1999 6:38 pm
56
... I can answer that one. The problem is most likely DDE. Certain DDE operations cause Windows to broadcast a message to all windows, and the calling...
Jim Edwards-Hewitt
jim@...
Sep 2, 1999 9:58 pm
57
Our application is using tooltips, developped using popup vwindows. It works fine with the released version of Galaxy 2.7. Unfortunately, if I use the...
Jean-Francois Allot
jfallot@...
Sep 8, 1999 4:00 pm
58
For your information, I have fixed this issue: I have identified a slight change introduced in vwin/windowsys.cxx file (for gal2_6_2ptxx), at line 6225, where...
Jean-Francois Allot
jfallot@...
Sep 10, 1999 12:02 pm
59
The repo man has taken away VISIX.COM, as of Sept. 4th. Registrant:Linux Engineering (VISIX3-DOM) 1348 Cordilleras Ave Sunnyvale, CA 94087 US Domain...
Victor R. Volkman
vv@...
Sep 16, 1999 12:46 pm
60
One silly question: What was VISIX.COM ? Was it the old Visix Inc. site ?...
Mahini, Farid @ MCDY
Farid.Mahini@...
Sep 16, 1999 4:37 pm
61
... Yes. ... ^^^^^^^^^^^^^ Hmm. An ex-Visix engineer! Hi Art. ... davep -- Dave Postill Investment Intelligence Systems Corp Galaxy Support...
Dave Postill
davep@...
Sep 16, 1999 4:47 pm
62
Hello Gummers: I can not understand why the selection foreground color of a textitem in my Galaxy App. does not follow the system color (the background color...
Mahini, Farid @ MCDY
Farid.Mahini@...
Sep 16, 1999 5:38 pm
63
... Hi ;-)...
Art Stine
abstine@...
Sep 17, 1999 2:35 am
64
I have a situation where I have a list view on a confirm and I would like the confirm to close down if a double click was made in the list view. The confirm...
Robbert de Groot
robbert@...
Sep 17, 1999 11:01 pm
65
I have used the following technique: // If the user double-clicked the item and // the dialog should be confirm with double click if ( (...
Shedd, Nathan
SHEDDN@...
Sep 20, 1999 12:22 pm
66
We do this by subclassing the vlistitem in the confirm and overriding the ObserveSelect method (we're using C++). Here's the ObserveSelect override logic...
Craig Timmerman
craigt@...
Sep 20, 1999 12:29 pm
67
Hello gum, does anyone know how I can define my own vlistCellValueSetterProc(vlist *list, int row, int column, const void *value) for a vlist item? Thank you...
Polykarpos Karamaoynas
karam@...
Sep 22, 1999 3:19 pm
68
I think u r looking for this.... vlistSetCellValueSetter void vlistSetCellValueSetter( vlist * list, vlistCellValueSetterProc func); Sets the function used to...
Avijeet Dash
avijeetd@...
Sep 23, 1999 7:41 am
69
Hi, Does anyone know if the new Galaxy company has fixed Galaxy to support input of Chinese characters? Better yet, has anyone on this group added this ...
Ray Donahue
donahue@...
Sep 24, 1999 1:52 pm
70
We are using a Galaxy 2.6 version with Chinese and it is working fine. It is a merge of the 3.0 Chinese with other levels that had some other bug fixes....
Greg Harris
gregh@...
Sep 24, 1999 4:03 pm
71
Hi everyone, I'm still having problems with my top-level exception handling on Windows NT with Galaxy 2.7 C and Visual C++ 5.0, and since I didn't get any...
Ludvig Borgne
ludde@...
Sep 25, 1999 5:27 pm
72
Hello Everyone, I am cleaning out my bookshelves here and I have some Galaxy stuff that I no longer need/want. In the finest web tradition I have placed it all...
Jeff Barr
jeff@...
Sep 25, 1999 10:51 pm
73
... Actually we DON'T find that Galaxy throws exceptions out of nowhere. The primary reason I have seen these is that a resource file is missing a dialog (no...
Victor R. Volkman
vv@...
Sep 27, 1999 12:17 pm
74
... "Out of memory" exceptions should be handled by registering a vmemFreeFunction (or collection of them). This might avoid the exception to start with, and a...
Eric Wiseblatt
eric@...
Sep 27, 1999 1:27 pm
75
*--- stuff deleted ... *--- stuff deleted ... We also use a top-level error-handler to reset everything to a known state when an error occurs. We encountered...
Craig R. Steury
csteury@...
Sep 27, 1999 8:10 pm
76
Hello, We are exeperiencing a problem with ComboBox in Galaxy Global 2.6. Basically, the problem is that adding 4000 items to a combobox takes about 5 minutes...
Ray Donahue
donahue@...
Sep 27, 1999 8:40 pm
77
... Try removing the underlying vlist from the combobox, adding the items to the list, then setting the vlist to the combobox again. This will cut down on the...
Eric Wiseblatt
eric@...
Sep 27, 1999 9:33 pm
78
Eric, A couple of questions based on your reply: 1) How do you get the underlying vlist from a combo box? How do you remove it? 2) There are no vcombo* calls...
Ray Donahue
donahue@...
Sep 29, 1999 7:57 pm
79
... I'm assuming you can vcomboGetList to get it, and vcomboSetList to set it. You'd set it to null while mucking with it, or you would batch add everything to...