PC Review


Reply
Thread Tools Rate Thread

How do I split up my work space?

 
 
Jeroen Ceuppens
Guest
Posts: n/a
 
      26th Nov 2003
Hi, I have a window form, i want to create a space of 480x640 for the
continuous drawing of bitmaps and another space for setting some options...

How do I create these separate spaces? create 2 forms?
create panels (i tried it, but i can't draw on it ) or are there better
ways? The spaces must be in the same head window

Thx
JC


 
Reply With Quote
 
 
 
 
Jeroen Ceuppens
Guest
Posts: n/a
 
      26th Nov 2003
I want to find something like A Drawing Canvas, the "Big" Framework there is
a usercontrol for that, but in CF not, please help me to find some drawing
canvas....

THx Jc
"Jeroen Ceuppens" <(E-Mail Removed)> schreef in bericht
news:%(E-Mail Removed)...
> Hi, I have a window form, i want to create a space of 480x640 for the
> continuous drawing of bitmaps and another space for setting some

options...
>
> How do I create these separate spaces? create 2 forms?
> create panels (i tried it, but i can't draw on it ) or are there better
> ways? The spaces must be in the same head window
>
> Thx
> JC
>
>



 
Reply With Quote
 
Peter Foot [MVP]
Guest
Posts: n/a
 
      26th Nov 2003
Do you mean drawing for output or you want to get user input? If the latter
there are a few solutions available for signature capture e.g.
http://www.pocketpcdn.com/libraries/...f_richink.html
http://www.pocketpcdn.com/libraries/...signature.html
http://smartdevices.microsoftdev.com...icles/512.aspx

Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org

"Jeroen Ceuppens" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi, I have a window form, i want to create a space of 480x640 for the
> continuous drawing of bitmaps and another space for setting some

options...
>
> How do I create these separate spaces? create 2 forms?
> create panels (i tried it, but i can't draw on it ) or are there better
> ways? The spaces must be in the same head window
>
> Thx
> JC
>
>



 
Reply With Quote
 
Jeroen Ceuppens
Guest
Posts: n/a
 
      26th Nov 2003
I get bmp from a machines digital camera, these bmp I draw

Greetz
JC
"Peter Foot [MVP]" <(E-Mail Removed)> schreef in bericht
news:(E-Mail Removed)...
> Do you mean drawing for output or you want to get user input? If the

latter
> there are a few solutions available for signature capture e.g.
> http://www.pocketpcdn.com/libraries/...f_richink.html
> http://www.pocketpcdn.com/libraries/...signature.html
> http://smartdevices.microsoftdev.com...icles/512.aspx
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> OpenNETCF.org Senior Advisor
> www.inthehand.com | www.opennetcf.org
>
> "Jeroen Ceuppens" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > Hi, I have a window form, i want to create a space of 480x640 for the
> > continuous drawing of bitmaps and another space for setting some

> options...
> >
> > How do I create these separate spaces? create 2 forms?
> > create panels (i tried it, but i can't draw on it ) or are there

better
> > ways? The spaces must be in the same head window
> >
> > Thx
> > JC
> >
> >

>
>



 
Reply With Quote
 
Peter Foot [MVP]
Guest
Posts: n/a
 
      26th Nov 2003
Then you can draw it directly to the form in the OnPaint method specifying
an area which does not interfere with your settings area. Or use a
PictureBox control which you can assign a Bitmap object to - either got from
a memory stream or a file for example.

Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org

"Jeroen Ceuppens" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I get bmp from a machines digital camera, these bmp I draw
>
> Greetz
> JC
> "Peter Foot [MVP]" <(E-Mail Removed)> schreef in bericht
> news:(E-Mail Removed)...
> > Do you mean drawing for output or you want to get user input? If the

> latter
> > there are a few solutions available for signature capture e.g.
> > http://www.pocketpcdn.com/libraries/...f_richink.html
> > http://www.pocketpcdn.com/libraries/...signature.html
> > http://smartdevices.microsoftdev.com...icles/512.aspx
> >
> > Peter
> >
> > --
> > Peter Foot
> > Windows Embedded MVP
> > OpenNETCF.org Senior Advisor
> > www.inthehand.com | www.opennetcf.org
> >
> > "Jeroen Ceuppens" <(E-Mail Removed)> wrote in message
> > news:%(E-Mail Removed)...
> > > Hi, I have a window form, i want to create a space of 480x640 for the
> > > continuous drawing of bitmaps and another space for setting some

> > options...
> > >
> > > How do I create these separate spaces? create 2 forms?
> > > create panels (i tried it, but i can't draw on it ) or are there

> better
> > > ways? The spaces must be in the same head window
> > >
> > > Thx
> > > JC
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Alex Yakhnin [MVP}
Guest
Posts: n/a
 
      26th Nov 2003
There're a lot of resources that explain drawing in CF:

http://msdn.microsoft.com/library/default.asp
url=/library/en-us/dnnetcomp/html/ImageButton.asp?
frame=true

http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/dnnetcomp/html/netcfgaming.asp?
frame=true

--
Alex Yakhnin, .NET CF MVP



>-----Original Message-----
>I want to find something like A Drawing Canvas, the "Big"

Framework there is
>a usercontrol for that, but in CF not, please help me to

find some drawing
>canvas....
>
>THx Jc
>"Jeroen Ceuppens" <(E-Mail Removed)> schreef in

bericht
>news:%(E-Mail Removed)...
>> Hi, I have a window form, i want to create a space of

480x640 for the
>> continuous drawing of bitmaps and another space for

setting some
>options...
>>
>> How do I create these separate spaces? create 2 forms?
>> create panels (i tried it, but i can't draw on it )

or are there better
>> ways? The spaces must be in the same head window
>>
>> Thx
>> JC
>>
>>

>
>
>.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Split text at space Father John Microsoft Excel Misc 2 12th Jan 2010 06:32 AM
Split column on first space rexmann Microsoft Excel Misc 2 4th Apr 2008 11:50 AM
Split the names by space learning_codes@hotmail.com Microsoft Access Queries 1 16th Nov 2006 04:03 AM
Split the names by space learning_codes@hotmail.com Microsoft Access Queries 0 16th Nov 2006 02:32 AM
deleting the work space from open work space =?Utf-8?B?ZHJ1bWJ1bQ==?= Microsoft VC .NET 0 29th Nov 2003 03:16 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:49 PM.