Search found 35 matches
- Oct 24, 2014 9:22
- Forum: Beginners
- Topic: search engine
- Replies: 5
- Views: 1287
search engine
I'm having trouble with serial port, I get 3 File I/O error, so I search "File I/O error", with and without double quotes, in the Hardware Interfaces / Communication section of the forum, and I get the message "The following words in your search query were ignored because they are too...
- Sep 28, 2014 22:30
- Forum: Beginners
- Topic: Array Question
- Replies: 13
- Views: 2060
Re: Array Question
See in forum beginners: Recommended settings for FBIde users Thanks. I spent a good hour searching for this information before posting my follow up question. Normally all I need is to pointed in the right direction and then I can find my way. A lot of this is mysterious to me, but I do understand t...
- Sep 28, 2014 11:36
- Forum: Beginners
- Topic: Array Question
- Replies: 13
- Views: 2060
Re: Array Question
fxm wrote:/wiki/CatPgCompOpt
How do I invoke them from FBIde?
- Sep 28, 2014 10:45
- Forum: Beginners
- Topic: Array Question
- Replies: 13
- Views: 2060
Re: Array Question
fxm wrote:Remark: only the compile option -exx allows to check the array bounds at runtime.
Where is a discussion of compiler options: what they do and how to invoke them? I'm using FBIde.
- Sep 23, 2014 4:21
- Forum: Beginners
- Topic: Array Question
- Replies: 13
- Views: 2060
Re: Array Question
I thought I understood arrays, but why does this program spit out sixteen "correct" results even though only five memory locations are allocated? #lang "fb" Dim mem(1 to 5) As Integer Dim i As Integer i=lbound(mem) print "low bound is ";i i=ubound(mem) print "high ...
- Sep 23, 2014 3:42
- Forum: Beginners
- Topic: RS232 ExpressCard
- Replies: 1
- Views: 701
RS232 ExpressCard
I have Toshiba Satellite with Windows 7. Ebay lists many Best Connectivity RS232 ExpressCard adapters, but they're limited to Vista. How do I add a serial port to my laptop? I did buy an Expresscard to USB adapter and got it working only after much searching for a driver. None of the drivers provide...
- Sep 11, 2014 9:56
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
Re: error 91: No matching overloaded function, BSAVE()
I have 0.90.1 and the program compiled with no problem
- Sep 11, 2014 7:15
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
Re: error 91: No matching overloaded function, BSAVE()
I don't understand what you're showing me in the first program. I compiled and ran it (with the addition of two "print d,s") and it threw no errors and ran fine.
Is there no issue with functions that return integers regarding overflow of the FPU (floating point?) stack? Or any other stack?
Is there no issue with functions that return integers regarding overflow of the FPU (floating point?) stack? Or any other stack?
- Sep 11, 2014 7:08
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
Re: error 91: No matching overloaded function, BSAVE()
I don't understand what you're showing me in the first program. I compiled and ran it (with the addition of two "print d,s") and it threw no errors and ran fine.
Is there no issue with functions that return integers regarding overflow of the FPU (floating point?) stack? Or any other stack?
Is there no issue with functions that return integers regarding overflow of the FPU (floating point?) stack? Or any other stack?
- Sep 09, 2014 22:46
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
Re: error 91: No matching overloaded function, BSAVE()
Syntax of BSAVE: declare function Bsave ( byref filename as const string, byval source as any ptr, byval size as integer = 0, byval pal as any ptr = 0, byval bitsperpixel as integer = 0 ) as integer You must always pass an argument for the parameter 'source' (it is not optional): It appears...
- Sep 09, 2014 14:41
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
Re: error 91: No matching overloaded function, BSAVE()
Syntax of BSAVE: declare function Bsave ( byref filename as const string, byval source as any ptr, byval size as integer = 0, byval pal as any ptr = 0, byval bitsperpixel as integer = 0 ) as integer You must always pass an argument for the parameter 'source' (it is not optional): Thanks, I ...
- Sep 09, 2014 3:07
- Forum: Beginners
- Topic: error 91: No matching overloaded function, BSAVE()
- Replies: 14
- Views: 1072
error 91: No matching overloaded function, BSAVE()
My program begins #lang "fb" rem the next 2 lines permit switching to full screen #include "fbgfx.bi" Using FB ' Screen mode flags are in the FB namespace in lang FB I create three graphics pages screen 20,,3,GFX_FULLSCREEN and successfully write to them Screenset 0,0 line (x1,y1...
Re: comments
Wadaya mean by "What is the utility of such comments, in content light of the current ones?"
- Sep 03, 2014 11:07
- Forum: General
- Topic: Freebasic and windows screen capture problem.
- Replies: 2
- Views: 592
Re: Freebasic and windows screen capture problem.
I get only single-digit colors to display with full screen screen capture. The only way I can get the entire image to show is in full screen. The bottom of the image is chopped off when screen is not maximized. I scale the image to nearly fill up the screen and place the origin bottom left corner. W...