The order is wrong, you can fill a member of a struct only after defining the struct: '#### ' define the struct here struct Midicaps, ... ' fill the members if...
There is no such feature in LB. You have two options: 1) enable compilor reporting, which will point out variables of the same names, but with different case ...
Just to clarify, you write a program that uses the existing database? I would try opening the data file with a text editor or Excel to figure out how the data...
I've used Excel files by Saving As... a comma delimited or tab deliminated text file. It's then simple to open using sequential or random file access. Jeff...
Bob, here is code I have with the output for my setup: calldll #winmm, "waveOutGetNumDevs", _ NumberOfDevices as ushort print "Total Number of Devices ... ";...
... files ... Yes, Liberty BASIC handles these well with ODBC and SQL. Examples: http://syberden.net/libertybelle/odbc.html The examples use *.mdb databases....
I've used the following command to put scrollbars in the window of my program.(so that users with a smaller screen resolution can use the program) stylebits...
I have two questions: 1.) In the following code, I want to put a BMP, or, a box, or something in the main window which can be a.) Moved around (like a windows...
Jeff, you will have to trap the messages the scrollbars are sending to the window and scroll the window contents by your own, using several API calls. ...
Read the helpfile under topic "Language Syntax and Usage" -> "File Operations". Go thru the lessons in the tutorial (lb4tutorial.lsn) "Lesson Three" here is a...
The graphics widget uses a form of a fixed size to control the contents of it. This form is part of Smalltalk, scrolling outside of the ranges of this form ...
Popup means -> no border, no border means -> not movable :-( I don't know if there is a possibility to include a moving border for this type of window. ... ...
... [See Original Message for Original Code] I'm still working on Question 1.). As for Question 2.), remove your Notice command. Many of LB graphic commands...
... Here's a demo I translated from a demo written in VB. 'BEGIN CODE NoMainWin WindowWidth = 400 WindowHeight = 300 UpperLeftX = (DisplayWidth - WindowWidth)...
Perhaps Stefan and Ken's help with this game will give you some ideas too! They supplied the code to move the graphic boxes. It does require version 4.0.1 of...
OK, this is probably a really easy one, but is there a way to force a text editor box to wordwrap through the GUI? I was thinking perhaps a stylebit or...
... This is probably one of the most sought after features and frequently asked questions. Look back in the messages just in the past week. Text editors are...
... This demo is based upon Brent's demo as well as other demos posted to Yahoo. Please see remarks within code for credits and acknowledgements. This demo...
Thank you for the reply ... I am looking into newsletter 100 for that solution - the actual program was an attachment to the newsletter so I'll have to dig a...
Wow... Very very nice, Janet. Thank you Brent Thorn, Gordon Sweet, Bill Beasley, and of course Alyce. Gordon. p.s. MSIMAGE.DLL and we don't need GIF? ... to ...
... Do you mean "and we don't need GIF" to make a transparent background? Then, yes, that is correct. I played around a bit with TransparentBlt using...
Thanks to all who responded about my API conversion issue. I knew it would be easy...once another set of eyes looked at it. Now I'm having one of THOSE...
... ideas ... Eldron, Thanks for the link. I'm glad to see the project is still ongoing. Some of the code looks similar to the code I borrowed from Gordon and...
Try concatenating your string into multiple lines, using myString$="text here"+chr$(13)+"more text here"+chr$(13)+"still more text." Then, print #w.tb1,...
Thanks Stefan, I suppose for the time being I'll just have to look at doing something other than using the scroll bars. Keith ... contents of it. ... this form...
23543
libertybasic@yahoogro...
Dec 3, 2004 10:20 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the libertybasic group. File : /K...
William, I just downloaded an old bas file that I had written long ago with ver 3.03. It's slow and needs much improvement, but perhaps someone can improve...
Janet, this is because of the getbmp in SUB KeppBoard, which gets an image of the whole area including the movable graphicsboxes. Using the GETBMP - DRAWBMP...