Search the web
Sign In
New User? Sign Up
xbasic
? 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.

Messages

  Messages Help
Advanced
Messages 17664 - 17693 of 17854   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17664
the Long "BASIC"+CHR(0) is a very large number. You could try with 'BA' + 'SI' + 'C\x0' 'BA' is difficult to factorize, but you could take AA (10101010 bin, it...
José Gabriel Moya...
jose_m0ya
Offline Send Email
Jan 1, 2008
11:30 pm
17665
When we need to execute an external program, documentation says we can use function SHELL. I tried to open an Internet Explorer window since XB, using...
Juan Carlos
jc_vicente
Offline Send Email
Jan 2, 2008
9:39 am
17666
It doesn't work because you should write C:\\Archivos de programa\\Internet Explorer\\iexplore.exe Remember that the backslash is a code-translater so if you...
Vincent Voois
vvacme
Offline Send Email
Jan 2, 2008
9:43 am
17667
Tha's right. Usually I change "\" for "/" in every paths in my programs. As this was a test, I didn't do it. Thanks. ... backslash as character, a double...
Juan Carlos
jc_vicente
Offline Send Email
Jan 2, 2008
11:40 am
17668
... The "original" above is quoted improperly. Proper quoting would be: s$="C:\Archivos de programa\Internet Explorer\iexplore.exe": SHELL(s$) Of course, you...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 2, 2008
2:15 pm
17669
Here is a cute little puzzle: There are 3 buckets of water (or piles of matches, if you like) and you are required to empty one of them. You may only pour...
Vic Drastik
vicdrastik
Offline Send Email
Jan 3, 2008
12:55 am
17670
... Somewhat vague description. You want something that'll input 3 numbers and find a solution, or find a minimal solution, or input n and find the three ...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 3, 2008
6:07 am
17671
Yes, all of the mentioned items! This is more of a challenge than a puzzle - I have not fully solved it myself. [1] Given 3 buckets, find a solution [2] Given...
Vic Drastik
vicdrastik
Offline Send Email
Jan 3, 2008
6:37 am
17672
Let me see now ...barring the two trivial cases, there are exactly 3 moves that can be made at any step. The trivial cases? If one bucket is empty of course,...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 3, 2008
2:05 pm
17673
... Followup ... Given that c = n - (a+b) and the symmetry, you could represent the current state as one half of an n/3 by n/2 table. (If a <= b <= c then a <=...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 4, 2008
2:00 pm
17674
I'm having a problem with checkbox code. If I select the item directly, the code works, however, when wanting to call the code from a commandbutton (ie, with...
David
the_watchmann
Offline Send Email
Jan 6, 2008
9:26 pm
17675
Hi David. I uploaded an example in to "Files > members > AA_chucky7711" in the files section. It might help you. Good luck!...
chucky77112
Offline Send Email
Jan 6, 2008
11:45 pm
17676
Hi Chucky Thanks for the example. However, what I need is just a "selection" box wherein I select an item with the checkbox but execute it with a command ...
David
the_watchmann
Offline Send Email
Jan 8, 2008
8:31 pm
17677
... command ... button. ... You just want to read the states when a button is clicked then? Easy enough. I uploaded "choices.x" in the same place as before....
chucky77112
Offline Send Email
Jan 9, 2008
3:18 am
17678
... If you call the code from anywhere else in your routine, don't forget that the grid variable should have the windowgrid number. Usually in that case this...
Vincent Voois
vvacme
Offline Send Email
Jan 9, 2008
6:56 am
17679
Hi Folks, I've finally succeeded in nmaking and linking two GUI's. They communicate, but not as expected, so I'm doing something wrong. I have a GUI program...
gungadout
Offline Send Email
Jan 9, 2008
9:50 am
17680
I made a misstatement in comments in the code snippets I included. `INTERNAL FUNCTION EntryBooTest () `I tried this as suggested by Julien DECLARE FUNCTION...
gungadout
Offline Send Email
Jan 9, 2008
9:41 pm
17681
The entry function in your DLL is being quit when the IF LIBRARY(0) THEN RETURN is being executed. Anything following after that line will not be executed. ...
Vincent Voois
vvacme
Offline Send Email
Jan 10, 2008
8:51 am
17682
Hi! I'm wondering if it is possible to call a "MS-DOS" window (Windows console) from within the XB console, type DOS commands from within the XB console and...
Julien Rouiller
julienrouiller
Offline Send Email
Jan 11, 2008
12:07 am
17683
I too am trying to Download my own home page as a test using "httptest.x" http://www.irate.org.uk/index I get an Error string of HTPP/1.0 501 Not Implemented I...
chrstoff
Offline Send Email
Jan 11, 2008
4:34 am
17684
... (0) THEN RETURN is being executed. ... follows it above or quote the line out. ... included. ... BooTest. ... appear. ... #type$ ... suggested...
gungadout
Offline Send Email
Jan 11, 2008
6:59 am
17685
(If a blank post preceded this, please ignore it) Thanks for your help, Vincent. I didn't realize I had to comment out _all_ the IF LIBRARY(0) entries. I have...
gungadout
Offline Send Email
Jan 11, 2008
7:02 am
17686
This means that the server that hosts the page does not support the HTTP 1.0 protocol. The httptest.x should be adapted to submit http 1.1 or higher submission...
Vincent Voois
vvacme
Offline Send Email
Jan 11, 2008
7:33 am
17687
... I could find a way to output the result of a DOS command to a file: dir > C:\outputResultOfDirCommandToThisFile.txt prints the results of DIR to a text...
Julien Rouiller
julienrouiller
Offline Send Email
Jan 11, 2008
8:44 am
17688
... prn is the printer device, if you don't have a printer installed or it is not active it will wait until your printer query is empty. Shelling to the...
Vincent Voois
vvacme
Offline Send Email
Jan 11, 2008
1:30 pm
17689
I made a mistake in "Search your whole function" which had to be "whole source". Sorry for that. To resolve your problem i'm gonna play a little game here... ...
Vincent Voois
vvacme
Offline Send Email
Jan 11, 2008
1:36 pm
17690
... <julienrouiller@> ... (Windows ... within ... console. ... but ... console. ... it is not active it will wait until your printer query is empty. ... of...
Julien Rouiller
julienrouiller
Offline Send Email
Jan 11, 2008
2:42 pm
17691
On Fri, 11 Jan 2008 09:42:45 -0500, Julien Rouiller ... Wrong question, on Windows. Or any other multiprocessing environment. The question is, whose output? ...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 11, 2008
3:25 pm
17692
... wrote: (skiped) ... (skiped) ... With windows XP, XstGetEnvironmentVariable("COMSPEC",@command$) returns C:\Windows\system32\cmd.exe ... I forgot to...
Julien Rouiller
julienrouiller
Offline Send Email
Jan 11, 2008
5:15 pm
17693
Using Xbasic to Read Files off the Internet Thanks for the suggestion Vince but Well I have miserably failed to manage this It may be my computer – I access...
chrstoff
Offline Send Email
Jan 12, 2008
1:49 am
Messages 17664 - 17693 of 17854   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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