Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

libertybasic · The Official Liberty BASIC Support Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 5577
  • Founded: Jan 12, 2001
  • Language: English
? 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.

Messages

Advanced
Messages Help
Messages 23517 - 23546 of 46457   Oldest  |  < Older  |  Newer >  |  Newest Start Topic
Messages: Simplify | Expand Author Sort by Date ^
23517 pendl2megabit Send Email Dec 2, 2004
2:21 pm
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...
23518 pendl2megabit Send Email Dec 2, 2004
2:30 pm
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 ...
23519 Jeff Williams
skycraftdotnet Send Email
Dec 2, 2004
2:52 pm
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...
23520 Jeff Williams
skycraftdotnet Send Email
Dec 2, 2004
2:52 pm
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...
23521 Yves Petit-Clerc
ve2lui Send Email
Dec 2, 2004
2:53 pm
Bob, here is code I have with the output for my setup: calldll #winmm, "waveOutGetNumDevs", _ NumberOfDevices as ushort print "Total Number of Devices ... ";...
23522 Dennis
dennis_mckinney Send Email
Dec 2, 2004
3:12 pm
... files ... Yes, Liberty BASIC handles these well with ODBC and SQL. Examples: http://syberden.net/libertybelle/odbc.html The examples use *.mdb databases....
23523 Jeff Williams
skycraftdotnet Send Email
Dec 2, 2004
4:24 pm
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...
23524 doggbiskits Send Email Dec 2, 2004
10:02 pm
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...
23525 pendl2megabit Send Email Dec 2, 2004
11:46 pm
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. ...
23526 pendl2megabit Send Email Dec 2, 2004
11:54 pm
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...
23527 pendl2megabit Send Email Dec 2, 2004
11:59 pm
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 ...
23528 pendl2megabit Send Email Dec 3, 2004
12:02 am
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. ... ...
23529 JanetTerra Send Email Dec 3, 2004
5:13 am
... [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...
23530 Brent Thorn
b6sw Send Email
Dec 3, 2004
5:54 am
... Here's a demo I translated from a demo written in VB. 'BEGIN CODE NoMainWin WindowWidth = 400 WindowHeight = 300 UpperLeftX = (DisplayWidth - WindowWidth)...
23531 EagleSoar Software (e...
eaglesoar4449 Send Email
Dec 3, 2004
11:50 am
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...
23532 twbradio Send Email Dec 3, 2004
2:30 pm
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...
23533 JanetTerra Send Email Dec 3, 2004
4:08 pm
... 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...
23534 bbjen@...
biljenni2001 Send Email
Dec 3, 2004
4:34 pm
... Tom, This was asked and answered on 12/1. Newsletter 100 has a demo of text wrapping in a texteditor. All LB, no API. Bill J....
23535 JanetTerra Send Email Dec 3, 2004
4:42 pm
... 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...
23536 twbradio Send Email Dec 3, 2004
4:53 pm
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...
23537 Gordon Rahman
dutch_gordon Send Email
Dec 3, 2004
5:48 pm
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 ...
23538 JanetTerra Send Email Dec 3, 2004
6:49 pm
... 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...
23539 Bob McIlvaine
mac53532000 Send Email
Dec 3, 2004
7:44 pm
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...
23540 JanetTerra Send Email Dec 3, 2004
7:55 pm
... 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...
23541 William E. Lopez
welopez2001 Send Email
Dec 3, 2004
8:07 pm
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,...
23542 Keith Nance
kdbnance Send Email
Dec 3, 2004
9:59 pm
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... Send Email 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...
23544 Stefan Pendl
pendl2megabit Send Email
Dec 3, 2004
10:21 pm
If chr$(13) alone won't work use chr$(13) + chr$(10) = CR LF = carriage return + line feed. ... Stefan Pendl "William E. Lopez" <bill@...> wrote: ...
23545 Keith Nance
kdbnance Send Email
Dec 3, 2004
10:24 pm
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...
23546 Stefan Pendl
pendl2megabit Send Email
Dec 3, 2004
10:24 pm
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...
Messages 23517 - 23546 of 46457   Oldest  |  < Older  |  Newer >  |  Newest Start Topic
Add to My Yahoo!      XML What's This?

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