|
Post by Alyce Watson on Oct 18, 2005 15:34:24 GMT -5
I hope to release version 4.6 later this week.
-Alyce
|
|
|
Post by Alyce Watson on Oct 20, 2005 7:07:41 GMT -5
|
|
|
Post by carpenterg on Oct 20, 2005 8:52:44 GMT -5
Hi, Alyce, I'm trying to use Liberty Basic Workshop to create an intranet form that would submit information to an Access DataBase. Currently I am experimenting with ADODB in a "submit " button handler. Is this possible or am I barking up the wrong tree?
Thanks, Jerry
|
|
|
Post by Alyce Watson on Oct 20, 2005 9:00:54 GMT -5
|
|
|
Post by snowzone on Oct 20, 2005 18:25:56 GMT -5
Now includes the ability to add four API controls to your GUI. i'm in lbw several hours a day. the new api controls are going to save me a ton of time.
|
|
|
Post by JohnDavidson on Oct 22, 2005 16:57:12 GMT -5
Outstanding update Alyce!
I've been playing with the listview control and would like to share some code.
Create a GUI with a listview and scroll down to calldll #user32, "SendMessageA" , hwndListView1 as uLong, 4150 as Long,_ 32 As Long, 32 As Long, re as Long 'make listview fullrowselect style
Right after that line pastecalldll #user32, "SendMessageA" , hwndListView1 as uLong, 4150 as Long,_ 1 As Long, 1 As Long, re as Long 'make ???
Nope, I'm not going to tell you what it does but some people using LBWS created listviews in their apps will find this handy! John
|
|
|
Post by Alyce Watson on Oct 23, 2005 7:04:08 GMT -5
Hmm, maybe LBW should add that by default? It's pretty neato, John!
There are two ways to handle listviews, and at this point, LBW takes the simple approach. It creates a skeleton for you with some dummy columns and rows. It's up to the programmer to add rows and columns and check to see which are selected at runtime. Using API controls requires some knowledge of the API. There's no way around that! I may, in the future, add a listview wizard and a treeview wizard, but even with that kind of help, the programmer would still need to do some of the coding himself.
Thanks, John!
|
|