.NET Development
SQL Server
Microsoft ISV
SharePoint Products
Windows Vista
Visual FoxPro
Windows Forms
Visual Basic
Smart Devicet
IE Development
Audio and Video
Visual Studio
VS Team System
Game Technologies
Visual C#
Software Development Network>> Smart Devicet>> Conforming form like message box in C#
Conforming form like message box in C#
Hot Topic
Will there be an MFC Rom Patch?
How to develope FTP capabilities LIST/GET/PUT on VB.NET CF
Print Virtual Earth Map
Virtual Earth is so slow!
Image/Graphics delay
WLM Addin: the event handlers don't work
MSN Messenger with Sharepoint
How do I get System.Control object from a Win32 Handle?
Help on available clases
Full screen application and notification bubble
Smart Devicet
Problem with my Cab Smart Device Deploiement Project
Add softInput Panel.......
auto complete for COmbo Box
How to page up and page down in datagrid ??
how to report a bug in .NET (WM5) to MS?
How to Insert a Menu bar to a DialogBox()?
WinCE 5.0 certification
MSN Messenger error on POCKET PC: QTEK S200
Update on adCenter SSL certificate for Java environments
Turn on and off the flight mode
Conforming form like message box in C#
I want to create a windows form like a message box. This form will act as a calculator. Can I perform this I mean, can I create a form which can move on the pocket pc's desktop
Answer this question
Conforming form like message box in C#
Closer
This is pretty simple actually.
The following lines in your InitializeComponent should do the trick
Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(100, 100) 'The important line
Me.ControlBox = False
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.TopMost = True
Me.ResumeLayout(False)
Andy Redman
How can I do this in C++ As far as I can tell, I don't have any AutoScale properties available. Thanks
Israel Brewster
Conforming form like message box in C#
Answer this question
Conforming form like message box in C#
Closer
The following lines in your InitializeComponent should do the trick
Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(100, 100) 'The important line
Me.ControlBox = False
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.TopMost = True
Me.ResumeLayout(False)
Andy Redman
Israel Brewster