[nsbasic-ce] Re: Array assignment question

2008-10-08 Thread Chris Kenworthy
--- In [EMAIL PROTECTED], "tomnew2003" <[EMAIL PROTECTED]> wrote:
>
> Edgard,
> 
> In reviewing your problem again I noticed that you are using the 
> SPLIT command in your sample function to parse the WinSock data. 
> That implies you are dealing with a string and not bytes, integers, 
> longs, etc.
> Your line,
>  ArrayA = SPLIT(dataFromWinsock,'|')
> makes ArrayA a string variable and not an array (but you could 
> create an array of strings).

I have to say that you lost me at this point. dataFromWinsock is a 
string variable, but ArrayA is indeed an array. That's clearly stated 
in the Split function documentation. Now, you could save a copy of 
dataFromWinsock and split it into another array, instead of saving a 
copy of ArrayA, but that's not what you were saying.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread Chris Kenworthy
I thought I saw something about this a while ago, either on the group 
or the NSBasic site, but now I can't find it, and I'm wondering if I 
was imagining it... something along the lines of 'you need to create a 
project on your desktop that uses IP*Works, and access such-and-such 
property to find your licence key, and then you can write that licence 
key into your NSBasic CE projects manually, assigning it to the same 
property. But now I can't even see a likely-looking property to work 
with.

Does what I'm talking about sound familiar to anyone else?

--- In [EMAIL PROTECTED], "ghidera2000" <[EMAIL PROTECTED]> 
wrote:
>
> I installed IPWorks on my desktop computer, created a simple program 
in 
> NSBasic CE and uploaded it to my CE machine. Although I included the 
> activeX controls the CE program complains that they don't exist. I 
> tried copying the ocx file to the CE machine and registering it with 
> regsvrce which made the program stop complaining but now its got a 30 
> day trial popup (which I'm assuming its not supposed to do).
> 
> Is there something I need to do in NSBasicCE other than adding the 
> activex controls to the toolbar? When I drag them onto a form the 
> poperties page for the control is basically blank.
> 
> Lost in a fog here. Anyone know how to use this?
>



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread ghidera2000
On a whim I brought up VB6 and added some IP#Works controls. They 
seem to work just fine. That got me thinking that maybe I downloaded 
the wrong package so I went back and made sure I grabbed the 2002 
activeX for pocktetpc. I uninstalled what I had and re-installed the 
new download but there's no change so I'm pretty sure I have the 
right package.

I do have an email with what looks like registry entries in it but 
it just says to use it if I have to re-install at a later date. I'll 
have to have another look at that tonight.

I've never seen anything that talks about using a key like you do 
with Franson serial and Visual Basic doesn't seem to require it to 
add the controls and see the properties (haven't actually run 
anything with VB though).

I think it would be good if George updated the NSBasic site with 
some instructions. For that matter, get some links from the regular 
pages to the IP*Works pages as nsbasic.com. I had to use google to 
find the IP*Works announcement/instructions  at the nsbasic site.


--- In [EMAIL PROTECTED], "Chris Kenworthy" 
<[EMAIL PROTECTED]> wrote:
>
> I thought I saw something about this a while ago, either on the 
group 
> or the NSBasic site, but now I can't find it, and I'm wondering if 
I 
> was imagining it... something along the lines of 'you need to 
create a 
> project on your desktop that uses IP*Works, and access such-and-
such 
> property to find your licence key, and then you can write that 
licence 
> key into your NSBasic CE projects manually, assigning it to the 
same 
> property. But now I can't even see a likely-looking property to 
work 
> with.
> 
> Does what I'm talking about sound familiar to anyone else?
> 
> --- In [EMAIL PROTECTED], "ghidera2000"  
> wrote:
> >
> > I installed IPWorks on my desktop computer, created a simple 
program 
> in 
> > NSBasic CE and uploaded it to my CE machine. Although I included 
the 
> > activeX controls the CE program complains that they don't exist. 
I 
> > tried copying the ocx file to the CE machine and registering it 
with 
> > regsvrce which made the program stop complaining but now its got 
a 30 
> > day trial popup (which I'm assuming its not supposed to do).
> > 
> > Is there something I need to do in NSBasicCE other than adding 
the 
> > activex controls to the toolbar? When I drag them onto a form 
the 
> > poperties page for the control is basically blank.
> > 
> > Lost in a fog here. Anyone know how to use this?
> >
>



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Re: Array assignment question

2008-10-08 Thread tomnew2003
--- In [EMAIL PROTECTED], "Chris Kenworthy"
<[EMAIL PROTECTED]> wrote:
>
> I have to say that you lost me at this point. dataFromWinsock is a 
> string variable, but ArrayA is indeed an array. That's clearly stated 
> in the Split function documentation. Now, you could save a copy of 
> dataFromWinsock and split it into another array, instead of saving a 
> copy of ArrayA, but that's not what you were saying.
>

Yes, you're correct that SPLIT creates an array of "String" variables
by parsing the original string data, so my statement about it not
being an array was wrong. My main point still applies about being able
to copy the content of one string variable to another by an assignment
statement (=). This applies to both string variables and  array of
string variables.

My other point was that arrays of other data types (integers, longs,
single, double, etc.) don't allow you to copy the content by a simple
assignment statement.

Sorry for the confusion (it was late when I wrong my response last
night :)

-Tom



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread Chris Kenworthy
Alright, I actually emailed someone at /n software support about 
this, and got a fairly prompt and helpful reply, which I'll quote in 
part for the benefit of the group:

> To register ActiveX libraries from this toolkit onto the device, 
> you'll need to use the Control Manager application provided with 
> Embedded Visual Basic.
>
> Please open the control manager (under the tools menu), and add the 
> control to the device you are working with.  You also need to add 
> the desktop version of the control under Desktop Controls in the 
> Control Manager. You may be able to use a similar Control Manager 
> in NSBasic, but you will need to consult NSBasic support about what 
> tools are available.
>
> Alternatively, you can use the OK property of the object to license 
> the objects at runtime. On your development machine, make a button 
> or something that will print the value of the 'ok' property. 
> The 'ok' property will be
> like any other property that you would print.
> Now, run your program to find the value of the 'ok' property, it 
> will be a long string of characters.
>
> At runtime on the device, before you use any of the controls, set 
> the 'ok' property of each control you use to that string.  ex:
>
>http1.ok = 'ASDFASDFASDGFAGASDFASDFA'
>
> This should fix your problem.  Hope this helps!


So, it sounds like my notion about using a property was on target, 
and that the 'ok' property isn't listed in the regular documentation. 
(D'oh!)

--- In [EMAIL PROTECTED], "ghidera2000" <[EMAIL PROTECTED]> 
wrote:
>
> On a whim I brought up VB6 and added some IP#Works controls. They 
> seem to work just fine. That got me thinking that maybe I 
downloaded 
> the wrong package so I went back and made sure I grabbed the 2002 
> activeX for pocktetpc. I uninstalled what I had and re-installed 
the 
> new download but there's no change so I'm pretty sure I have the 
> right package.
> 
> I do have an email with what looks like registry entries in it but 
> it just says to use it if I have to re-install at a later date. 
I'll 
> have to have another look at that tonight.
> 
> I've never seen anything that talks about using a key like you do 
> with Franson serial and Visual Basic doesn't seem to require it to 
> add the controls and see the properties (haven't actually run 
> anything with VB though).
> 
> I think it would be good if George updated the NSBasic site with 
> some instructions. For that matter, get some links from the regular 
> pages to the IP*Works pages as nsbasic.com. I had to use google to 
> find the IP*Works announcement/instructions  at the nsbasic site.
> 
> 
> --- In [EMAIL PROTECTED], "Chris Kenworthy" 
>  wrote:
> >
> > I thought I saw something about this a while ago, either on the 
> group 
> > or the NSBasic site, but now I can't find it, and I'm wondering 
if 
> I 
> > was imagining it... something along the lines of 'you need to 
> create a 
> > project on your desktop that uses IP*Works, and access such-and-
> such 
> > property to find your licence key, and then you can write that 
> licence 
> > key into your NSBasic CE projects manually, assigning it to the 
> same 
> > property. But now I can't even see a likely-looking property to 
> work 
> > with.
> > 
> > Does what I'm talking about sound familiar to anyone else?
> > 
> > --- In [EMAIL PROTECTED], "ghidera2000"  
> > wrote:
> > >
> > > I installed IPWorks on my desktop computer, created a simple 
> program 
> > in 
> > > NSBasic CE and uploaded it to my CE machine. Although I 
included 
> the 
> > > activeX controls the CE program complains that they don't 
exist. 
> I 
> > > tried copying the ocx file to the CE machine and registering it 
> with 
> > > regsvrce which made the program stop complaining but now its 
got 
> a 30 
> > > day trial popup (which I'm assuming its not supposed to do).
> > > 
> > > Is there something I need to do in NSBasicCE other than adding 
> the 
> > > activex controls to the toolbar? When I drag them onto a form 
> the 
> > > poperties page for the control is basically blank.
> > > 
> > > Lost in a fog here. Anyone know how to use this?
> > >
> >
>



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] New file uploaded to nsbasic-ce

2008-10-08 Thread nsbasic-ce

Hello,

This email message is a notification to let you know that
a file has been uploaded to the Files area of the nsbasic-ce 
group.

  File: /Registering IPWorks on Device.txt 
  Uploaded by : chris_kenworthy <[EMAIL PROTECTED]> 
  Description : Email response from /n software support 

You can access this file at the URL:
http://groups.yahoo.com/group/nsbasic-ce/files/Registering%20IPWorks%20on%20Device.txt
 

To learn more about file sharing for your group, please visit:
http://help.yahoo.com/l/us/yahoo/groups/original/members/web/index.htmlfiles

Regards,

chris_kenworthy <[EMAIL PROTECTED]>
 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



Re: [nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread George Henne
I'll add this to the ipWorks page we have. 

Let me know if you find anything else which should be there!

>Alright, I actually emailed someone at /n software support about 
>this, and got a fairly prompt and helpful reply, which I'll quote in 
>part for the benefit of the group:
>
>> To register ActiveX libraries from this toolkit onto the device, 
>> you'll need to use the Control Manager application provided with 
>> Embedded Visual Basic.
>>
>> Please open the control manager (under the tools menu), and add the 
>> control to the device you are working with.  You also need to add 
>> the desktop version of the control under Desktop Controls in the 
>> Control Manager. You may be able to use a similar Control Manager 
>> in NSBasic, but you will need to consult NSBasic support about what 
>> tools are available.
>>
>> Alternatively, you can use the OK property of the object to license 
>> the objects at runtime. On your development machine, make a button 
>> or something that will print the value of the 'ok' property. 
>> The 'ok' property will be
>> like any other property that you would print.
>> Now, run your program to find the value of the 'ok' property, it 
>> will be a long string of characters.
>>
>> At runtime on the device, before you use any of the controls, set 
>> the 'ok' property of each control you use to that string.  ex:
>>
>>http1.ok = 'ASDFASDFASDGFAGASDFASDFA'
>>
>> This should fix your problem.  Hope this helps!
>
>
>So, it sounds like my notion about using a property was on target, 
>and that the 'ok' property isn't listed in the regular documentation. 
>(D'oh!)
>
>--- In [EMAIL PROTECTED], "ghidera2000" <[EMAIL PROTECTED]> 
>wrote:
>>
>> On a whim I brought up VB6 and added some IP#Works controls. They 
>> seem to work just fine. That got me thinking that maybe I 
>downloaded 
>> the wrong package so I went back and made sure I grabbed the 2002 
>> activeX for pocktetpc. I uninstalled what I had and re-installed 
>the 
>> new download but there's no change so I'm pretty sure I have the 
>> right package.
>> 
>> I do have an email with what looks like registry entries in it but 
>> it just says to use it if I have to re-install at a later date. 
>I'll 
>> have to have another look at that tonight.
>> 
>> I've never seen anything that talks about using a key like you do 
>> with Franson serial and Visual Basic doesn't seem to require it to 
>> add the controls and see the properties (haven't actually run 
>> anything with VB though).
>> 
>> I think it would be good if George updated the NSBasic site with 
>> some instructions. For that matter, get some links from the regular 
>> pages to the IP*Works pages as nsbasic.com. I had to use google to 
>> find the IP*Works announcement/instructions  at the nsbasic site.
>> 
>> 
>> --- In [EMAIL PROTECTED], "Chris Kenworthy" 
>>  wrote:
>> >
>> > I thought I saw something about this a while ago, either on the 
>> group 
>> > or the NSBasic site, but now I can't find it, and I'm wondering 
>if 
>> I 
>> > was imagining it... something along the lines of 'you need to 
>> create a 
>> > project on your desktop that uses IP*Works, and access such-and-
>> such 
>> > property to find your licence key, and then you can write that 
>> licence 
>> > key into your NSBasic CE projects manually, assigning it to the 
>> same 
>> > property. But now I can't even see a likely-looking property to 
>> work 
>> > with.
>> > 
>> > Does what I'm talking about sound familiar to anyone else?
>> > 
>> > --- In [EMAIL PROTECTED], "ghidera2000"  
>> > wrote:
>> > >
>> > > I installed IPWorks on my desktop computer, created a simple 
>> program 
>> > in 
>> > > NSBasic CE and uploaded it to my CE machine. Although I 
>included 
>> the 
>> > > activeX controls the CE program complains that they don't 
>exist. 
>> I 
>> > > tried copying the ocx file to the CE machine and registering it 
>> with 
>> > > regsvrce which made the program stop complaining but now its 
>got 
>> a 30 
>> > > day trial popup (which I'm assuming its not supposed to do).
>> > > 
>> > > Is there something I need to do in NSBasicCE other than adding 
>> the 
>> > > activex controls to the toolbar? When I drag them onto a form 
>> the 
>> > > poperties page for the control is basically blank.
>> > > 
>> > > Lost in a fog here. Anyone know how to use this?
>> > >
>> >
>>
>
>
>
>
>
>Yahoo! Groups Links
>
>
>


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



RE: [nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread Bob Katayama
Thanks for sharing.

Would it be too much to ask you to post same the details as a text file in
the download section of the Yahoo groups?

 

Bob

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Chris Kenworthy
Sent: Wednesday, October 08, 2008 1:00 PM
To: [EMAIL PROTECTED]
Subject: [nsbasic-ce] Re: Installing IPWorks on desktop/CE?

 

Alright, I actually emailed someone at /n software support about 
this, and got a fairly prompt and helpful reply, which I'll quote in 
part for the benefit of the group:

> To register ActiveX libraries from this toolkit onto the device, 
> you'll need to use the Control Manager application provided with 
> Embedded Visual Basic.
>
> Please open the control manager (under the tools menu), and add the 
> control to the device you are working with. You also need to add 
> the desktop version of the control under Desktop Controls in the 
> Control Manager. You may be able to use a similar Control Manager 
> in NSBasic, but you will need to consult NSBasic support about what 
> tools are available.
>
> Alternatively, you can use the OK property of the object to license 
> the objects at runtime. On your development machine, make a button 
> or something that will print the value of the 'ok' property. 
> The 'ok' property will be
> like any other property that you would print.
> Now, run your program to find the value of the 'ok' property, it 
> will be a long string of characters.
>
> At runtime on the device, before you use any of the controls, set 
> the 'ok' property of each control you use to that string. ex:
>
>http1.ok = 'ASDFASDFASDGFAGASDFASDFA'
>
> This should fix your problem. Hope this helps!

So, it sounds like my notion about using a property was on target, 
and that the 'ok' property isn't listed in the regular documentation. 
(D'oh!)

--- In [EMAIL PROTECTED]  ,
"ghidera2000" <[EMAIL PROTECTED]> 
wrote:
>
> On a whim I brought up VB6 and added some IP#Works controls. They 
> seem to work just fine. That got me thinking that maybe I 
downloaded 
> the wrong package so I went back and made sure I grabbed the 2002 
> activeX for pocktetpc. I uninstalled what I had and re-installed 
the 
> new download but there's no change so I'm pretty sure I have the 
> right package.
> 
> I do have an email with what looks like registry entries in it but 
> it just says to use it if I have to re-install at a later date. 
I'll 
> have to have another look at that tonight.
> 
> I've never seen anything that talks about using a key like you do 
> with Franson serial and Visual Basic doesn't seem to require it to 
> add the controls and see the properties (haven't actually run 
> anything with VB though).
> 
> I think it would be good if George updated the NSBasic site with 
> some instructions. For that matter, get some links from the regular 
> pages to the IP*Works pages as nsbasic.com. I had to use google to 
> find the IP*Works announcement/instructions at the nsbasic site.
> 
> 
> --- In [EMAIL PROTECTED]  ,
"Chris Kenworthy" 
>  wrote:
> >
> > I thought I saw something about this a while ago, either on the 
> group 
> > or the NSBasic site, but now I can't find it, and I'm wondering 
if 
> I 
> > was imagining it... something along the lines of 'you need to 
> create a 
> > project on your desktop that uses IP*Works, and access such-and-
> such 
> > property to find your licence key, and then you can write that 
> licence 
> > key into your NSBasic CE projects manually, assigning it to the 
> same 
> > property. But now I can't even see a likely-looking property to 
> work 
> > with.
> > 
> > Does what I'm talking about sound familiar to anyone else?
> > 
> > --- In [EMAIL PROTECTED] 
, "ghidera2000"  
> > wrote:
> > >
> > > I installed IPWorks on my desktop computer, created a simple 
> program 
> > in 
> > > NSBasic CE and uploaded it to my CE machine. Although I 
included 
> the 
> > > activeX controls the CE program complains that they don't 
exist. 
> I 
> > > tried copying the ocx file to the CE machine and registering it 
> with 
> > > regsvrce which made the program stop complaining but now its 
got 
> a 30 
> > > day trial popup (which I'm assuming its not supposed to do).
> > > 
> > > Is there something I need to do in NSBasicCE other than adding 
> the 
> > > activex controls to the toolbar? When I drag them onto a form 
> the 
> > > poperties page for the control is basically blank.
> > > 
> > > Lost in a fog here. Anyone know how to use this?
> > >
> >
>

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~---

[nsbasic-ce] Re: Installing IPWorks on desktop/CE?

2008-10-08 Thread ghidera2000
Awesome Chris but no joy.

I added IPPort to NSBasic desktop which exhibits the same no-
properties problem as NSBasic CE but it did show an "ok" number when 
I added a textbox and set its text to IPPort1.ok

I then wrote this tiny app:

AddObject "IPWorks.IPPort","ipport1"
ipport1.ok = "31504"
Sub form1_load
textbox1.Text = ipport1.ok
End Sub

The same app on the desktop NSBasic shows the OK number but on the CE 
machine it complains the object doesn't exist.

I then manually copied the ipport50.ocx from the Arm directory to the 
CE device and used regsvrce to register it. Now it does find the ocx 
and promptly tells me its an unregistered evaluation version and 
the "OK" number is blank. This could be because the OK number is from 
the control VB6 uses instead of the Arm version.

What I expected to happen was that once IP*Works was installed on the 
desktop machine that all I would have to do is add the control to my 
form and NSBasic would take care of installing it on the CE machine 
(not saying its supposed to do this, just that this is what I thought 
it would do).

One thing I did notice. After adding the control to the NSB Controls 
bar it shows up as a default icon instead of the NSoft version (they 
show up in VB fine) and the path in the activex manager points to 
the "lib" directory version of the control instead of either X86 or 
ARM even though I specifically browsed to the Arm directory and 
selected the ocx there.

I also tried browsing to the X86 and Lib versions of the ocx but the 
resulting path (and results on the CE device) never changed.


--- In [EMAIL PROTECTED], "Chris Kenworthy" 
<[EMAIL PROTECTED]> wrote:
>
> Alright, I actually emailed someone at /n software support about 
> this, and got a fairly prompt and helpful reply, which I'll quote 
in 
> part for the benefit of the group:



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb-ce@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---