Search the web
Sign In
New User? Sign Up
rapidq · Rapid-Q is a multiplatform GUI and CONSOLE BASIC compiler/interpreter
? 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.

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 34598 - 34627 of 35534   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
34598
Hello... Does somebody know how to popup messagebox that dissapear after few seconds? Thanks....
Slavko Kocjancic
slavkok
Offline Send Email
Apr 1, 2009
9:01 am
34599
Hi, sometimes I have this problem. If my application is working FOR - NEXT I cannot break the cycle at run time. I use this cycle in graphic's programs,...
giovanniseregni
Offline Send Email
Apr 1, 2009
10:49 am
34600
... You can add a 'Print' somewhere in your code so that your GUI executable opens a console. Closing the console will immediatly close the Form ... but it's...
Jacques
erdemaal
Offline Send Email
Apr 1, 2009
11:32 am
34601
... Another alternative is to use a flag. Example... 'Start of Code snippets DefByte ExitFlag 'needs to be global Sub Do_Whatever ExitFlag = False For i = 0 To...
burkleyd
Offline Send Email
Apr 1, 2009
11:50 am
34602
... You can even use the same button that you used to start the calculation. It makes a nice toggle. Here is an example, much like David's code. All it does is...
Oliver Ozohanics
oliver_ozoha...
Offline Send Email
Apr 1, 2009
12:27 pm
34603
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the rapidq group. File :...
rapidq@yahoogroups.com
Send Email
Apr 1, 2009
1:57 pm
34604
Hello, Slavko! You wrote to <rapidq@yahoogroups.com> on Wed, 01 Apr 2009 11:00:18 +0200: SK> Does somebody know how to popup messagebox that dissapear after...
Andrew Shelkovenko
diakin2002
Offline Send Email
Apr 1, 2009
2:06 pm
34605
Thanks to Jacques, David and Oliver! The flag in the button is a good trick! In my case it was a bit complicated because the button does a QOpendialog.Execute...
giovanniseregni
Offline Send Email
Apr 1, 2009
3:20 pm
34606
Ok... Seems nothing new. I just wish to avoid ussage of timer. I just looking for something like MessageBox ("This is infoTest" , 5) ' to show message for 5...
Slavko Kocjancic
slavkok
Offline Send Email
Apr 1, 2009
3:22 pm
34607
... TipToolText can sometime be used that way ? In RapidQ TipToolTexts are set by property 'Hint' and 'ShowHint' of many components. The timouts are set in...
Jacques
erdemaal
Offline Send Email
Apr 1, 2009
5:56 pm
34608
I wrote a QuickSort fast routine sorting an array of 32 bit Integers but it bugs when the Array is larger than 64K? Anybody knows why ... I remember of a...
Jacques
erdemaal
Offline Send Email
Apr 1, 2009
6:01 pm
34609
... When do you have the problem? I checked it also with tmporary variable (because I have bugs if I attempt to assign a variable directly from another...
giovanniseregni
Offline Send Email
Apr 1, 2009
7:13 pm
34610
... I didn't have a problem with the following. 'As always... 'Be aware of possible line-wrapping 'Be aware of possible unwanted space(s) 'Start of Code ...
burkleyd
Offline Send Email
Apr 1, 2009
8:00 pm
34611
... 'This is a "revised" version. 'I had to move the setting of the integer array 'elements to a separate For/Next loop (not sure why). $AppType GUI $Option...
burkleyd
Offline Send Email
Apr 1, 2009
8:17 pm
34612
... Thank you Giovanni and David. It must be a glitch in my fast RQASM function, problem is that I *can_t* see the problem. Strange it only happens when the...
Jacques
erdemaal
Offline Send Email
Apr 1, 2009
9:20 pm
34613
... Anyway warnig in multi-dimensional arrays this is a must for me, after I wasted a lot of time :) FOR Px%=0 to 128 'fix rapidq unable to fill ...
giovanniseregni
Offline Send Email
Apr 1, 2009
10:24 pm
34614
... IIRC... in order to to get a continuous memory allocation... you'd need to use the VirtualAlloc (API) function. I've never tried it because... I've never...
burkleyd
Offline Send Email
Apr 1, 2009
10:26 pm
34615
... What I would do I am the one who uses multi languges sometimes combined I would shell to a seperate Compiled AHK program that did just that ie:...
Terry
terry_prism
Offline Send Email
Apr 1, 2009
11:17 pm
34616
... Um... You could write this abstraction... -- Christopher W. <c45207@...>...
Christopher W.
c45207
Offline Send Email
Apr 1, 2009
11:52 pm
34617
... Thanks Terry. If AHK has a timed-out MessageBox... then there must be an API function for it. I located it and revised the file that I uploaded here at the...
burkleyd
Offline Send Email
Apr 2, 2009
12:15 am
34618
With help from some of Jacques' RQAsmUtils code... you can execute some code SUPER SUPER fast!!! 'As Always... 'Be aware of possible line-wrapping 'Be aware of...
burkleyd
Offline Send Email
Apr 2, 2009
1:15 am
34619
... That's is. Thanks... &@^!$*^(%#$ undocumented functions. I want documentation :D Thanks all....
Slavko Kocjancic
slavkok
Offline Send Email
Apr 2, 2009
1:04 pm
34620
... I got to thinking about your sorting dilemma this morning and I have a question. The unsorted list... 396 121 034 457 'IntAry(0, 0:1:2:3) 151 081 267 421...
burkleyd
Offline Send Email
Apr 2, 2009
2:54 pm
34621
... Don't work here, I guess the function 'ordinal' number is not the same in all versions of User32.Dll ???? I had to replace: DefLng EntryPoint =...
Jacques
erdemaal
Offline Send Email
Apr 2, 2009
3:43 pm
34622
... -- snipped -- ... LOL... that's just the way my lucks been going lately. I was hoping to pull off a good April Fool's day joke by doing something simple in...
burkleyd
Offline Send Email
Apr 2, 2009
4:20 pm
34623
... No ... Yes ... No ... It's not I can't do it. Just my fast RQASM function bugs and I *CANT* find why (I like/hate that :). I'll rewrite it another way ......
Jacques
erdemaal
Offline Send Email
Apr 2, 2009
4:38 pm
34624
... Don't tell me that I actually was able to help in a small way. As always David your ability amazes me. I managed to get a VB express application working. I...
Terry
terry_prism
Offline Send Email
Apr 3, 2009
1:34 am
34625
I thought I would share this. BACKGROUND: Wife requested an ebay tool. Problem I had to keep three variables linked for each item. Item Description Finish Time...
Terry
terry_prism
Offline Send Email
Apr 3, 2009
2:04 am
34626
... Sounds like you figured out your solution. If you want an alternate idea I suggest QStringList, because the item indexes will be the same between objects....
johnk20042001
Offline Send Email
Apr 3, 2009
3:49 am
34627
This is for Eodor.. How do you go to /scroll to line# xx in SuperEdit? How do you go to the last EOL when you click on a line --- it always goes to the column...
johnk20042001
Offline Send Email
Apr 3, 2009
3:56 am
Messages 34598 - 34627 of 35534   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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