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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6831 - 6861 of 19574   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6831
Mike Try CreateObject("adoce.recordset.3.0") - forget the connection for now. Try this test code Dim rsTest Set rsTest = CreateObject("adoce.recordset.3.0") ...
Ray Erasmus
ray_erasmus
Offline Send Email
Sep 1, 2004
9:33 am
6832
George, Version 5 is shipped with the program ceFileCopy.exe I can use this program to copy files to the device. Is it also possible to copy files from the...
tveringa
Offline Send Email
Sep 1, 2004
9:54 am
6833
One of my first projects consists of many small .nsb 'modules' (programs). Using the chain statement, the one program loads the next and back again etc, etc. I...
Ray Erasmus
ray_erasmus
Offline Send Email
Sep 1, 2004
11:47 am
6834
We created this utility to make it quicker to send programs from the IDE to the device. We don't have any need to do the reverse, so I don't expect we will be...
George Henne
ghenne
Offline Send Email
Sep 1, 2004
1:11 pm
6835
What range of values have you tried?...
George Henne
ghenne
Offline Send Email
Sep 1, 2004
1:11 pm
6836
Hi George: I do not have the information available with me but I used the max. value listed and then divided this by 10. Created a pull down menu and added the...
Bob Katayama
banffbears
Offline Send Email
Sep 1, 2004
1:43 pm
6837
How about this? ... If LoadedFromSource = False Then MsgBox "This program can only be run by Startup!", vbCritical + vbOKOnly, "Load Error" Bye ' could also...
Bob Katayama
banffbears
Offline Send Email
Sep 1, 2004
1:54 pm
6838
using CreateObject("adoce.recordset.3.0") it still fails on the Open command: Const gDB = "\My Documents\MyDB.cdb" gRS.Open "CREATE TABLE MyTable (ColName...
Mike Fullerton
cmatrix0
Offline Send Email
Sep 1, 2004
2:47 pm
6839
What are the 2, 1 parameters in the open statement? I don't think you should need those for a create table command. -- Eric Pankoke Founder / Lead Developer ...
epankoke@...
Styskul
Offline Send Email
Sep 1, 2004
2:50 pm
6840
... you should need those for a create table command. That would be: Const adOpenDynamic = 2 Const adLockReadOnly = 1 I think I now have a better handle on...
Mike Fullerton
cmatrix0
Offline Send Email
Sep 1, 2004
6:01 pm
6841
With the Time picker control how can you set the time? I tried: tmeIn.Text = Time to no effect....
Mike Fullerton
cmatrix0
Offline Send Email
Sep 2, 2004
2:24 am
6842
Hey Bob, Thanks for your input. True. Definately better and shorter and works well! Great stuff! I'm alway looking to get the same job done with less code -...
Ray Erasmus
ray_erasmus
Offline Send Email
Sep 2, 2004
4:51 am
6843
With NSBASIC 5.02 (and W98), I can no more save the project with txt extension. The generated file has a null size. It was working fine with the previous...
dpannfti
Offline Send Email
Sep 2, 2004
7:53 am
6844
Does this happen with all programs or just a particular one? Are you using W98 or W98 SE?...
George Henne
ghenne
Offline Send Email
Sep 2, 2004
9:01 am
6845
Good question. Set the date property: tmeIn.Date="09/02/04 05:22:00 AM" We'll fix the docs....
George Henne
ghenne
Offline Send Email
Sep 2, 2004
9:23 am
6846
Docs on this are missing in the Handbook, so here goes: WaveVolume is a global variable that can be set or displayed. WaveVolume=65535 'Maximum msgbox...
George Henne
ghenne
Offline Send Email
Sep 2, 2004
10:01 am
6847
Thanks for your answer. I am using W98SE (French edition) It happens with all the programs I tried (around 5 differents including very simple one with only few...
dpannfti
Offline Send Email
Sep 2, 2004
5:58 pm
6849
How to you create primary indexes using ADOCE? I tried both: "CREATE table Clients (ClientID Text, PRIMARYKEY (ClientID), Description Text)" and "CREATE table...
Mike Fullerton
cmatrix0
Offline Send Email
Sep 2, 2004
7:21 pm
6850
General syntax: create index [indexname] on [table] ([fieldname {desc}]) Note that the parentheses are not there as a place holder or anything; they are...
epankoke@...
Styskul
Offline Send Email
Sep 2, 2004
7:29 pm
6851
First of all, my bad. I completely ignored the "primary" part of this whole thread. Second, try this: CREATE INDEX PRIMARYKEY ON Clients (ClientID). I think...
epankoke@...
Styskul
Offline Send Email
Sep 2, 2004
8:01 pm
6852
How do you create auto increment fields in ADOCE? I tried: CREATE table MyTable (ID Int Identity (1,1), Description Text) and CREATE table MyTable (ID Int...
Mike Fullerton
cmatrix0
Offline Send Email
Sep 2, 2004
8:15 pm
6853
Is this on a sqlce database or a PocketAccess database? I was under the impression that autoincrement fields were not an option for PocketAccess. -- Eric...
epankoke@...
Styskul
Offline Send Email
Sep 2, 2004
8:28 pm
6854
This looks good, except the text type, try varchar(x) ... From: Mike Fullerton [mailto:fullerm@...] Sent: Thursday, September 02, 2004 4:15 PM To:...
Charl Van Schoick
cdvsmx5
Offline Send Email
Sep 2, 2004
10:48 pm
6855
Hello! You can also try this: tmeIn.Date = Time or tmeIn.Date = NOW Both worked for me. Juan Reyes...
benchman86
Offline Send Email
Sep 3, 2004
12:11 am
6856
Hello everybody! When using varchar do I need to always define a size? What about if I don't know the size? I ask because I'm getting an error when I do the ...
benchman86
Offline Send Email
Sep 3, 2004
1:09 am
6857
Yes you need to specify the maximum. Make it as large as it might need to be. There is an upper limit, perhaps someone else remembers what it is. ... From:...
Charl Van Schoick
cdvsmx5
Offline Send Email
Sep 3, 2004
1:24 am
6858
Thanks Charl. I will then add a maximum size. Juan Reyes ... need to ... it is. ... I ... the...
benchman86
Offline Send Email
Sep 3, 2004
1:31 am
6859
I have not tested it on PocketPC databases, but in MS Access the COUNTER keyword does the job. I do not recommend using autoinc fields with ADOCE. Rather,...
Ray Erasmus
ray_erasmus
Offline Send Email
Sep 3, 2004
2:59 am
6860
We are developed one PPC application using NsBasic CE.In this application successfully installed in all PPC.But Dell Axiom Type of PPC cannot installed in this...
ambaisaran
Offline Send Email
Sep 3, 2004
12:04 pm
6861
Hi. Try the following proc: After installing both IDE (desktop and device) register the desktop IDE. On the Desktop IDE Help>Register>Set Device It worked for...
Prof. Joao Hipolito
joaohipolito
Offline Send Email
Sep 3, 2004
1:43 pm
Messages 6831 - 6861 of 19574   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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