[nsbasic-ce] PhD in Management Online Switzerland's leading University. Top ranked, prestigious, flexible.

2009-07-08 Thread Kala E
PhD
in Management Online


Switzerland's
leading University. Top ranked, prestigious, flexible.











http://studyonline-magha.blogspot.com



network
security software and easy programming language



http://programminglanguage-magha.blogspot.com











Study
abroad scholarships

A
Website Dedicated to Study abroad scholarships 

Scholarship.SuperbResources.



http://studentloan-magha.blogspot.com









Online Healthy pet animal food

Healthy
Animal Nutrition from specialists in the field






http://petfood-nn.blogspot.com


  
--~--~-~--~~~---~--~~
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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Screen.Fonts

2009-07-08 Thread jingjok67

Hi,

I am converting an eVB program to NSB and am stuck at a function that uses the 
eVB functions 

Screen.FontCount
and
Screen.Fonts(i)

to enumerate the fonts available on the device.
I cannot get rid of this function as it is needed to find out which Unicode 
Font is available for the application on specific Korean and Taiwanese devices.

How do I enumerate the fonts in NSB CE ?




--~--~-~--~~~---~--~~
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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



Re: [nsbasic-ce] Screen.Fonts

2009-07-08 Thread George Henne
There is no equivalent function in NS Basic/CE.

The only workaround I can think of is to scan the \Windows folder
for .ttf files. You can do this using this control:


>
>Hi,
>
>I am converting an eVB program to NSB and am stuck at a function that
>uses the eVB functions 
>
>Screen.FontCount
>and
>Screen.Fonts(i)
>
>to enumerate the fonts available on the device.
>I cannot get rid of this function as it is needed to find out which
>Unicode Font is available for the application on specific Korean and
>Taiwanese devices.
>
>How do I enumerate the fonts in NSB CE ?
>
>
>
>
>
>
>
>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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Questions about NSBasiceCE

2009-07-08 Thread lazaroinfo
Hi all !!

1) in nsbasicPalm I use startup very to place the codes that I want that they 
are executed when my application to initiate. In nsbasicCE which would be the 
equivalent to the Startup of nsbasicPalm? 

2) In nsbasic the data bases are archives with extension .prc. In nsbasicCE as 
they are these archives of data?  

3) The Library tcpIP.prc functions in nsbasicCE ? 


Thank all

 




--~--~-~--~~~---~--~~
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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



[nsbasic-ce] Re: Questions about NSBasiceCE

2009-07-08 Thread lazaroinfo
But where i place the sub Main()   End Sub  ?  Existis Startup in NsbsicCE ?

Thanks.. 


--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
>
> 1. Probably the closest thing would be 
> 
> Sub Main()
> 
> End Sub
> 
> 
> 2. NS Basic/CE's file system is more like that of Windows on the
> desktop. You can use flat files with this control:
> 
> 
> or use a true database with the SQLite control:
> 
> 
> 
> 3. Use this control:
> 
> 
> 
> >
> >
> > 
> >Hi all !!
> > 
> > 
> >1) in nsbasicPalm I use startup very to place the codes that I want that
> >they are executed when my application to initiate.
> >    In nsbasicCE which would be the equivalent to the Startup of nsbasicPalm?
> > 
> >2) In nsbasic the data bases are archives with extension .prc. In
> >nsbasicCE as they are these archives of data?
> > 
> >3) The Library tcpIP.prc functions in nsbasicCE ?
> > 
> >Thank all
> > 
> > 
> >
> >
> >
>



--~--~-~--~~~---~--~~
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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---



Re: [nsbasic-ce] Re: Questions about NSBasiceCE

2009-07-08 Thread George Henne
You can put it anywhere in the code window. Near the top is probably
best for keeping things organized.

>But where i place the sub Main()   End Sub  ?  Existis Startup in
>NsbsicCE ?
>
>Thanks.. 
>
>
>--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
>>
>> 1. Probably the closest thing would be 
>> 
>> Sub Main()
>> 
>> End Sub
>> 
>> 
>> 2. NS Basic/CE's file system is more like that of Windows on the
>> desktop. You can use flat files with this control:
>> 
>> 
>> or use a true database with the SQLite control:
>> 
>> 
>> 
>> 3. Use this control:
>> 
>> 
>> 
>> >
>> >
>> > 
>> >Hi all !!
>> > 
>> > 
>> >1) in nsbasicPalm I use startup very to place the codes that I want that
>> >they are executed when my application to initiate.
>> >    In nsbasicCE which would be the equivalent to the Startup of
>nsbasicPalm?
>> > 
>> >2) In nsbasic the data bases are archives with extension .prc. In
>> >nsbasicCE as they are these archives of data?
>> > 
>> >3) The Library tcpIP.prc functions in nsbasicCE ?
>> > 
>> >Thank all
>> > 
>> > 
>> >
>> >
>> >
>>
>
>
>
>
>
>
>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 
nsb-ce+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en
-~--~~~~--~~--~--~---