[nsbasic-ce] Re: WM 6-style "File Explorer" Navigation

2010-02-14 Thread michiman56
BTW:

What little MSDN *does* say on this Header control is:

"A header control is used to display a heading above a list view that can also 
be used for sorting, folder picking, and other list-specific controls. (Windows 
Mobile 6 Professional and Windows Mobile 6 Classic only)"

Sounds perfect.  If only the link on that page was working!

http://msdn.microsoft.com/en-us/library/bb158625.aspx

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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] WM 6-style "File Explorer" Navigation

2010-02-14 Thread michiman56
In WM 6.x File Explorer you have a ListView in report view which has the column 
headers suppressed, and header dropdowns above that for sorting (right) and 
navigation (at left).

See:

http://www.pocketpcfaq.com/faqs/6/professional/fileexplorer.htm

... which has a few screenshots of this.


Now consulting the MS WM Design Guidelines I find:

http://msdn.microsoft.com/en-us/library/bb158567.aspx

... which covers the bare basics of ListView usage.  However it doesn't discuss 
anything about the "header bar" thingy as used by File Explorer.  This would 
seem to be another control, or a composite control of some sort.


Looking in the Design Guidelines further I also find:

http://msdn.microsoft.com/en-us/library/aa454288.aspx

... which is a bare-bones discussion of "text header" control usage.  While 
this doesn't seem to be quite what I'm after (or is it?) it would appear useful 
in other situations - assuming it can't also be bent to my need for a File 
Explorer-style ListView header.

Do we have a control we can use in NSB/CE as such a "text header" UI element?  
Great place for the Help icon, and I see much MS software does this (as shown 
in the 2nd screenshot at the link above).

I believe there is also some kind of "Header control" which is what I was 
really after.  However the link is bad in the online MSDN Library, and directs 
me to the "Text Header" topic I linked above.


I have toyed with cobbling together something out of a Label control or a 
PictureBox with a couple of ComboBoxes sitting on top of it.  This is pretty 
hackish looking though, just to begin with because I can't suppress the 
ComboBox border or set the internal BackColor properly.

Surely WM UI development isn't this awful for everyone?  Do people truly resort 
to drawing their own at runtime and tracking mouse position and clicks or what?

I'm simply trying to develop UIs for my programs that act like WinMobile 
programs.  UI consistency reduces user training and confusion, and thus reduces 
support costs and makes Help files smaller, i.e. less explanation required for 
simple things.


Any help would be appreciated.  All I'm looking for here is the ability to 
produce something that works like File Explorer's view of the filesystem.

Thanks!

Bob

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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: WM 6-style TabStrip

2010-02-14 Thread michiman56
Oops!  Subject should read "WM 6-style..."

--- In nsbasic...@yahoogroups.com, "michiman56"  wrote:
>
> A while back the UI guidelines changed to require TabStrips at the bottom of 
> the display area, in order to avoid your hand and stylus obscuring the 
> display while working with them.  Much the same way menus are placed at the 
> bottom.
> 
> The MSCETabStrip doesn't seem to have a way of setting the proper Style 
> however.  Yes, I have gone spelunking the DLL via OLE View to see all of the 
> available properties and predefined values (Enums) in the embedded typelib.
> 
> Is there a known workaround?  I can't use API calls to alter the style adding 
> TCS_BOTTOM since no hWnd is exposed to allow this (by calling SetWindowLong).
> 
> Perhaps there is another CE Tab control library we can use?
>


-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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] NSListView vs. Toolbox

2010-02-14 Thread michiman56
At the following link:

http://www.nsbasic.com/desktop/info/technotes/TN11a.htm#addtotoolbox

... it says:

"Note: It is more convenient to put it into the toolbox of the IDE first and 
then place it on the forms."

I heartily agree.  However I can't seem to get this to happen (NSB/CE 8.1.2a).  
Only "ListViewCtrl.ListViewCtrl.1" seems to be in the Toolbox.  I have 
"NSBasic.comctl.ListView.1" in ActiveX Control Manager (also) but it doesn't 
appear in the Toolbox.

What have I missed this time?  Thanks for any suggestions.

Bob

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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: Reliable HTTP/HTTPS Component?

2010-02-14 Thread michiman56
For future reference, I have found a useful alternative.  It seems to work well 
within its limitations, limitations that won't be a problem for most 
applications:

http://www.pocketsoap.com/pocketHTTP/

--- In nsbasic...@yahoogroups.com, "michiman56"  wrote:
>
> I get erratic results when using an instance of "Msxml2.Xmlhttp" using the 
> standalone emulator image for WM 6.1 Professional from the WM 6 SDK.
> 
> Sometimes on calling the .send method it works fine, while other times it 
> pauses and then I get a "VBScript failure - line xx, char 0 no further 
> information available from scripting engine."
> 
> The consistent variable is the URL used.  Some resources are retrieved (GET 
> request) just fine while others fail as described.  Those that work seem to 
> have an XML processing instruction at the head, even when the rest of the 
> content is HTML source text:
> 
> 
> 
> Using almost identical code in NSB/Desktop I do not get the XML processing 
> directive prepended, plus it works for all URLs of interest.  Same when using 
> a desktop WSH script or VB6 program.
> 
> Trying to create this object as progId "Msxml2.XMLHTTP.3.0" on CE/WM fails, 
> unable to create it.  This tells me the WM OS image in the emulator doesn't 
> have MSXML 3.0 (despite Microsoft's claims that it should be there starting 
> with CE 4.x - but you never know with CE builds).
> 
> So I seem to be working with an MSXML 2.x version on the CE/WM emulated 
> device. Clerly this has a few "problems" being used as a general purpose 
> HTTPRequest object, unlike those in Desktop Windows.
> 
> 
> So does anybody know of another wrapper object on WinInet (e.g. a CE WinInet 
> control) or a 3rd party substitute?
> 
> So far I see 2 possible alternatives: call the WinInet API myself, take a 
> stab at trying to use the "WinHTTP.WinHTTPRequest.5" (or maybe 
> "WinHTTP.WinHTTPRequest.5.1") object.
> 
> WinHTTP 5.1 has known "issues" on Windows Desktop so I'm not sure I'd want to 
> use the CE version if present anyway.  The biggest issue is that when using 
> HTTP authentication on a POST or PUT request WinHTTP ends up doing the whole 
> request twice (first w/o authenticating, which fails, then a second time 
> authenticating).  Sending anything large means sending it twice, and I'd 
> prefer to avoid that.
>


-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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: NSBasic Runtime Error

2010-02-14 Thread Nathan
I'm using the version 6.5 ;)

--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
>
> The current version of NS Basic does not support this device. It's over
> 10 years old, forever in this business.
> 
> >I'm using a HP Jornada 720(Windows CE 3 - HPC 2000) and I' m using the
> >trial version, because my friend have the registered one and he will buy
> >it for me(as a gift for my birthday).
> >
> >--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
> >>
> >> What device are you using?
> >> 
> >> Also, could you register your copy? I do not see you in the registered
> >> user database.
> >> 
> >> >I got that error after I've installed all runtime, IDE(on Desktop and
> >> >CE)... :(
> >> >
> >> >What can I do?
> >> >
> >> >--- In nsbasic...@yahoogroups.com, "lasersword2001" 
> >> >wrote:
> >> >>
> >> >> make sure that the runtime is installed first. i got that error before
> >> >too :)
> >> >> 
> >> >> --- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
> >> >> >
> >> >> > Hello,
> >> >> > I was trying to run the sample HelloWorld application of NSBasic, but
> >> >> > when it starts, I got this error:
> >> >> > http://f.imagehost.org/0723/NSBasic_runtime_error.png
> >> >> > 
> >> >> > 
> >> >> > I'm using the 7.0.1b version with all installed, VBScript, IDE(on
> >> >> > Desktop and on mobile).
> >> >> > 
> >> >> > Best Regards,
> >> >> > Nathan Paulino Campos
> >> >> >
> >> >>
> >> >
> >> >
> >> >
> >> >
> >> >
> >> >
> >> >Yahoo! Groups Links
> >> >
> >> >
> >> >
> >>
> >
> >
> >
> >
> >
> >
> >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...@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: NSBasic Runtime Error

2010-02-14 Thread George Henne
The current version of NS Basic does not support this device. It's over
10 years old, forever in this business.

>I'm using a HP Jornada 720(Windows CE 3 - HPC 2000) and I' m using the
>trial version, because my friend have the registered one and he will buy
>it for me(as a gift for my birthday).
>
>--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
>>
>> What device are you using?
>> 
>> Also, could you register your copy? I do not see you in the registered
>> user database.
>> 
>> >I got that error after I've installed all runtime, IDE(on Desktop and
>> >CE)... :(
>> >
>> >What can I do?
>> >
>> >--- In nsbasic...@yahoogroups.com, "lasersword2001" 
>> >wrote:
>> >>
>> >> make sure that the runtime is installed first. i got that error before
>> >too :)
>> >> 
>> >> --- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
>> >> >
>> >> > Hello,
>> >> > I was trying to run the sample HelloWorld application of NSBasic, but
>> >> > when it starts, I got this error:
>> >> > http://f.imagehost.org/0723/NSBasic_runtime_error.png
>> >> > 
>> >> > 
>> >> > I'm using the 7.0.1b version with all installed, VBScript, IDE(on
>> >> > Desktop and on mobile).
>> >> > 
>> >> > Best Regards,
>> >> > Nathan Paulino Campos
>> >> >
>> >>
>> >
>> >
>> >
>> >
>> >
>> >
>> >Yahoo! Groups Links
>> >
>> >
>> >
>>
>
>
>
>
>
>
>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...@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: NSBasic Runtime Error

2010-02-14 Thread Nathan
I'm using a HP Jornada 720(Windows CE 3 - HPC 2000) and I' m using the trial 
version, because my friend have the registered one and he will buy it for me(as 
a gift for my birthday).

--- In nsbasic...@yahoogroups.com, "George Henne"  wrote:
>
> What device are you using?
> 
> Also, could you register your copy? I do not see you in the registered
> user database.
> 
> >I got that error after I've installed all runtime, IDE(on Desktop and
> >CE)... :(
> >
> >What can I do?
> >
> >--- In nsbasic...@yahoogroups.com, "lasersword2001" 
> >wrote:
> >>
> >> make sure that the runtime is installed first. i got that error before
> >too :)
> >> 
> >> --- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
> >> >
> >> > Hello,
> >> > I was trying to run the sample HelloWorld application of NSBasic, but
> >> > when it starts, I got this error:
> >> > http://f.imagehost.org/0723/NSBasic_runtime_error.png
> >> > 
> >> > 
> >> > I'm using the 7.0.1b version with all installed, VBScript, IDE(on
> >> > Desktop and on mobile).
> >> > 
> >> > Best Regards,
> >> > Nathan Paulino Campos
> >> >
> >>
> >
> >
> >
> >
> >
> >
> >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...@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: NSBasic Runtime Error

2010-02-14 Thread George Henne
What device are you using?

Also, could you register your copy? I do not see you in the registered
user database.

>I got that error after I've installed all runtime, IDE(on Desktop and
>CE)... :(
>
>What can I do?
>
>--- In nsbasic...@yahoogroups.com, "lasersword2001" 
>wrote:
>>
>> make sure that the runtime is installed first. i got that error before
>too :)
>> 
>> --- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
>> >
>> > Hello,
>> > I was trying to run the sample HelloWorld application of NSBasic, but
>> > when it starts, I got this error:
>> > http://f.imagehost.org/0723/NSBasic_runtime_error.png
>> > 
>> > 
>> > I'm using the 7.0.1b version with all installed, VBScript, IDE(on
>> > Desktop and on mobile).
>> > 
>> > Best Regards,
>> > Nathan Paulino Campos
>> >
>>
>
>
>
>
>
>
>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...@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: NSBasic Runtime Error

2010-02-14 Thread Nathan
I got that error after I've installed all runtime, IDE(on Desktop and CE)... :(

What can I do?

--- In nsbasic...@yahoogroups.com, "lasersword2001"  wrote:
>
> make sure that the runtime is installed first. i got that error before too :)
> 
> --- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
> >
> > Hello,
> > I was trying to run the sample HelloWorld application of NSBasic, but
> > when it starts, I got this error:
> > http://f.imagehost.org/0723/NSBasic_runtime_error.png
> > 
> > 
> > I'm using the 7.0.1b version with all installed, VBScript, IDE(on
> > Desktop and on mobile).
> > 
> > Best Regards,
> > Nathan Paulino Campos
> >
>


-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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: NSBasic Runtime Error

2010-02-14 Thread lasersword2001
make sure that the runtime is installed first. i got that error before too :)

--- In nsbasic...@yahoogroups.com, "Nathan"  wrote:
>
> Hello,
> I was trying to run the sample HelloWorld application of NSBasic, but
> when it starts, I got this error:
> http://f.imagehost.org/0723/NSBasic_runtime_error.png
> 
> 
> I'm using the 7.0.1b version with all installed, VBScript, IDE(on
> Desktop and on mobile).
> 
> Best Regards,
> Nathan Paulino Campos
>


-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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] NSBasic Runtime Error

2010-02-14 Thread Nathan
Hello,
I was trying to run the sample HelloWorld application of NSBasic, but
when it starts, I got this error:
http://f.imagehost.org/0723/NSBasic_runtime_error.png


I'm using the 7.0.1b version with all installed, VBScript, IDE(on
Desktop and on mobile).

Best Regards,
Nathan Paulino Campos

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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] Still can not get this Programm to work...*confused*

2010-02-14 Thread lasersword2001
For some strange reason i am still getting the same errors, and can not display 
load, hide, and show forms in my Project.

Can someone help me with this?


I uploaded the source code to this to the ChineseFlashcards  folder in the 
files section.

http://f1.grp.yahoofs.com/v1/oMl3S4cfEtk84jxC0MmSgsS7fQtybON19Z8MO6tuuH6HG0U_niDwPISlI7d5JHs4IqombeDnDKqF8SIZ5dsV_7sT-Y-ubWbZbBBFsA/ChineseFlashcards/ChineseFlashCards.rar

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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] New file uploaded to nsbasic-ce

2010-02-14 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: /ChineseFlashcards/ChineseFlashCards.rar 
  Uploaded by : lasersword2001  
  Description : Chinese Flashcards Application 

You can access this file at the URL:
http://groups.yahoo.com/group/nsbasic-ce/files/ChineseFlashcards/ChineseFlashCards.rar
 

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

Regards,

lasersword2001 
 



-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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.



Shocking Celebs Clips (nude celebrities)

2010-02-14 Thread mavej
Entirely free SHOKING video clips collected and posted from users all
over the Net.
Whitney Cummings, Charles Divins, Katie Gill, Chelsea Handler, and
more!
http://tin.bz/p7s

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@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.