Search the web
Sign In
New User? Sign Up
gum · Galaxy User's Mail
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 594   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: "Eric Wiseblatt" <eric@...>
Date: Tue Aug 24, 1999 1:30 pm
Subject: Re: [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
eric@...
Send Email Send Email
 
I have seen this before, although in my merged version (2.5-2.7)
it has never shown up so it might be from a bug somewhere inside
Galaxy 2.6 or 2.7 that I took out during the course of that work.

I have never been able to find the cause, but I can explain the problem
and how to fix it (from tracking it down with clients using 2.7).

The problem is that Galaxy is validating the underlying HWND when it
destroys the window to make sure everything is intact and correct. It
calls IsWindow which fails for some reason. I dont know why, but this
is only during program exit and not when normal windows close.

The way I've fixed this is to add additional global state -- a global
variable (initialized to true) that says whether or not to do the IsWindow
check. Clear this variable in _vwindowDisconnect, which is the shutdown
routine where it iterates over the remaining vwindows. This avoids the
check so the exception wont get thrown.

You can remove the check entirely (which would be "safer"), but since the
problem only appears in shutdown, I did it that way to preserve as much
of the existing behavior without including the problem lurking somewhere.
I hate being overly optimistic and the check is only in DEBUG so you wont
be shipping apps with it anyway.

There is a second check that crashes sometimes too. I dont remember it
offhand
but it has to do with popup windows. Perhaps it was the _vwindowMSWPopupWnd
check (in _vwindowDisconnect) that throws ReturnNull. If this were the case,
I'd remove the check for DestroyWindow failing. I dont know what causes this
either. Again, this is only in particular versions of Galaxy so it might be
due to an internal bug somewhere.

- eric


> Our experience using MSVC++ 5.0 and 6.0
>
> Our 5.0 Experience:
>
> We are using galaxy 2.6 (purchased) and galaxy 2.7 (built from
> gal2_6_2 msa)
> on a NT 4.0 (SP4) platform MSVC++ 5.0 (SP3). Galaxy libraries were built
> as a static release.
>
> When running any galaxy app produced by MSVC++ 5.0 we get the following
> error message in a galaxy debug window when the application exits:
>
> An error has occurred.  The following chain of information is available:
>     error 1: /Return/Null/
>         errno: 22: Invalid argument
>
> This seems to come from inside vwindow::_vwindowUnmakeInfo()
> function, but it is not the same bug discussed by David Charlap
> and Russ Browne.
>
> In the GUM and GUG archives I've read that patches 197-2.6C,
> P156, P234-26c, 260, P234, patch238, patch244, 253, and others
> may fix the problem, but how does one get these patches?
>
> Question: Will building from gal2_6_2ptxx help us? I tried this
> and got many pages of unresolved symbols when linking.
>
> Our 6.0 Experience:
>
> When we try to link a MSVC++ 6.0 application with galaxy 2.6 libraries
> produced using MSVC++ 5.0, we get about 50 unresolved symbols. I can't
> remember what they were offhand, we are currently configured for VC++
> 5.0.
>
>
> Wes
>
>
>
> Jeff Pek wrote:
>
> > We are using this setup fine. Our Galaxy libraries are still the ones
> > generated by VC5, though. What sort of problems are you having?
> We're using
> > SP3 for VC6.
> >
> > - Jeff Pek, Arbortext
> >
> > -----Original Message-----
> > From: Charles M. Strauss [mailto:cstrauss@...]
> > Sent: Thursday, August 19, 1999 6:12 PM
> > To: gum@egroups.com
> > Subject: [gum] [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
> >
> > Dear GUMmers:
> >
> >   Has anyone had any problems using the combination of Galaxy
> 2.7, Windows
> > NT 4.0 and Microsoft Visual C++ 6.0?  I know C++ 5.0 works
> fine, but I seem
> > to be having problems with a new project under 6.0.
> > /c.m. strauss
> >
> > ------------------------------------------------------------------------
> > ebates.com. Earn up to 25% cash back for shopping online at 75 stores
> > like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
> > http://clickhere.egroups.com/click/690
> >
> > eGroups.com home: http://www.egroups.com/group/gum
> > http://www.egroups.com - Simplifying group communications
> >
> > ------------------------------------------------------------------------
> > ebates.com. Earn up to 25% cash back for shopping online at 75 stores
> > like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
> > http://clickhere.egroups.com/click/690
> >
> > eGroups.com home: http://www.egroups.com/group/gum
> > http://www.egroups.com - Simplifying group communications
>
>
>
>
> ------------------------------------------------------------------------
>
> eGroups.com home: http://www.egroups.com/group/gum
> http://www.egroups.com - Simplifying group communications
>
>
>
>

#29 From: Wes White <wwhite@...>
Date: Mon Aug 23, 1999 8:44 pm
Subject: Re: [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
wwhite@...
Send Email Send Email
 
Our experience using MSVC++ 5.0 and 6.0

Our 5.0 Experience:

We are using galaxy 2.6 (purchased) and galaxy 2.7 (built from gal2_6_2 msa)
on a NT 4.0 (SP4) platform MSVC++ 5.0 (SP3). Galaxy libraries were built
as a static release.

When running any galaxy app produced by MSVC++ 5.0 we get the following
error message in a galaxy debug window when the application exits:

An error has occurred.  The following chain of information is available:
     error 1: /Return/Null/
         errno: 22: Invalid argument

This seems to come from inside vwindow::_vwindowUnmakeInfo()
function, but it is not the same bug discussed by David Charlap
and Russ Browne.

In the GUM and GUG archives I've read that patches 197-2.6C,
P156, P234-26c, 260, P234, patch238, patch244, 253, and others
may fix the problem, but how does one get these patches?

Question: Will building from gal2_6_2ptxx help us? I tried this
and got many pages of unresolved symbols when linking.

Our 6.0 Experience:

When we try to link a MSVC++ 6.0 application with galaxy 2.6 libraries
produced using MSVC++ 5.0, we get about 50 unresolved symbols. I can't
remember what they were offhand, we are currently configured for VC++
5.0.


Wes



Jeff Pek wrote:

> We are using this setup fine. Our Galaxy libraries are still the ones
> generated by VC5, though. What sort of problems are you having? We're using
> SP3 for VC6.
>
> - Jeff Pek, Arbortext
>
> -----Original Message-----
> From: Charles M. Strauss [mailto:cstrauss@...]
> Sent: Thursday, August 19, 1999 6:12 PM
> To: gum@egroups.com
> Subject: [gum] [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
>
> Dear GUMmers:
>
>   Has anyone had any problems using the combination of Galaxy 2.7, Windows
> NT 4.0 and Microsoft Visual C++ 6.0?  I know C++ 5.0 works fine, but I seem
> to be having problems with a new project under 6.0.
> /c.m. strauss
>
> ------------------------------------------------------------------------
> ebates.com. Earn up to 25% cash back for shopping online at 75 stores
> like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
> http://clickhere.egroups.com/click/690
>
> eGroups.com home: http://www.egroups.com/group/gum
> http://www.egroups.com - Simplifying group communications
>
> ------------------------------------------------------------------------
> ebates.com. Earn up to 25% cash back for shopping online at 75 stores
> like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
> http://clickhere.egroups.com/click/690
>
> eGroups.com home: http://www.egroups.com/group/gum
> http://www.egroups.com - Simplifying group communications

#28 From: "Douglas E. Forester" <dougf@...>
Date: Mon Aug 23, 1999 8:41 pm
Subject: Problem with vdialogCloseHook
dougf@...
Send Email Send Email
 
I have an application that gets an access violation in
a certain set of circumstances.  On Windows NT, I close
a window using the "X" in the upper right corner, and the
program crashes.  If I use the File/Close menu item, the
program doesn't crash.   The crash occurs in the Galaxy
DLL vgal8d at location 670d38e8, here's the trace back:

VGAL8D! 670d38e8()
USER32! 77e71268()

The crash occurs after my close hook routine has returned.
The processing that occurs in the close hook and in the
menu handler is the same.

The crash is induced by using a dialogItem's menu (i.e.,
right clicking on the item), and then left clicking somewhere
else to make the menu go away (not near the menu).  The
time bomb is thus set, so that when the window is closed,
the crash occurs.

What's different here?

This is Galaxy Global 3.0 for NT with MSVC++

Thanks for any help.

Doug
--------------------------------------------------------------------------
Douglas E. Forester           dougf@...           Tucson, Arizona
Project Technology, Inc.      Voice: 520/544-2881        Fax: 520/544-2912
Training, Consulting, Tools, and Architectures using Shlaer-Mellor OOA/RD

#27 From: Riccardo Cohen <rcohen@...>
Date: Mon Aug 23, 1999 7:52 pm
Subject: Re: [TECH] Listview with Rt Button
rcohen@...
Send Email Send Email
 
when I wanted to change right click behavior, i did that :

int a_vdomainview_subclass::HandleButtonDown(vevent *event)
{
   // command left = right (on windows control produces command modifier)
   if (event->GetBinding()==vname_Menu ||
     event->GetKeyModifiers()&vkeyMODIFIER_KEY_COMMAND)
   {
     event->SetBinding(vname_Select);
     event->SetButton(2);
   }
   return(vdomainview::HandleButtonDown(event));
}
vbool a_vdomainview_subclass::HandleButtonDownEvent(vdomainviewButtonDownEvent
*event)
{
   int button;
   button=event->event->GetButton();
   switch(button)
...
}

--
Riccardo Cohen

Articque
Les Roches
37230 Fondettes
France
email = rcohen@...
web = http://www.articque.com
tel: +33 02 47 49 90 49
fax: +33 02 47 49 91 49

#26 From: "Joey Jarosz" <joey@...>
Date: Mon Aug 23, 1999 6:03 pm
Subject: Re: Need tree control for Galaxy 2.7
joey@...
Send Email Send Email
 
We have a freeware component that should do the trick for you. Its called HTREE
and can be found at
http://www.hotngui.com/freeware.html.

In the same ZIP/tar file as HTREE is a subclass called OUTLINER which was
donated by one of clients that gives the HTREE
a great looking win95 look-and-feel.

There are also other freeware tools available at that same location. Many people
find PEEK very userful for debugging
event problems. Feel free to check out our other pages at
http://www.hotngui.com/hotdiff.html and
http://www.hotngui.com/products.html for more great Galaxy components.

thanx,
joey

Joey Jarosz
President, CEO
hot-n-GUI, Inc.
http://www.hotngui.com

#25 From: "Shedd, Nathan" <SHEDDN@...>
Date: Mon Aug 23, 1999 5:55 pm
Subject: Re: Need tree control for Galaxy 2.7
SHEDDN@...
Send Email Send Email
 
Check out www.hotngui.com/freeware.html for a galaxy add-on called HTREE.


-----Original Message-----
From: Victor R. Volkman [mailto:vv@...]
Sent: Monday, August 23, 1999 12:22 PM
To: gum@egroups.com
Subject: [gum] Need tree control for Galaxy 2.7



Hello

We are looking for a tree control that doesn't require
Galaxy 3.0 or any native GUI tricks.

thanks for any pointers.


------------------------------------------------------------------------

eGroups.com home: http://www.egroups.com/group/gum
http://www.egroups.com - Simplifying group communications

#24 From: "Victor R. Volkman" <vv@...>
Date: Mon Aug 23, 1999 5:44 pm
Subject: Re: Need tree control for Galaxy 2.7
vv@...
Send Email Send Email
 
At 01:32 PM 8/23/99 -0400, Mahini, Farid @ MCDY wrote:
>We have (almost done) an object with tree control functionality based on
>vlistview, but looks like Outlook Shortcuts control. The cell content
>(icons/text) changes based on cell state and various flags. I believe it
>should be easy to just subclass listview and make your own cell object. Then
>override DrawCellContent (& HandleButtonUp ..) method and place approriate
>image or text.
>
>Our object would not be useful to you as is because is very specific to our
>application and inter-mingles with lots of other objects. But I can send you
>the relevent portions if it helps?

Any help would be better than starting at ground-zero, many thanks!


> > -----Original Message-----
> > From: Victor R. Volkman [mailto:vv@...]
> > Sent: Monday, August 23, 1999 12:22 PM
> > To: gum@egroups.com
> > Subject: [gum] Need tree control for Galaxy 2.7
> >
> >
> >
> > Hello
> >
> > We are looking for a tree control that doesn't require
> > Galaxy 3.0 or any native GUI tricks.
> >
> > thanks for any pointers.
> >
> >
> > --------------------------------------------------------------
> > ----------
> >
> > eGroups.com home: http://www.egroups.com/group/gum
> > http://www.egroups.com - Simplifying group communications
> >
> >
> >
> >
>
>------------------------------------------------------------------------
>
>eGroups.com home: http://www.egroups.com/group/gum
>http://www.egroups.com - Simplifying group communications
>

#23 From: "Mahini, Farid @ MCDY" <Farid.Mahini@...>
Date: Mon Aug 23, 1999 5:32 pm
Subject: Re: Need tree control for Galaxy 2.7
Farid.Mahini@...
Send Email Send Email
 
We have (almost done) an object with tree control functionality based on
vlistview, but looks like Outlook Shortcuts control. The cell content
(icons/text) changes based on cell state and various flags. I believe it
should be easy to just subclass listview and make your own cell object. Then
override DrawCellContent (& HandleButtonUp ..) method and place approriate
image or text.

Our object would not be useful to you as is because is very specific to our
application and inter-mingles with lots of other objects. But I can send you
the relevent portions if it helps?

- Farid


> -----Original Message-----
> From: Victor R. Volkman [mailto:vv@...]
> Sent: Monday, August 23, 1999 12:22 PM
> To: gum@egroups.com
> Subject: [gum] Need tree control for Galaxy 2.7
>
>
>
> Hello
>
> We are looking for a tree control that doesn't require
> Galaxy 3.0 or any native GUI tricks.
>
> thanks for any pointers.
>
>
> --------------------------------------------------------------
> ----------
>
> eGroups.com home: http://www.egroups.com/group/gum
> http://www.egroups.com - Simplifying group communications
>
>
>
>

#22 From: "Mahini, Farid @ MCDY" <Farid.Mahini@...>
Date: Mon Aug 23, 1999 5:10 pm
Subject: Re: Listview with Rt Button
Farid.Mahini@...
Send Email Send Email
 
I have a listview containing icons (similar to Outlook Shortcuts) and I
change the content of the right click pop-up menu based on the index (or
cell content). You must subclass the listview in order to do this:

1) Make a default menu and add it to the list (SetMenu())
2) Over-write HandleButtonUp of vlistview, get pop-up menu and modify it as
per cell selection (GetSelection).


- Farid

> -----Original Message-----
> From: Bordin Sapsomboon [mailto:bxsst10+@...]
> Sent: Monday, August 23, 1999 12:11 PM
> To: G.U.M. List
> Subject: [gum] Listview with Rt Button
>
>
> Hi,
>
> I'm trying to make a listview respond to Rt mouse button click, in
> vlistviewSelectNotifyProc.  It seems that HANDLE_BUTTON_DOWN
> of Rt button
> never gets passed into vlistview's process.  There are only
> vlistviewGetLastButtonCount, LastPointerPosition.
>
> What I need to do is to have a popup menu in a vlistview
> corresponding to
> a selected row.
>
> Thanks,
> --bordin
>
>
> --------------------------------------------------------------
> ----------
>
> eGroups.com home: http://www.egroups.com/group/gum
> http://www.egroups.com - Simplifying group communications
>
>
>
>

#21 From: "Victor R. Volkman" <vv@...>
Date: Mon Aug 23, 1999 4:21 pm
Subject: Need tree control for Galaxy 2.7
vv@...
Send Email Send Email
 
Hello

We are looking for a tree control that doesn't require
Galaxy 3.0 or any native GUI tricks.

thanks for any pointers.

#20 From: Andrew Lukasik <alukasik@...>
Date: Mon Aug 23, 1999 4:16 pm
Subject: Re: Listview with Rt Button
alukasik@...
Send Email Send Email
 
Hmmm,

I didn't look into this but isn't there a popup menu attriubte
you can associate with the listview?  I vaguely remember looking
into this at some point.. maybe if you just assign a pop up menu
to the vlistview it will automagically popup with a right mouse
button click.

/Andrew

#19 From: Bordin Sapsomboon <bxsst10+@...>
Date: Mon Aug 23, 1999 4:11 pm
Subject: Listview with Rt Button
bxsst10+@...
Send Email Send Email
 
Hi,

I'm trying to make a listview respond to Rt mouse button click, in
vlistviewSelectNotifyProc.  It seems that HANDLE_BUTTON_DOWN of Rt button
never gets passed into vlistview's process.  There are only
vlistviewGetLastButtonCount, LastPointerPosition.

What I need to do is to have a popup menu in a vlistview corresponding to
a selected row.

Thanks,
--bordin

#18 From: Mike Dunne <mike@...>
Date: Fri Aug 20, 1999 3:41 am
Subject: Re: Galaxy & Win 2000 / Office 2000
mike@...
Send Email Send Email
 
Windows 2000 has "side by side " dll compatibility.
You can use your own dlls if you stick them in your
application bin directory. You also have to create a file (in the bin directory)
named
"myapplication.exe.local" which is 0 bytes in length.
Might help things.

cheers
Mike

-----Original Message-----
From: Robbert de Groot [SMTP:robbert@...]
Sent: Friday, August 20, 1999 5:22 AM
To: gum@egroups.com
Subject: [gum] Re: Galaxy & Win 2000 / Office 2000

> I recall Robbert de Groot had some problems with Office 2000 and Galacy
> (C /3.0).
>
> I would not want to use it in our new products if Galaxy conflicts with
> Office/Win 2000. I got a hold of a system with Windows 2000 & Office
> 2000 and tested one of my Galaxy (C++/2.6-2.7) application that was
> compiled with VC++ 5.0. It all seems to work ok. This app. does not use
> the vcomm or DAS, purely user interface and remote control stuff. I plan
> on using this system for Galaxy development so that I can see any
> problems. I will test one of our appl. with vcomm (no DAS, too slow) and
> see if also works.
>
> Has anyone else done any test on Galaxy(C++,2.7)/Win2000/Office2000 ?
> Thanx.

	 Our product runs fine with office 2000 installed.  It's just vrb (vre of
version 3.0 of Galaxy) just refuses to run.  I narrowed down the certain
dll's that when changed causes VRB to blow chunks but these DLLS are pretty
integral to windows that you can't simply replace them :(.  Also I really
don't know if it is due to a change inside these DLLs or a combination of
new dlls.  At any rate I gave up.  Right now I'm just doing all my VRB
editing on another system.  Reconfiguring the Office 2K bugged system seems
like too much of a chore.  We haven't gotten around to testing on a Windows
2K version yet but I suspect VRB will not work on that OS.

___________________________________________________________

Robbert de Groot
___________________________________________________________


------------------------------------------------------------------------
ebates.com. Earn up to 25% cash back for shopping online at 75 stores
like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
http://clickhere.egroups.com/click/690


eGroups.com home: http://www.egroups.com/group/gum
http://www.egroups.com - Simplifying group communications

#17 From: "Jeff Pek" <jpek@...>
Date: Thu Aug 19, 1999 10:17 pm
Subject: Re: [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
jpek@...
Send Email Send Email
 
We are using this setup fine. Our Galaxy libraries are still the ones
generated by VC5, though. What sort of problems are you having? We're using
SP3 for VC6.

- Jeff Pek, Arbortext

-----Original Message-----
From: Charles M. Strauss [mailto:cstrauss@...]
Sent: Thursday, August 19, 1999 6:12 PM
To: gum@egroups.com
Subject: [gum] [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0


Dear GUMmers:

   Has anyone had any problems using the combination of Galaxy 2.7, Windows
NT 4.0 and Microsoft Visual C++ 6.0?  I know C++ 5.0 works fine, but I seem
to be having problems with a new project under 6.0.
/c.m. strauss



------------------------------------------------------------------------
ebates.com. Earn up to 25% cash back for shopping online at 75 stores
like Borders, CDNow and Beyond.com. Refer a friend and earn even more!
http://clickhere.egroups.com/click/690


eGroups.com home: http://www.egroups.com/group/gum
http://www.egroups.com - Simplifying group communications

#16 From: "Charles M. Strauss" <cstrauss@...>
Date: Thu Aug 19, 1999 10:11 pm
Subject: [TECH] Galaxy 2.7 and Microsoft Visual C++ V6.0
cstrauss@...
Send Email Send Email
 
Dear GUMmers:

   Has anyone had any problems using the combination of Galaxy 2.7, Windows
NT 4.0 and Microsoft Visual C++ 6.0?  I know C++ 5.0 works fine, but I seem
to be having problems with a new project under 6.0.
/c.m. strauss

#15 From: "Robbert de Groot" <robbert@...>
Date: Thu Aug 19, 1999 9:22 pm
Subject: Re: Galaxy & Win 2000 / Office 2000
robbert@...
Send Email Send Email
 
> I recall Robbert de Groot had some problems with Office 2000 and Galacy
> (C /3.0).
>
> I would not want to use it in our new products if Galaxy conflicts with
> Office/Win 2000. I got a hold of a system with Windows 2000 & Office
> 2000 and tested one of my Galaxy (C++/2.6-2.7) application that was
> compiled with VC++ 5.0. It all seems to work ok. This app. does not use
> the vcomm or DAS, purely user interface and remote control stuff. I plan
> on using this system for Galaxy development so that I can see any
> problems. I will test one of our appl. with vcomm (no DAS, too slow) and
> see if also works.
>
> Has anyone else done any test on Galaxy(C++,2.7)/Win2000/Office2000 ?
> Thanx.

	 Our product runs fine with office 2000 installed.  It's just vrb (vre of
version 3.0 of Galaxy) just refuses to run.  I narrowed down the certain
dll's that when changed causes VRB to blow chunks but these DLLS are pretty
integral to windows that you can't simply replace them :(.  Also I really
don't know if it is due to a change inside these DLLs or a combination of
new dlls.  At any rate I gave up.  Right now I'm just doing all my VRB
editing on another system.  Reconfiguring the Office 2K bugged system seems
like too much of a chore.  We haven't gotten around to testing on a Windows
2K version yet but I suspect VRB will not work on that OS.

___________________________________________________________

Robbert de Groot
___________________________________________________________

#14 From: "Mahini, Farid @ MCDY" <Farid.Mahini@...>
Date: Thu Aug 19, 1999 9:11 pm
Subject: Keyboard focus in vmainview
Farid.Mahini@...
Send Email Send Email
 
Hello Again:

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 child
dialogs. Usually I can use TAB key to access various dialogItems within
containers and CTRL-TAB to jump from container to container. However, once I
use CTRL-TAB to enter mainview, I can not return the keboard focus back to
the container (I must use the mouse). CTRL-TAB just changes the focus from
one child dialog to another.

How can I return keyboard focus back to the container?
Thanx. in advance.

Farid Mahini
System Software Group
L-3 Communications - Microdyne
Tel:  (352) 687-4830 ext. 337
Fax:  (352) 687-8558
Mail: farid.mahini@...

#13 From: "Mahini, Farid @ MCDY" <Farid.Mahini@...>
Date: Thu Aug 19, 1999 8:52 pm
Subject: Galaxy & Win 2000 / Office 2000
Farid.Mahini@...
Send Email Send Email
 
Hello Gummers:

I recall Robbert de Groot had some problems with Office 2000 and Galacy (C
/3.0).

I would not want to use it in our new products if Galaxy conflicts with
Office/Win 2000. I got a hold of a system with Windows 2000 & Office 2000
and tested one of my Galaxy (C++/2.6-2.7) application that was compiled with
VC++ 5.0. It all seems to work ok. This app. does not use the vcomm or DAS,
purely user interface and remote control stuff. I plan on using this system
for Galaxy development so that I can see any problems. I will test one of
our appl. with vcomm (no DAS, too slow) and see if also works.

Has anyone else done any test on Galaxy(C++,2.7)/Win2000/Office2000 ? Thanx.

Farid Mahini
Systems Software Group
L-3 Communications - Microdyne
Tel:  (352) 687-4830 ext. 337
Fax:  (352) 687-8558
Mail: farid.mahini@...

#12 From: Jim Edwards-Hewitt <jim@...>
Date: Wed Aug 18, 1999 4:49 pm
Subject: Re: [TECH] starting second event loop in clipboard receive proc
jim@...
Send Email Send Email
 
Craig Timmerman wrote:
>Does anyone know why calling the Process() calls from within the
>clipboard receive proc would be a problem?  The manual states that when
>text is received from another app, a "transaction" must occur with the
>other app (doc on ReceiveRequestedContents).  Is there some interaction
>problem there?  I've looked at the Galaxy source code, but didn't really
>find anything that would clue me in.

I don't know why specifically, but here is my guess about what's happening,
based on my experience with other stupid bits of Windows architecture, like
DDE.  I would imagine that when the paste occurs, the other app is probably
blocked, waiting to finish processing some event before it returns to the
event loop.  When your Process() tries to get events, it can't until the
other app returns, so it also blocks.  The reason it doesn't happen with
internal paste is that it uses a different mechanism, which skips a lot of
the synchronization that occurs in a between-apps paste and just makes
direct calls within the app.

Since you don't actually need a response to the notice before returning
from the receive proc (unless I'm mistaken), I'd suggest posting an event
when the error occurs, and then displaying the notice in the event handler
(from the main event loop.)

	 -- Jim

#11 From: Craig Timmerman <craigt@...>
Date: Wed Aug 18, 1999 4:22 pm
Subject: [TECH] starting second event loop in clipboard receive proc
craigt@...
Send Email Send Email
 
We are using the global clipboard to cut and paste text.  The paste
command we have setup on our object sets the clipboard receive proc.  In
the receive proc we test for errors and if we can't handle the paste a
message is displayed in a vnotice.  We display the vnotice using the
ProcessStart, ProcessGet, ProcessStop calls.

Everything is fine when we copy and paste from within our app, even in
the error case.  If you copy text from a different app, and paste into
our app it works fine, UNLESS there is an error.  In that case we hit a
problem when we try to display the vnotice.  It looks like we've hit a
loop of some kind at the ProcessGet time.

Does anyone know why calling the Process() calls from within the
clipboard receive proc would be a problem?  The manual states that when
text is received from another app, a "transaction" must occur with the
other app (doc on ReceiveRequestedContents).  Is there some interaction
problem there?  I've looked at the Galaxy source code, but didn't really
find anything that would clue me in.

--
-------------------------------------------------------------------------------
Craig Timmerman     	    	    	       email:    craigt@...
Evolutionary Technologies International, Inc.  ph/fax:
(512)383-3032/383-3300
Frost Bank Plaza                               work web: www.eti.com
816 Congress Avenue, Suite 1300                fun web:
www.hotchorus.org
Austin, TX  78701
-------------------------------------------------------------------------------

#10 From: Stephen Hall <stephen@...>
Date: Tue Aug 17, 1999 9:00 am
Subject: Re: transparency image creation
stephen@...
Send Email Send Email
 
On Tuesday, August 17, 1999 9:49 AM, Bordin Sapsomboon
[SMTP:bxsst10+@...] wrote:

> I wonder that the image already exists, could I convert it to a
> transparency image?  I tried vdrawImageIdent(image) (on a mask device) in
> creating the transparency but the app crashed.

Attached is some code that might help. Call vimageCalculateTransparency()
with the image you've got and it should return a transparency. It assumes
that the bottom right pixel of your input image is the colour that should be
transparent. This is a hairy assumption, I know, but it works OK for us. You
may need to hack it a little to get it to do what you require.

HTH.

Cheers
Stephen

  <<xpar.c>>

#9 From: "Jeff Barr" <jeff@...>
Date: Tue Aug 17, 1999 6:20 am
Subject: Re: Ok, we are live!
jeff@...
Send Email Send Email
 
Dick,

Thanks, but I can still handle it for now. I just wanted
to get out of the business of running the mailing list,
when there are perfectly good services out that that
can do a far better job.

Jeff;

Jeff Barr - 425-836-5624
mailto:jeff@...
http://www.vertexdev.com/~jeff
4610 191st Place NE. Redmond, WA


-----Original Message-----
From: Dick Balaska [mailto:dick@...]
Sent: Saturday, August 14, 1999 4:14 AM
To: gum@egroups.com
Subject: [gum] Re: Ok, we are live!


Jeff Barr wrote:
>
> Wayne asks:
>
> > Will the GUM website still be the same?
>
> Undecided. My plan is to do as close to zero work as

I can take over the web site at my place if you'd like.

dik

When you're driving
in your car
See our signs
both near and far
Burmashave.

------------------------------------------------------------------------
Click here for 4 FREE TRIAL ISSUES of Sports Illustrated!  If you're
satisfied, your subscription will continue at the guaranteed lowest rate
of $.75 an issue for 52 issues! http://clickhere.egroups.com/click/678


eGroups.com home: http://www.egroups.com/group/gum
http://www.egroups.com - Simplifying group communications

#8 From: Bordin Sapsomboon <bxsst10+@...>
Date: Mon Aug 16, 1999 5:04 pm
Subject: transparency image creation
bxsst10+@...
Send Email Send Email
 
Hi,

I create a image with tranparency programmatically.  My image is a simple
one:

   image = vwindowCreateBufferImage(r->w, r->h);
   vdrawImageDevice(image);
   vdrawSetColor(WHITE_color);
   vdrawRectFill(0,0,r->w,r->h);
   vdrawMoveTo(x_offset, y_offset);
   vdrawAShow(0,0, title);

The transparency is created using the same drawing calls but on a mask
device:

   transparency = vwindowCreateSpecific(r->w, r->h, 2);
   vdrawMaskDevice(image);
   vdrawSetFunction(vdrawFUNC_CLEAR);
   vdrawRectFill(0,0,r->w,r->h);
   vdrawSetFunction(vdrawFUNC_SET);
   vdrawMoveTo(x_offset, y_offset);
   vdrawAShow(0,0, title);

Then, vimageSetTransparencyOwned(image, transparency).

I wonder that the image already exists, could I convert it to a
transparency image?  I tried vdrawImageIdent(image) (on a mask device) in
creating the transparency but the app crashed.


Thank you,
--bordin

#7 From: Riccardo Cohen <rcohen@...>
Date: Mon Aug 16, 1999 7:44 am
Subject: Re: ambiencia
rcohen@...
Send Email Send Email
 
>> Has anyone been able to get some kind of respons to e-mails sent to that
address lately?

They are very misterious.
I wait also for an answer...


--
Riccardo Cohen

Articque
Les Roches
37230 Fondettes
France
email = rcohen@...
web = http://www.articque.com
tel: +33 02 47 49 90 49
fax: +33 02 47 49 91 49

#6 From: Dick Balaska <dick@...>
Date: Sat Aug 14, 1999 11:13 am
Subject: Re: Ok, we are live!
dick@...
Send Email Send Email
 
Jeff Barr wrote:
>
> Wayne asks:
>
> > Will the GUM website still be the same?
>
> Undecided. My plan is to do as close to zero work as

I can take over the web site at my place if you'd like.

dik

When you're driving
in your car
See our signs
both near and far
Burmashave.

#5 From: "Jeff Barr" <jeff@...>
Date: Sat Aug 14, 1999 2:17 am
Subject: Re: Ok, we are live!
jeff@...
Send Email Send Email
 
Wayne asks:

> Will the GUM website still be the same?

Undecided. My plan is to do as close to zero work as
possible (I am not a Gen-X Slacker, but the lifestyle
certainly is appealing :-).

We have extra per-user info on the web pages. Does
anyone find this useful? Yeah, I could look at the
server logs, but see above.

Jeff;

Jeff Barr - 425-836-5624
mailto:jeff@...
http://www.vertexdev.com/~jeff
4610 191st Place NE. Redmond, WA


-----Original Message-----
From: wac@... [mailto:wac@...]
Sent: Friday, August 13, 1999 8:53 AM
To: gum@egroups.com
Subject: [gum] Re: Ok, we are live!




Will the GUM website still be the same?

Wayne Christian - IBM-NSD-CTI-CallPath
primary email       - wac@...
secondary email  - wac@...
lotus mail              - wac@ibmusm27
VM mail                - wac@ralvm6



------------------------------------------------------------------------
Click here for 4 FREE TRIAL ISSUES of Sports Illustrated!  If you're
satisfied, your subscription will continue at the guaranteed lowest rate
of $.75 an issue for 52 issues! http://clickhere.egroups.com/click/678


eGroups.com home: http://www.egroups.com/group/gum
http://www.egroups.com - Simplifying group communications

#4 From: Karen Baldwin <karenb@...>
Date: Fri Aug 13, 1999 6:21 pm
Subject: Mail Test (ignore me)
karenb@...
Send Email Send Email
 
Just seeing if I can post successfully.

#3 From: "Jeff Barr" <jeff@...>
Date: Fri Aug 13, 1999 3:07 pm
Subject: Ok, we are live!
jeff@...
Send Email Send Email
 
Ok, the new list is now active. All email to GUM should now
go to the new address:

		 gum@egroups.com

Send any questions my way!

Jeff;

Jeff Barr - 425-836-5624
mailto:jeff@...
http://www.vertexdev.com/~jeff
4610 191st Place NE. Redmond, WA

#2 From: wac@...
Date: Fri Aug 13, 1999 3:52 pm
Subject: Re: Ok, we are live!
wac@...
Send Email Send Email
 
Will the GUM website still be the same?

Wayne Christian - IBM-NSD-CTI-CallPath
primary email       - wac@...
secondary email  - wac@...
lotus mail              - wac@ibmusm27
VM mail                - wac@ralvm6

#1 From: "Jeff Barr" <jeff@...>
Date: Sat Aug 7, 1999 3:44 pm
Subject: Welcome to the gum eGroup
jeff@...
Send Email Send Email
 

This list is for users of the Galaxy 
Application Environment developed by 
Visix Software.

Group Manager: gum-owner@egroups.com

To subscribe, send a message to gum-subscribe@egroups.com or go to the e-groups's home page at http://www.egroups.com/group/gum/


Messages 1 - 30 of 594   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help