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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 20967 - 20996 of 35536   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20967
I'm a new rapid-q programmer ans i need help. Can you tell me how can i do to communicate between two computers in a LAN using qsocket.The chat example of...
squall_billard
Offline Send Email
Jan 1, 2004
2:18 pm
20968
... Can you PING the other computer ? - if yes, it should work with any socket application - if no, you have to work on your LAN configuration Jacques...
Jacques Philippe
erdemaal
Offline Send Email
Jan 1, 2004
2:39 pm
20969
I forgot to add DIM winhandle as long I used this variable with the CreateWindowEx to make the client area whose code is: winhandle = CreateWindowEx(0, _ ...
Danny Jackson
blackjack_d307
Offline Send Email
Jan 1, 2004
6:59 pm
20970
Hi, Can you do something with this Reverse is almost the same code only you do richedit.line(c)=right$(richedit.line(c),len(richedit.line(c))-1) or if the...
Byteshaper
picard2026
Offline Send Email
Jan 1, 2004
11:10 pm
20971
How about other network examples? http://g.yi.org/f.php?f=5666 Guidance ... ===== Rapid-Q and Reginald Rexx language: http://g.yi.org or http://a.2myip.com ...
Guidance
guidance_sha...
Offline Send Email
Jan 1, 2004
11:31 pm
20972
Hi all, Ive got yet another question for you all.. Ive got a window that I NEVER ever want minimized. There is no minimize button but using the "Show Desktop"...
Christopher
blupherl
Offline Send Email
Jan 2, 2004
2:38 am
20973
Nevermind folks... I think I figured it out by myself :-) For those interested: Public Const WM_SHOWWINDOW = &H18 declare sub MainWndProc(Handle AS INTEGER,...
Christopher
blupherl
Offline Send Email
Jan 2, 2004
3:18 am
20974
... using ... long ... Hey Danny, try this, in my porgrams it works fine: CONST WM_SETFONT = &H30 DIM MyForm AS QFORM DIM MyFont AS QFONT MyFont.Name = "Arial"...
jeanclaudelennon
jeanclaudele...
Offline Send Email
Jan 2, 2004
4:07 am
20975
... press ... Have you already tested it? Windows usually receive a WM_SYSCOMMAND notification with wParam = SC_MINIMIZE when they are about to be minimized. ...
jeanclaudelennon
jeanclaudele...
Offline Send Email
Jan 2, 2004
4:15 am
20976
... Thanks for leading me in the right direction! I tried what you suggested but the problem was that I had to actually HAVE a minimize button. On my window...
Christopher
blupherl
Offline Send Email
Jan 2, 2004
8:37 am
20977
Try this: '___________________________________________________ SUB Startup CM_SetFontOwnership(winhandle, True) Dim fntx as qfont ' Now: the following line may...
trenchtownman
Offline Send Email
Jan 2, 2004
11:43 am
20978
It worked, thanks again I'm eternally in your debt. ... With warmest regards, Danny ... DATE: Fri, 02 Jan 2004 12:05:24 From: Trenchtownman...
Danny Jackson
blackjack_d307
Offline Send Email
Jan 2, 2004
6:07 pm
20979
On Saturday, December 27, 2003 at 3:02:31 PM, Andrew Shelkovenko wrote in the message "[rapidq] Re: Removing extended window styles" ... Instead of using AND...
Chris
c45207
Offline Send Email
Jan 3, 2004
3:41 am
20980
On Wednesday, December 31, 2003 at 2:52:35 PM, don67geo wrote in the ... Might/Probably won't work on Windows 2000 and XP ... Be careful where you put the...
Chris
c45207
Offline Send Email
Jan 3, 2004
3:54 am
20981
On Wednesday, December 31, 2003 at 3:22:25 PM, Roger DeBloois wrote in ... RapidQ has a different architecture that QuickBasic. RapidQ does not create modules;...
Chris
c45207
Offline Send Email
Jan 3, 2004
4:05 am
20982
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of your Rapid-Q group. File : /richedit.zip ...
Andrew Shelkovenko
diakin2002
Offline Send Email
Jan 3, 2004
10:49 am
20983
Hi all. I've got a simple question: CREATE A AS QFORM CREATE B AS QTabControl AddTabs "C","D" DelTabs 1 END CREATE ShowModal END CREATE Why DelTabs does not...
Paolo Brasolin
pbrasolin
Offline Send Email
Jan 3, 2004
2:57 pm
20984
... Because it has to be in a SUB. Try this demo: $ESCAPECHARS ON DECLARE SUB TabDel(Key AS BYTE, Shift AS WORD, Sender AS QTABCONTROL) CREATE Font AS QFONT ...
Alan Jones
senojela
Offline Send Email
Jan 3, 2004
4:56 pm
20985
Hello, How can I get pull this data out as an array so I can chose which one I want? Like in the numeric array. EName$(1) = "Centipede " EName$(2) = "Gnoll " ...
reactchemicals
Offline Send Email
Jan 3, 2004
5:51 pm
20986
... TYPE TNames EName$(1 TO 5) AS STRING * 10 END TYPE DIM Names AS TNames DIM File AS QFILESTREAM WITH Names .EName$(1) = "Centipede " .EName$(2) = "Gnoll " ...
Alan Jones
senojela
Offline Send Email
Jan 3, 2004
6:32 pm
20987
Hello! Rapid-Q Documentation Project (RQDP) Release 01.6 is available in http://www.rapidq.0catch.com/ To Taj Morton: Can you mirror this site ? With best...
Andrew Shelkovenko
diakin2002
Offline Send Email
Jan 3, 2004
9:15 pm
20988
Please accept my membership thanks _____________________________________________________________ Are you a Techie? Get Your Free Tech Email Address Now! Visit...
robin law
reactchemicals
Offline Send Email
Jan 4, 2004
12:11 am
20989
Is there any way to force programs in RapidQ to a certain screen resolution ie 800 x 600.? Thanks, Robin...
reactchemicals
Offline Send Email
Jan 4, 2004
12:24 am
20990
Theres an API call you could use. Declare Function ChangeDisplaySettings Lib "user32" Alias "ChangeDisplaySettingsA" (lpDevMode As Any, ByVal dwFlags As Long)...
Christopher
blupherl
Offline Send Email
Jan 4, 2004
1:22 am
20991
On Saturday, January 3, 2004 at 7:11:41 PM, robin law wrote in the message "[rapidq] MEMBER OF RAPIDQ" ... You have been accepted. Welcome! -- Chris...
Chris
c45207
Offline Send Email
Jan 4, 2004
2:28 am
20992
On Saturday, January 3, 2004 at 7:24:22 PM, reactchemicals wrote in the message "[rapidq] Screen Resolution" ... Yes. You can set the form to a size of 800 x...
Chris
c45207
Offline Send Email
Jan 4, 2004
2:29 am
20993
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of your Rapid-Q group. File : /HELP/rqdp.zip...
Andrew Shelkovenko
diakin2002
Offline Send Email
Jan 4, 2004
8:08 am
20994
Hello, reactchemicals! You wrote to <rapidq@yahoogroups.com> on Sat, 03 Jan 2004 17:51:35 -0000: r> File.Open("ONameFile", fmOpenRead) r> O1$ =...
Andrew Shelkovenko
diakin2002
Offline Send Email
Jan 4, 2004
9:26 am
20995
Thanks for your help Chris...Interesting Quote Robin ... On Saturday, January 3, 2004 at 7:24:22 PM, reactchemicals wrote in the message "[rapidq] Screen...
robin law
reactchemicals
Offline Send Email
Jan 4, 2004
1:07 pm
20996
Thank you for your reply Andrew. I would much rather use the SaveArray and LoadArray methods but I can only get them to work with integers. Does not work...
robin law
reactchemicals
Offline Send Email
Jan 4, 2004
1:31 pm
Messages 20967 - 20996 of 35536   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