| Thread | Last Post | Replies |
|
| rotating images ?? | 25 Jul 2004 13:57 GMT | 1 |
Are there, apart from the PictureBox other controls to view images (JPEG) ? Actually, apart from just viewing them would I like to rotate them as well. How do I manage that ? thnx
|
| textBox Lines property does not working.. | 24 Jul 2004 22:39 GMT | 3 |
There is a problem with me i want to set a value of specific line of text box. there is a property lines that is an array of lines from text box. there are three lines of text in my text box. i want to change my text box second line from c# and use this line of coding.
|
| Clipboard and CSV (CommaSeparatedValue) does not work | 24 Jul 2004 01:10 GMT | 3 |
I am simply trying to write CSV data to the the clipboard. The code below is not working. Any suggestions? Dim data As New DataObject Dim ms As New MemoryStream
|
| What would cause a window to drag realy slowely? | 24 Jul 2004 00:54 GMT | 2 |
Does anyone have any idea what could cause our app to drag real slowly when a user tries to move the app. Since we don't have a caption bar (it's a skinned app) we're using the tried and true SendMessage(Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0); and have even tried the longhand ...
|
| HOWTO assign embeded icon to togglebutton image | 23 Jul 2004 22:17 GMT | 1 |
In VB.NET I have an embeded icon I have a Togglebutton which has an image property Question: How do I programatically point the image property to the embebed
|
| Windows Application | 23 Jul 2004 21:18 GMT | 5 |
I have an application developed in vb.net. I would like to distribute the application in a CD with auto run. If the target system doesnot have the frame work installed, then the frame work should be installed automatically. I will include dotnetfx.exe in the same folder where
|
| Why Form.Dispose isn't called? | 23 Jul 2004 19:00 GMT | 5 |
MyDlg dlg = new MyDlg(); dlg.ShowDialog(); after the dialog is closed here I expected that Form.Dispose would be called but this isn't the case.
|
| Is Whidbey hardware accelerated for Drawing? | 23 Jul 2004 17:38 GMT | 2 |
Hardware acceleration has been sorely missed from V1.1 for 2D drawing... does anyone know if V2.0 corrects this?
|
| ANN: VG.net animated vector graphics in Internet Explorer | 23 Jul 2004 17:22 GMT | 1 |
On the VG.net development blog is an example of VG.net animated vector graphics within Internet Explorer: http://weblogs.asp.net/frank_hileman Create VG.net graphics within Visual Studio .NET, and put them right on web
|
| How to rename a file ? | 23 Jul 2004 17:18 GMT | 3 |
I tried to rename a file using FileInfo but I don't see how I could do it ? Is there a way to rename a file ? thnx Christian
|
| Notification of user unlocking screen? | 23 Jul 2004 17:13 GMT | 1 |
Does anyone know which notification is sent to a form or app when the user's system's screen-saver mode ends - for example when the user re-logs in after the machine has been in sleep mode? I've been looking for any dotnet/win32 notification and am surprisingly
|
| view a single row in a datagrid | 23 Jul 2004 16:27 GMT | 1 |
I'd like to show a row in a datagrid like this : id_firm 1 name_firm IBM address_firm NewYork DC
|
| I'm stuck on this (menuitems) | 23 Jul 2004 14:18 GMT | 6 |
<see code snippet below> I'm trying to determine how I can tell when a user clicks A->1->a OR A->3->b OR
|
| DataBinding could not find a row in the list that is suitable for all bindings | 23 Jul 2004 13:32 GMT | 3 |
I need help. I have a datagrid that have a dataview as datasource. in the keyup event of one textbox I use dataview.rowfilter = some.text; when the condition of my rowfilter return some rows, everything works fine. At the point that the rows returned by the rowfilter is cero (0), ...
|
| PictureBox and SystemIcons | 23 Jul 2004 12:39 GMT | 2 |
I have a form on which I want to display one of Icons from the SystemIcons class. I have done so using a PictureBox, something like... PictureBox pictureBox = new PictureBox(); ... pictureBox.Image = SystemIcons.Question.ToBitmap();
|