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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 1188 - 1218 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1188
Hope you guys can help me out here. From a previous post: " 2. A program that works perfectly on your machine gets a "Cannot create an object of that type -...
michael_newett
Offline Send Email
Mar 1, 2006
3:33 pm
1189
Im trying to create a simple installer that will install and register any additional library files that my program requires at run time, if they are not...
michael_newett
Offline Send Email
Mar 1, 2006
4:38 pm
1190
OK, found how to register dll silently. ShellExecute "open","regsvr32.exe","/S CommonDialogue.dll" Anyone help with dll install path? Mike ... register ... if ...
michael_newett
Offline Send Email
Mar 1, 2006
4:46 pm
1191
Although DLL's to be registered typically reside in a particular place relevant to the operating system, they can reside anywhere. _____ From:...
Fred Tonetti
fctonetti
Offline Send Email
Mar 1, 2006
4:57 pm
1192
Ah, I never knew that. Thanks ... place ... regsvr32 in ... time, ... without ... any ... t=ms&k=Ns+basic&w1=Ns+basic&w2=Programming+lan ... ...
michael_newett
Offline Send Email
Mar 1, 2006
5:01 pm
1193
Michael- Check out Inno Setup. I've got a sample Script uploaded to the files section of this forum. You're reinventing the wheel and you'll save yourself a...
Tim Markoski
tmarkoski1122
Offline Send Email
Mar 2, 2006
4:01 am
1194
Michael- There's no need to purchase VB. Download the CommonDialogue ActiveX DLL from the Files section of this forum. You can see how it's used by downloading...
Tim Markoski
tmarkoski1122
Offline Send Email
Mar 2, 2006
4:06 am
1195
Michael- If it is a dll that can be shared by other apps (Microsoft Common Controls, etc.), you should ALWAYS install it to the Windows System folder. This...
Tim Markoski
tmarkoski1122
Offline Send Email
Mar 2, 2006
4:13 am
1196
Hello Tim, normally installation programs should use the system variables to point to the right directories, not absolute paths. Like: %HOMEPATH%...
Thomas Gruber
computerhusky
Offline Send Email
Mar 2, 2006
10:27 am
1198
That's what I said. That's why I use an actual installer. The Windows System folder is OS dependent. On 9x systems it's the ..\System\ subfolder of the Windows...
Tim Markoski
tmarkoski1122
Offline Send Email
Mar 2, 2006
10:39 am
1199
I'll echo these guys' sentiments about the installer. Those variables are available, but you need to use Windows APIs to get to them, which are not directly...
Styskul
Offline Send Email
Mar 2, 2006
1:19 pm
1200
Hi George, I cant run any of my old EXE's or NSD files that used the S309 PictureBox. I get the error 'Object required' Is this a delibrate change or an...
michael_newett
Offline Send Email
Mar 2, 2006
5:04 pm
1201
I developed a small utility to upgrade my own software on my clients computers. It will find the system folder, copy and register the .dll's in this folder on...
Claude Dionne
edtaiga
Offline Send Email
Mar 2, 2006
7:30 pm
1202
I installed NSB Desktop 2.0.1 and gave a try to SQLite which seems very promising as it can be used on multiple platforms. I installed AXPack1 as stated in...
Claude Dionne
edtaiga
Offline Send Email
Mar 2, 2006
8:29 pm
1203
It turns out there is a bug in this particular installer. I expect it will be fixed very soon by NewObjects. In the meantime, if you installed the combined PC...
George Henne
ghenne
Offline Send Email
Mar 2, 2006
8:54 pm
1204
The NS Basic Picturebox should replace any need for the S309Picturebox. AddObject "NSCEPictureBox.NSCEPictureBoxCtrl.1","AxisPicBox3",150,150, 200,200,Form ...
George Henne
ghenne
Offline Send Email
Mar 2, 2006
9:06 pm
1205
i've installed yesterday sqlite andworks ok. 1.step open axpack1,exe 2.step unzip & install the second dowload told at tech11 restart pc open sqlite sample ...
fernandogibert@...
gibertfernando
Offline Send Email
Mar 2, 2006
9:32 pm
1206
I've added the SQLite stuff into the standard NS Basic/Desktop installer. There is no longer any need to install the SQLite components - just install NS...
George Henne
ghenne
Offline Send Email
Mar 2, 2006
9:34 pm
1207
Thanks George. Meanwhile I found AXPack1PC on newobjects site and installed sqlitecomutf8.dll and everything seems to work now. But I'd rather have everything...
Claude Dionne
edtaiga
Offline Send Email
Mar 2, 2006
9:52 pm
1208
Use the same address where you loaded 2.0.1 from - it was sent to you in an email a couple of days ago....
George Henne
ghenne
Offline Send Email
Mar 2, 2006
9:58 pm
1209
Found the problem George. It was just a bad installation of the 2.0.1 upgrade. Everything working fine now. Regards mike ... S309Picturebox. ... AddObject...
michael_newett
Offline Send Email
Mar 2, 2006
10:24 pm
1210
That's a nice script but it would be VERY DANGEROUS to use for "Shared Files". 1) It doesn't check version numbers to compare against for existing files. 2) It...
Tim Markoski
tmarkoski1122
Offline Send Email
Mar 3, 2006
2:02 am
1211
Tim's right, I'm afraid. Google on "DLL Hell". The current number of hits is 1,230,000, but it goes up steadily. <http://en.wikipedia.org/wiki/DLL-hell> This...
George Henne
ghenne
Offline Send Email
Mar 3, 2006
2:08 am
1212
Still have the same problem George. The new version works on my Laptopn, but not on my Desktop. I get the error message "Cannot create an object of that type...
michael_newett
Offline Send Email
Mar 3, 2006
12:12 pm
1213
Try uninstalling NS Basic. Look in the \System32 folder and delete any instances of NSCEPictureBox, then do a reinstall. Let's see if that fixes it....
George Henne
ghenne
Offline Send Email
Mar 3, 2006
2:23 pm
1214
I realized this was a dangerous script but maybe not that much. In fact, I use this script with my own dll's and ocx's instead of registering them manually but...
Claude Dionne
edtaiga
Offline Send Email
Mar 3, 2006
3:58 pm
1215
Hi George, can you please confirm the files sizes of the latest NSBASIC editions. NSBASIC 2.0 = 4816 KB NSBASIC 2.0.1 = 5197 KB (Latest download) Regards ...
michael_newett
Offline Send Email
Mar 3, 2006
3:58 pm
1216
Yes. 2.0.1 got bigger yesterday when the SQLite stuff got added into the installer....
George Henne
ghenne
Offline Send Email
Mar 3, 2006
4:08 pm
1217
Program manager reports latest NSBasic_Desktop.exe size as 4816 KB, not 5197. Karl...
Karl Roebling
karl_roebling
Offline Send Email
Mar 3, 2006
4:14 pm
1218
You may have the old build. The enhanced 2.0.1 installer went up yesterday afternoon....
George Henne
ghenne
Offline Send Email
Mar 3, 2006
4:18 pm
Messages 1188 - 1218 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