| Thread | Last Post | Replies |
|
| how to force my app to distribute the .NET framework? | 10 Sep 2004 15:03 GMT | 6 |
Another developer (who is gone now) told me to put "dotnetfx.exe" in my zip file, in the same folder as my setup.exe, setup.msi, and setup.ini files. He said to change one line in the INI file: InstallUrl=dotnetfx.exe
|
| Multiple occurences of same code | 10 Sep 2004 12:53 GMT | 2 |
I have an app that seems to be fine at the moment, but I'm a little worried that I'm setting myself up to run into a brick wall. The basic outline of the code is that a FileSystemWatcher keeps an eye on a folder, when a file appears, it gets processed. Processing takes around 5 ...
|
| Reading Combo Boxes | 10 Sep 2004 09:32 GMT | 1 |
Helpers, I have an application to which I added a form (Add New Item) with combo box, a text box and some check boxes. Inside the OK_Button handler method, I can read the text displayed in the
|
| saving file to disk | 10 Sep 2004 08:43 GMT | 1 |
gettings, how can i allow a user to save an image file into the physical disk? the file comes from the screen capture and i want it to save into the disk automatically. how can this be done? yours truly
|
| Image Dispose | 10 Sep 2004 07:00 GMT | 2 |
Here's code that works fine. It gets an Image from a file stream, and raises an event passing the image object, then closes the fileStream. Image imgObj = Image.FromStream(fStream,true); // Raise Event SingleImageCaptured and pass Image object data
|
| form spawning on its own | 10 Sep 2004 06:57 GMT | 10 |
I have a form that uses the UIP app. block for navigation. The app is a testing application. The first part is the tutorial test. The 2nd part is the actual test. Both parts share the same form. When I go from the tutorial to the test part, a new form is spawned by itself. This ...
|
| Property to lock form at run time | 09 Sep 2004 21:13 GMT | 5 |
I can't find a property to lock the form so that you can't drag it around by the title bar. The locked property doensn't do this.
|
| Prevent Designer Generated Code | 09 Sep 2004 21:01 GMT | 3 |
I've created a button class (MyButton) that derives from System.Windows.Forms.Button. In the constructor, I set the ForeColor and BackColor properties of the button with a static color like this:
|
| Properly Using Invalidate On Form Resize | 09 Sep 2004 16:16 GMT | 2 |
When my form resizes the entire window needs to be to be invalidated. However, invalidating the entire form results in an ugly blinking effect. I would imagine there is a simple solution to this but searching the Net I couldn't find anything relating to this issue.
|
| some forms are truncated on specific machine | 09 Sep 2004 14:34 GMT | 2 |
I have a WinForms application which works well on several machine, but shows truncated forms on a specific machine such machine has the same configuration as the others: Win2000 Pro SP3 and .NET Framework 1.1
|
| StringToObject | 09 Sep 2004 14:14 GMT | 1 |
Imagine a project I've got two dll's referenced, dll1 and dll2 within some function of my project i want to use a function out of dll1/dll2 Normally you then would put in the function:
|
| TreeView in Web forms? | 09 Sep 2004 11:07 GMT | 3 |
I need to display hierarchical tree of objects. The best component for this in windows form would be treeview. What about web form? Thank you
|
| Configuration Settings (app.config) | 09 Sep 2004 09:21 GMT | 3 |
I am having problem reading the app.config file. I have 2 vb.net executables one calling the other using process.start method. It seems like when the calling form is run it reads the configuration file correctly and i get the values from appsettings. But when i call the second ...
|
| Scroll Bar Question - can't scroll down | 09 Sep 2004 07:46 GMT | 1 |
I have put some vertical scroll bars on a window form (note this app gets deployed to a pocket pc). The panel has been increased and I have put some buttons at the bottom. Unfortunately, my scroll bar does not scroll all the way down to the buttons after I have added them and ...
|
| Form Real FullScren Question | 09 Sep 2004 07:02 GMT | 6 |
Hi all, I have a following inquiry. Here in news group I found the sample code of how to put a window form in FullScreen (in the style VS 2003/2005 does) protected override void OnLoad(EventArgs e)
|