| Thread | Last Post | Replies |
|
| When to use BMP vs IMAGE? | 18 Feb 2004 10:15 GMT | 3 |
What the difference and advantages of using: dim MyImage as Image = Image.Fromfile("sample.jpg") vs dim MyImage as new bitmap("sample.jpg")
|
| Form Location | 18 Feb 2004 10:14 GMT | 1 |
I want to set the location of the form at right hand corner but different screen resolution will have different points what I need to set... Any Idea
|
| (C#)OpenFileDialog Filter not working for me | 18 Feb 2004 10:08 GMT | 1 |
I'm trying to get my OpenFileDialog box to filter out all files except jpg files, but am unable to do so. When I run the dialog box (Called from another custom dialog box) and click on the 'Files of Type' field, it won't drop down.
|
| User Controls Are Disappearing! | 18 Feb 2004 08:25 GMT | 4 |
OK, this is frustrating... my whole UI is created based on User controls. But every now and then when I open the desginer the controls jsut DISAPPEAR!!! Pooff!!! The definition of the control is still there in the form designer generated
|
| Inheriting from a UserControl that you've created | 18 Feb 2004 01:59 GMT | 2 |
If you design a UserControl (ie your class has line 2 as "Inherits System.Windows.Forms.UserControl"), is it then possible to inherit from this homemade user control to make more controls? If so how? Thanks in advance Crispin
|
| vbc command line | 18 Feb 2004 01:31 GMT | 4 |
If I use the vbc command line to compile the vb program with external dll library! vbc /verbose /debug- /optimize+ /target:winexe /out:HelloWorld.exe HelloWorld.vb /r:System.Dll /r:System.Windows.Forms.Dll /r:../dir/connection.dll The Problem is that
|
| Very slow updating Listview.Items(x).SubItems(y).Text | 18 Feb 2004 00:41 GMT | 1 |
I have a listview control which contains a number of rows of data, probably just less than a hundred. There are approx. 10 columns, no sorting, control set to show data in Detail mode I want to update just 3 columns, but for all items, as quickly as possible.. The problem is, that ...
|
| Detecting changes user makes in data-bound controls | 18 Feb 2004 00:24 GMT | 1 |
I'm using a Textbox bound to a dataview and the TextChanged event to detect when the user has changed it (so I can know to ask "do you want to save changes?" before moving to another record). The thing is that I can't seem to know whether the change was caused by
|
| Get component (System.Type) from screen coordinates...? | 17 Feb 2004 22:46 GMT | 1 |
Is there something like "GetTypeFromPoint" (hypothetical) in .NET Framework? What I want to do is to get the type (System.Type) of a component on another application's windows, from the mouse coordinates. Want to do something like Spy++ for .NET applications... :)
|
| Drag and drop between applications | 17 Feb 2004 22:34 GMT | 1 |
One of my forms has a multiline textbox to allow my users type some comments. I can successfuly drag and drop text between the controls of my form but I need to give the application the ability to drag and drop text between the application and MS Word or Wordpad. I could not find ...
|
| Total columns in a Datagrid | 17 Feb 2004 22:12 GMT | 2 |
Hi, somebody know hoy can I add a row with total over one on more columns in a Datagrid ? Thanks ...
|
| Dynamically creating a DataGridTableStyle | 17 Feb 2004 20:40 GMT | 4 |
This is frustrating me. I have to create a new table at runtime, and I'm able to, but it doesn't appear. The datagrid always shows the default tablestyle, no matter what I do. Here's my code. <Snip>
|
| Problem accessing crystal reports in WinForms app | 17 Feb 2004 20:00 GMT | 1 |
I have a WinForms app that is being accessed by users across a network share. All the users have the 1.1 framework installed locally. Whenever a user tries to bring up one of the reports in the app, an error occurs saying the crystal engine cannot be found. Does the framework ...
|
| A GDI+ problem | 17 Feb 2004 19:48 GMT | 2 |
I have a problem in GDI+, I put a code snippet (draws a rectangle with a text inside) in the onpaint event handler of my simple form but when I resize the form, the handler redraws my rectangle? Is there a way to determine if there is a rectangle or some other thing on the form's ...
|
| Want to create Setup which can be run on Machine that has no Framework Installed | 17 Feb 2004 18:51 GMT | 1 |
Hi Friends, I want to create setup for windows application.This setup should not depend on .Framework.It should also run on machine that has no Framework Installed. Please anybody can guide me the step by step procedure to solve problem. Thanks
|