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...
... 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...
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, _ ...
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...
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 ...
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"...
Nevermind folks... I think I figured it out by myself :-) For those interested: Public Const WM_SHOWWINDOW = &H18 declare sub MainWndProc(Handle AS INTEGER,...
... 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"...
... press ... Have you already tested it? Windows usually receive a WM_SYSCOMMAND notification with wParam = SC_MINIMIZE when they are about to be minimized. ...
... 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...
Try this: '___________________________________________________ SUB Startup CM_SetFontOwnership(winhandle, True) Dim fntx as qfont ' Now: the following line may...
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...
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...
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;...
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 ...
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...
... 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 ...
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 " ...
... 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 " ...
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...
Please accept my membership thanks _____________________________________________________________ Are you a Techie? Get Your Free Tech Email Address Now! Visit...
Theres an API call you could use. Declare Function ChangeDisplaySettings Lib "user32" Alias "ChangeDisplaySettingsA" (lpDevMode As Any, ByVal dwFlags As Long)...
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...
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...
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...
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...
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...