Skip to search.
rapidq · Rapid-Q is a multiplatform GUI and CONSOLE BASIC compiler/interpreter

Group Information

  • Members: 1559
  • Category: Basic
  • Founded: May 13, 2000
  • 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

  Messages Help
Advanced
Messages 977 - 1006 of 37737   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
977 Eddy Van Esch
eddy.van.esch@... Send Email
Aug 1, 2000
9:37 am
I've been reading the RQ help files to see how you have to call Windows API dll-routines. From what I read, the parameter passing seems like risky business. It...
978 Daniel Martin
gmartin@... Send Email
Aug 1, 2000
9:37 am
Yeah, before RQ had a functional IDE editor, I always thought it would make life easier, but I still use manual coding. Probly just a habit now! :) (BTW probly...
979 w.brants
wbrants@... Send Email
Aug 1, 2000
1:36 pm
I hope someone can tell me if it is possible to navigate through a qrichedit component from within a program. I would like to search for a string and then jump...
980 Pavel Minayev
minayev@... Send Email
Aug 1, 2000
4:45 pm
... qrichedit ... line . ... AFAIK, when you select the string by modifying .SelStart & .SelLength properties, QRichTextBox scrolls to selection automatically...
981 Darren Turland
dturland@... Send Email
Aug 1, 2000
8:07 pm
... specific ... You can also modify .SelStart only (this will move the ... Once .Selstart has positioned the cursor, use the sendmessage below to force the...
982 Steven Edwards
stevenedwards@... Send Email
Aug 1, 2000
9:38 pm
For everyone into retro gaming, I have a classic-style paddle and ball game up on the BASICs website: http://go.to/thebasics Very simple graphics ( line,...
983 morrisd@... Send Email Aug 1, 2000
11:30 pm
Good day to everyone, Here is a small example using Trackbars and QCanvas to draw a dynamic bar graph. You will notice it flickers on display. Also, when the...
984 William Yu
voxel@... Send Email
Aug 2, 2000
1:17 am
... Well, since I didn't want to break any existing code, I decided not to introduce the byval keyword, but I may add this as a option that can be turned on....
985 Thomas Simers ("Echec...
echecero@... Send Email
Aug 2, 2000
1:17 am
... You could reduce flicker by giving your program less to draw.... If you could just draw the new portion of the bar, or the newly-visible portion of the...
986 William Yu
voxel@... Send Email
Aug 2, 2000
1:25 am
... Which part? :) Yes, use QFindDialog someone posted, and use .SelStart to position the caret. There's an example both on the web and in the examples...
987 Steven Edwards
stevenedwards@... Send Email
Aug 2, 2000
1:30 am
... I believe this is going to be the only answer with the design of the code as it stands. The nature of what you are doing ( realtime update ) needs a ...
988 William Yu
voxel@... Send Email
Aug 2, 2000
1:37 am
... Yes, I would recommend double buffering, ie. draw your artwork on a QBITMAP and then call Canvas.draw(0,0,bitmap.bmp) This will reduce flicker definitely...
989 Steven Edwards
steveags@... Send Email
Aug 2, 2000
12:52 pm
eGroups Member NewsFrom: The eGroups Team Subject: eGroups Member News ... There goes the neighborhood! :o...
990 Darren Turland
dturland@... Send Email
Aug 2, 2000
2:23 pm
The behaviour of QcoolBtn changes depending on whether .show, or .showmodal is used. Using .showmodal everything works fine, move the mouse over the button...
991 Jernej Simoni
jernej.simoncic@... Send Email
Aug 2, 2000
8:06 pm
I was trying to compile some programs for GTK (under windows and linux), and experienced some problems: - under linux I compiled chatserver and chatclient....
992 brynm
brynm@... Send Email
Aug 2, 2000
10:52 pm
What exactly is it that prevents a form from minimizing to the taskbar? I've seen a couple of hacks to get it to do so, but they usually compromise some other...
993 Daniel Foote
d_foote@... Send Email
Aug 3, 2000
12:16 am
Hello all! I'm having a minor problem: when my forms are closed (ie. sub forms) they cause the program to have problems. Is there a way to disable the "X"...
994 brynm
brynm@... Send Email
Aug 3, 2000
12:27 am
It's a form function. Form.DelborderIcons. Form.delbordericons = 1 ' Kills Minimize Form.delbordericons = 2 ' Kills Restore Form.delbordericons = 3 ' Kills...
995 William Yu
voxel@... Send Email
Aug 3, 2000
6:40 am
... I'm not sure if there's anything in there that isn't GTK compatible, the code wasn't designed for GTK but I'll look into it... ... I don't remember...
996 William Yu
voxel@... Send Email
Aug 3, 2000
7:20 am
... I'm not sure of the exact cause, but there's a hidden application object that handles and dispatches the messages to all forms. It's actually the ...
997 The Family
gibsons3@... Send Email
Aug 3, 2000
7:55 am
#^&^@() it's time to move, they probably changed the terms of service "agreement" to say they own *all* content - like Geocities... Andrew...
998 The Family
gibsons3@... Send Email
Aug 3, 2000
7:58 am
Crash guard sucks anyway. and did you get the latest GTK libs for windows? Andrew...
999 Pavel Minayev
minayev@... Send Email
Aug 3, 2000
8:51 am
Get it at http://www.egroups.com/files/rapidq/QAniFlag.zip. This component displays a flag-on-a-wind or sorta. Not actually 3D, but it uses some tricks to make...
1000 Daniel Foote
d_foote@... Send Email
Aug 3, 2000
9:03 am
Hello all again! Hey, Brynm, that's a nice idea, but it doesn't work. If you have a look at RAPIDQ.INC, you can see that 3 will either delete or add a help...
1001 Jernej Simončič
jernej.simoncic@... Send Email
Aug 3, 2000
2:44 pm
Looks like this is a common trouble of Delphi programs (I've seen some others acting the same way). Interesting, GTK programs minimize normally... Jernej...
1002 brynm
brynm@... Send Email
Aug 3, 2000
6:50 pm
I could swear that it worked before for me... Oh well. Sorry about that. bm :)-~ ... From: "Daniel Foote" <d_foote@...> To: <rapidq@egroups.com> ...
1003 Wilbert Brants
wbrants@... Send Email
Aug 3, 2000
6:52 pm
Hi William, Thanks for your answer. Could you (or someone else) also tell me how I can read the country setting from the control panel. I would like to create...
1004 Wilbert Brants
wbrants@... Send Email
Aug 3, 2000
6:55 pm
Hi Daniel, If you don't need the title bar you could use the bsNone border style. When you open a form with no border the x also isn't there. Wilbert...
1005 Wilbert Brants
wbrants@... Send Email
Aug 3, 2000
7:04 pm
I just posted a reply on this subject. I realised there's a better way to handle this. DelBorderIcons 0 This should do it. Wilbert...
1006 Daniel Foote
d_foote@... Send Email
Aug 4, 2000
12:19 am
Hello all! All of these suggestions are good, but they don't service me needs. I do happen to want a title bar, bsNone doesn't look right. As well as that,...
Messages 977 - 1006 of 37737   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