Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gui4cli · Open Source script language

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 425
  • Category: Development
  • Founded: Aug 14, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 5017 - 5051 of 5840   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
5017 reneatch Send Email Oct 4, 2008
4:20 pm
Hi Dimitris, I'm quite often working with the julian date in my programs. To simplify them, I have an enhancement request for the 'EXTRACT ... UNJULIAN ...'...
5018 Dimitris Keletsekis
gui4cli Send Email
Oct 5, 2008
7:21 pm
Hi Rene, Sure, I'll add something and upload in a few days. All the best, Dimitris...
5019 reneatch Send Email Oct 11, 2008
1:38 pm
Hi Dimitris, Thanks for your reply and sorry for my late feedback. Q: Do you already know if you simply change the value (just return the year in four digits)...
5020 Dimitris Keletsekis
gui4cli Send Email
Oct 12, 2008
6:57 am
Hi Rene, ... For now you can just parse it yourself. Here is an example gui G4C testgui xOnLoad var1 = "15/3/08" var2 = "15/3/65" say 'var1 = $var1 - var2 =...
5021 reneatch Send Email Oct 12, 2008
11:00 am
Thanks Dimitris. Nice idea to put it in a routine (or a function). This way I can already change my programs and at a later step only this single ...
5024 chris.kevany Send Email Oct 13, 2008
11:54 am
Hi to all, Does somebody knows a way to take focus off of a xTextin event. "setEvent #this myOtherEvent select", works on everything except xTextin. I need it...
5025 Fer Stoopman
fmstoopman Send Email
Oct 13, 2008
5:45 pm
... Hi Chris, Normally, an XtextIn is triggered when you press enter. So add the command setevent #this <textin id> unselect. It will take focus from the...
5026 chris.kevany Send Email Oct 13, 2008
6:11 pm
... Hi Fer, I tried this in the xOnKey event but this won't do the trick. It seems that xOnKey is not executed when the cursor is in a xTextin event. Your...
5028 Fer Stoopman
fmstoopman Send Email
Oct 13, 2008
8:52 pm
... Hi Chris, I also encountered that 'problem&#39; and the way I used to do it was clicking another event (eg a button) and dragging the mouse away from that...
5029 marianne976 Send Email Oct 13, 2008
10:09 pm
... Chris and Fer I also played around with this issue and do discover the following. Chris is correct the CONTROL key does not work for single letters of ...
5032 chris.kevany Send Email Oct 13, 2008
11:21 pm
... Hi Frans, I tried your example with the function keys and they also work that way. At least for me running W2K. I only find it a problem that you use...
5033 marianne976 Send Email Oct 13, 2008
11:40 pm
... Hi Chris I agree with you. One can however make use of wildcards for the textin events for example: Setevent #this Textin* unselect //for ids textin1,...
5034 Fer Stoopman
fmstoopman Send Email
Oct 14, 2008
10:32 am
Hi Chris, A small variation to all possible solutions: XonKey 'ESCAPE&#39; setevent #this '*' unselect So deselect ALL events when pressing escape which is the...
5035 chris.kevany Send Email Oct 14, 2008
6:39 pm
... Hi Fer and Frans, I found this "weird" syntax which seems to solve the problem for all keys (with some restrictions). The first one unselects everything,...
5036 chris.kevany Send Email Oct 17, 2008
8:05 pm
Hi Dimitris, In the past you took off the 240 bytes limit of several events. Is it possible to do that also for the ReqFile filter string? My application...
5037 Fer Stoopman
fmstoopman Send Email
Oct 18, 2008
9:21 am
... Hi Chris. Strange, the reqfiles I tried can have a filter as large as the buffer size. If the size is larger G4C crashes (obviously). Maybe it's the way...
5038 chris.kevany Send Email Oct 18, 2008
10:39 am
... Hi Fer, To be honest, I didn't check it for a number of versions so perhaps Dimitris changed it already. I can't remember if it was mentioned in the past. ...
5039 chris.kevany Send Email Oct 18, 2008
12:12 pm
Hi Fer, I checked it out and it seems to still has the restiction. Gui4Cli doesn't give a error or crash when I supply large strings but it looks likes the...
5040 Fer Stoopman
fmstoopman Send Email
Oct 18, 2008
1:10 pm
Hi Chris, Try the following test gui: ~~~~~~~~~~~~~~~~~~~~~~~~~ G4C ReqFileTest XonLoad filter = "" filter1 = "Select a file of the MP\$i type/*.MP\$i\/" for i...
5041 chris.kevany Send Email Oct 18, 2008
4:32 pm
... Hi Fer, Yes this works but isn't the regular use of a filter. Below is what I need and it's the syntax as in the Gui4Cli manual. But this doesn't work for...
5042 Fer Stoopman
fmstoopman Send Email
Oct 18, 2008
6:41 pm
Hi Chris, ... Only for testing purposes. Your example works fine, even for a 100 count loop. It just doesn't fit into the output window. To check the length of...
5043 chris.kevany Send Email Oct 18, 2008
9:28 pm
... Hi Fer, I've tried it in both W2K and WXP and for me it doesn't work? I also use g4c 19.29 Does a mp3 file shows up when selecting "supported types" ? ...
5044 Fer Stoopman
fmstoopman Send Email
Oct 18, 2008
9:45 pm
Hi Chris, ... This is really puzzling. MP3 files are shown alright in the file requester under 'supported types'. Apparently this is not a gui4cli problem but...
5045 daz4roo Send Email Oct 19, 2008
6:00 am
... I'm seeing the same symptoms as Chris - anything over ~250 bytes in a single 'type group' filter is unseen (ignored). I tried using the native Win32 API on...
5046 Dimitris Keletsekis
gui4cli Send Email
Oct 19, 2008
7:15 am
Hi all, From what I see, the string is stored as is, without limitation of characters and passed to the function as such. So is should be able to take any...
5047 chris.kevany Send Email Oct 19, 2008
9:39 am
... Hi to all, I remember there was a dos limitation for strings of 254 chars. Assuming that Fer runs W98 and doesn't seem to have the problem makes it even...
5048 daz4roo Send Email Oct 19, 2008
10:30 am
... Hi Chris, It's not related to string length or DOS - it's a bug in the implementation of GetOpenFileName. The chances of running into it are so rare that...
5049 Fer Stoopman
fmstoopman Send Email
Oct 19, 2008
10:55 am
Hi Chris, ... No, I'm running XP and Vista with a clear preference for XP. Fer...
5050 Richard
xytroxon Send Email
Oct 19, 2008
3:21 pm
"Man's has got to know his file system limitations..." -- Dirty Harry "Magnum Programmer" http://en.wikipedia.org/wiki/NTFS Maximum path length An absolute...
5051 reneatch Send Email Oct 29, 2008
8:36 pm
Hi All, If I draw an xTab, I cannot change the background color. Is that a works-as-designed issue? Also I have realised, that the top of the tab area has an...
Messages 5017 - 5051 of 5840   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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