Search the web
Sign In
New User? Sign Up
nsbasic-desktop · Forum for NS Basic/Desktop users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1818 - 1847 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1818
Hi Mike, do you mean somethink like that? ' hide the title bars ' also to windows objects Option Explicit Declare "Function DrawMenuBar Lib ""user32"" (ByVal...
Heiko Stolte
stolte_h
Offline Send Email
Nov 1, 2006
8:41 pm
1819
Hi guys. Spent a bit more time today working on a multi-user SQLite solution. Its a bit more in-depth than I originally thought it would be! Still, its coming...
michael_newett
Offline Send Email
Nov 1, 2006
10:30 pm
1820
#1: You're right. Unlike ADO, when you retrieve a recordset from SQLite the entire database is loaded into memory and manipulated there. The easiest way to...
Styskul
Offline Send Email
Nov 1, 2006
11:05 pm
1821
Hello Michael, ... <<< That's normal when you dig deeper into the multi-user situation :-). Confusion gets worse the more you think about it. Sometimes the...
computerhusky
Offline Send Email
Nov 2, 2006
12:11 am
1822
Hi Styskul, thats an excellent suggestion about using a second recordset. I could have the main recordset which contains all of the database information sorted...
michael_newett
Offline Send Email
Nov 2, 2006
11:22 am
1823
Hi Thomas, thanks for info. I've been trying to get your suggestions working in response to my second question - Is it possible to update a single field in a...
michael_newett
Offline Send Email
Nov 2, 2006
11:42 am
1824
Heiko mentioned the possibility of using TimeStamp Fields. Does that mean that there is a way of getting the time when a record is accessed or modified - not...
michael_newett
Offline Send Email
Nov 2, 2006
11:47 am
1825
It really doesn't hurt to update all the columns in a row, especially since you have such a small amount of columns, but if you only want to save the changed...
Styskul
Offline Send Email
Nov 2, 2006
12:38 pm
1826
I assume the users will be running the application of their desktop, correct? If so, the TimeStamp field will contain the date on the user's machine, not the...
Styskul
Offline Send Email
Nov 2, 2006
12:43 pm
1827
Hi Styskul, thanks for the quick reply. This project is turning out to be painful! But I shall not be defeated! Still having problems unfortunately. Have tried...
michael_newett
Offline Send Email
Nov 2, 2006
1:50 pm
1828
I can't quite tell by your posted code what might be wrong, but I have uploaded a modified version of your original SQLiteTest.nsd to the files section that...
Styskul
Offline Send Email
Nov 2, 2006
2:39 pm
1829
Thanks Styskul. Very interesting! My problem wasnt with the syntax of the UPDATE command, but with the way I was creating my database initially. This is your...
michael_newett
Offline Send Email
Nov 2, 2006
3:30 pm
1830
I think you might still have had some other error in your code. I just tried the sample I just uploaded with your table creation method, and it still worked...
Styskul
Offline Send Email
Nov 2, 2006
4:08 pm
1831
Wierd. Anyway im cooking on gas now. All the record permissions (write, readonly or viewing) seem to be working robustly now. Just adding usernames and record...
michael_newett
Offline Send Email
Nov 2, 2006
4:26 pm
1832
Great! Looking forward to seeing your end results....
Styskul
Offline Send Email
Nov 2, 2006
4:35 pm
1833
I'm after a bit of 'real-world' advice here. Im looking at speed issues with SQL. Rather than update the recordset in memory as follows: Cmd="SELECT * FROM...
michael_newett
Offline Send Email
Nov 2, 2006
5:27 pm
1834
Generally, I wouldn't even load everything in memory at once. I'd do something more like this: Cmd = "SELECT Entry1 FROM NameDB ORDER BY Entry1" Set Lookup =...
Styskul
Offline Send Email
Nov 2, 2006
6:06 pm
1835
You've given me some good ideas there for speeding-up my the database access. Off to do so rewritting (again!). Until now I have been doing everything within...
michael_newett
Offline Send Email
Nov 2, 2006
7:58 pm
1836
Hello Michael, no, as SQLite isn't a client-server database system with a background process running on the server, there's no chance to get this done by a...
computerhusky@...
computerhusky
Offline Send Email
Nov 2, 2006
9:40 pm
1837
Hello, I only read styskul's message after I wrote this; if you find a method to access the date on the server directly, that's of course much better than...
computerhusky
Offline Send Email
Nov 2, 2006
11:13 pm
1838
Hi Michael, just 1 remark about the 1st method to create your table: PRIMARY KEY is unique by definition, so the keyword "UNIQUE" isn't necessary in this...
computerhusky
Offline Send Email
Nov 3, 2006
12:26 am
1839
Hello all - I have three questions about menus: 1. I have a project with multiple forms. The menu appears on all of them. How do I make the menus only appear...
Dan Meeks
dnmeeks
Offline Send Email
Nov 3, 2006
5:11 pm
1840
Hi Dan, look into the language reference - setmenu. An example is in the sample files. And, I'm sorry, you have to organize the things by yourselfe ;) But the...
Heiko Stolte
stolte_h
Offline Send Email
Nov 3, 2006
7:05 pm
1841
Hi, I'm new to using NSBasic and I'm actually using the demo version now. Does anyone know how to use NSBasic to execute Access database macros? An example...
tiffanydaykin
Offline Send Email
Nov 8, 2006
5:25 pm
1842
MS Access Macros use VBA. NSBasic Desktop is based on VBScript. Therefore, MS Access Macros aren't useable directly. The most you could do is simply create a...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 8, 2006
9:34 pm
1843
I don't think she's asking how to write an MS Access macro in NS Basic/ Desktop - I think she just wants to call one that is already there....
George Henne
ghenne
Offline Send Email
Nov 8, 2006
10:04 pm
1844
I don't have Access installed on my computer right now in order to verify this but something like this should work or at least point you in the right direction...
Picard, Steven C.
j11l13
Offline Send Email
Nov 8, 2006
11:17 pm
1845
Hi George, if a textbox is Locked (TextBox.Locked=True) then you cannot TAB on the keyboard past the textbox that is Locked. This bug has been present since...
michael_newett
Offline Send Email
Nov 9, 2006
1:08 pm
1846
Ok, this brings up another question. If I send someone an Access db file (mdb) and an NSBasic exe that uses that mdb file, will the app work if that person...
tiffanydaykin
Offline Send Email
Nov 9, 2006
3:36 pm
1847
It requires the user to have MDAC installed (ex. MDAC 2.6) along with the JET database drivers. These should already be there for Windows 2000 and XP. MDAC...
Picard, Steven C.
j11l13
Offline Send Email
Nov 9, 2006
4:13 pm
Messages 1818 - 1847 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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