Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 9974 - 10003 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9974
Have anyone got this to work with parameters, using the run function ? /F...
fredriknorling2003
fredriknorli...
Offline Send Email
Apr 1, 2006
8:08 am
9975
Hello, a while ago I wrote a chat program in Rapid-Q, and now I want to transpose it to HotBasic. The socket programming differs, and I get some error...
borstensohn
Offline Send Email
Apr 1, 2006
9:48 am
9976
Here is one example of how to outfit sockets. Im sure there are other techniques. I forgot where I got this but it works great. TallyHo LBL CREATE SockUDP AS...
low_beer_light
Offline Send Email
Apr 1, 2006
12:11 pm
9977
... Thank you, low_beer_light, my program (the server part) compiles now, but it cannot handle a client. My old Rapid-Q thing did. It's driving me nuts, so...
borstensohn
Offline Send Email
Apr 1, 2006
1:31 pm
9978
The HBassistant link is now working. Thanks for your report. http://www.philipbister.ukonline.co.uk/...
Philip Bister
philip.bister@...
Send Email
Apr 1, 2006
1:34 pm
9979
... My internet connection was down last night -- no 4.8e downloads. So I added INVOKE as a keyword alias for METHOD. Thus, in COinvoke.bas, you can replace...
doctor electron
globalservices1
Offline Send Email
Apr 1, 2006
1:35 pm
9980
... Please note that in both RQ and HB, CONST defaults to DOUBLE. Yet I see no DOUBLE values above. Suggest using DEFINT instead of CONST or use $OPTION DIM...
doctor electron
globalservices1
Offline Send Email
Apr 1, 2006
2:55 pm
9981
... Oh, okay, thank you. ... No, this is the server, and it should listen for connection requests by clients. Yes, the client sends text only. The CRLF is put...
borstensohn
Offline Send Email
Apr 1, 2006
4:08 pm
9982
... .IsServerReady, in RQ and HB, is checking if anything has been received from a network host. As such, .IsServerReady can be used in both server and client...
doctor electron
globalservices1
Offline Send Email
Apr 1, 2006
4:24 pm
9983
... A bit confusing, yes. In RQ there was a function IsClientReady. Anyway, the problem was something quite different. The Timer has a strange behavior. At...
borstensohn
Offline Send Email
Apr 1, 2006
7:05 pm
9984
Hello I have now posted HBide v1.77 which fixes a defect with the save procedures (in the previous version), and the highlight procedures. HBide and other...
Philip Bister
philip.bister@...
Send Email
Apr 2, 2006
2:44 pm
9985
Jim I'm building a calculator and wanted to change some button colors to group the memory functions together. I want the form color to remain as the default. ...
Philip Bister
philip.bister@...
Send Email
Apr 2, 2006
2:44 pm
9986
HotFind 2.2b, just posted for download, is smarter: 1. If there is only one FindIt search listing, the HotFind Result window is automatically displayed. 2. If...
doctor electron
globalservices1
Offline Send Email
Apr 2, 2006
3:10 pm
9987
... I'd like to see that, too! Actually, .Color works for many members of the Windows BUTTON class -- GROUPBOX, CHECKBOX, RADIOBUTTON. For HB's BUTTON member...
doctor electron
globalservices1
Offline Send Email
Apr 2, 2006
3:14 pm
9988
Hi, all I've just posted activex.zip in Files/Code Center/Emmazle It consists of a core file, activex.inc, along with 2 examples. Just include activex.inc in...
emmazle
Offline Send Email
Apr 2, 2006
9:10 pm
9989
... because void is undefined. What code and data in variant to you want for that? ... I'll reverse that -- so you don't have to; the whole idea was to ...
doctor electron
globalservices1
Offline Send Email
Apr 2, 2006
10:54 pm
9990
... Dear emmazle, in activex.inc I see: 'argument count argcount=byref(hbArgs+8)-1 'subtract 1 for the method's name 'set up parameter array ...
doctor electron
globalservices1
Offline Send Email
Apr 2, 2006
11:47 pm
9991
... OK, I just updated hot.exe (Apr 2) to recognize "void" as a parameter coding it as type 10 and value &H80020004. =====COinvoke.bas $APPTYPE CONSOLE:...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
12:32 am
9992
... Amazing! If you need GlobalFree in activex.inc, here's a cheap solution. At wrapper entry: defint nRAM = 0 'dim and set to zero After line: ...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
12:48 am
9993
... It is reversed manually in the user's code! Instead of calling: obj.invoke("method",a,b,c,d) for now one needs to write obj.invoke ("method",d,c,b,a) ...
emmazle
Offline Send Email
Apr 3, 2006
7:06 am
9994
... I agree, this should be added. However, following your solution, one also needs to push nRam, so as to deal with the case of code re-entry (always and...
emmazle
Offline Send Email
Apr 3, 2006
7:11 am
9995
Hello, I have one more question: How can I set the connection to non-blocking mode? I know, there is something in the help files, but it does not work anyhow. ...
borstensohn
Offline Send Email
Apr 3, 2006
12:03 pm
9996
Hello Emmazle Very nice exemples. I have changed type ACTIVEX extends LABEL to extends canvas redraw is much better if your activeX is sizeable This reply is...
MANY PIERRE
pierrotstudio
Offline Send Email
Apr 3, 2006
12:18 pm
9997
defint PSR, pr CREATE peerPR AS SOCKET FAMILY = 2 Type = 2 Protocol = 17 END Create PSR = peerPR.Open(54640) pr=peerPR.NonBlock(PSR) The above example...
low_beer_light
Offline Send Email
Apr 3, 2006
12:40 pm
9998
... ...because .NonBlock() is a function not a method. Here's a snippet from HotSauce.bas: r=peer.NonBlock(s) where r is a long result value, peer is...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
1:49 pm
9999
... Not anymore. Have you seen the BEGIN/END THREAD code block -- use it and you don't put nRAM on the stack. Actually, your wrapper is not written to allow...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
1:49 pm
10000
I read somewere that a button needs to have the style OwnerDraw(&HB) to take color changes. And then you need to draw the button. Couldn't we create a bitmap...
fredriknorling2003
fredriknorli...
Offline Send Email
Apr 3, 2006
3:03 pm
10001
Apr 3 HotBasic 4.8f adds a new category of keywords -- native Custom Object members: Invoke as SUB (alias Method as SUB), GetNum as FUNCTION and GetStr as...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
3:29 pm
10002
... You're kidding! OK, I missed that! So I'll do the reverse thing for an updated hot.exe release in about an hour or so. [actually, I already wrote the...
doctor electron
globalservices1
Offline Send Email
Apr 3, 2006
4:05 pm
10003
... Actually I think re-entry can occur. What I had in mind is that Invoke can trigger an event and the event handler can in turn call Invoke. As for using...
emmazle
Offline Send Email
Apr 3, 2006
5:03 pm
Messages 9974 - 10003 of 17145   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