Answer Questions
Peterbriffett ++ operator increment on vb.net
Hello, is there a replacement for the ++ operator on vb or i have to use something like dim i as integer i +=1 thank you That's correct. There is no increment operator, so the += is the way to go. Don curi ...Show All
Cratos Controlling the max size of a button
We're creating base classes inherited from the standard WinForm controls. As part of a proof-of-concept, I need to demonstrate "why" this inheritance is a good thing. One of the things I'd like to demonstrate is the enforcement of a max ...Show All
misiu_mietowy Process HTML
Hello, I want to display some HTML content of a file in a windows form; is there a way not to display the HTML directly, but rather the rendered HTML as you see in the browser I'm guessing the webbrowser control will be needed Thanks. Yes, if you have .NET2.0, there's a "WebBrowser" controls that is easy to use. If you have .NET1.x, you have to wrap COM component "SHDocVw.dll" by yourself. There m ...Show All
Matei Puiu DateTimePicker and DataBinding
I've set my DateTimePicker's text property bound to a DateTime field in my Access Table ( because it gave me error if I bound the value property instead). When adding a new record from my form, I pre-set my DateTimePicker's text and value ...Show All
JerryIQM2 Custom Control Click Event
I Have created a custom control which has a couple of labels on it and a progress bar. When i use it on a form, i want to assign a click event to it, so that if you click anywhere on the control, its registered as a click on the control. Adding the control.click event to an eventhandler doesnt seem to work. What am i doing wrong What do i need to do to get it to do what i want Cheers Thanks for your speedy rep ...Show All
Devidas Joshi DataGridView and posting changes to DataTable
This problem appeared many times on this forum but in my case none of the solutions worked. The story is that changes do not appear in DataTable. dgv is bound to a dataset and DataMember has been assigned to a DataRelation (by its name). It views data fine, but when I type anything in dgv I can't see changes. I'm handling events TableNewRow and ColumnChanged. Those events are raised as they should when I change/add rows on dgv. When ...Show All
dnzone XSD.EXE
HELP! I'm trying to create a strongly typed dataset using the XSD.EXE. I have managed to create a file that, once renamed (with xsd filename extension) is visible within VS. Only problem is, i need a .vb version of this file.   ...Show All
gdick ListView Column Order
I am filling a ListView in Details view. I know I can reorder the ListView columns at runtime, but I would like to be able to save the settings of the revised column order so during subsequent sessions the user can click a button or&n ...Show All
semaphor How can I make my forms move faster ?
Dear .NET I have a C# solution on .NET v2 that has a GUI project in it, The Forms are defined as "global" static objects on the Main() so that I will B able 2 use them from anywhere through MainApp.MyForm.Is_Flag_On; I start the application from the Main() like this: Form_Main = new GUI. Main_Form (); Application .Run(Form_Main); The problem is that the Forms became TOO SLOW !!! 1. You can see it when you Sh ...Show All
johnny83 how to open a pdf file from a windows form
hi, on a button click event i want that a pdf file which is stored on my hard disk will open. how can i do it (i use c#) Thank !!!! System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = @& ...Show All
Bobby Zwanenburg Toolstrip menu items icons + form designer
Hi, I have 2 problems with my project: 1. The icons for the toolstrip menu items are not displayed right. If I choose ImageScaling = None their bottom is truncated, if ImageScaling = SizeToFit they are distorted. 2. If I rebuild (not build) the solution, when I try to open the MainForm from Valil.Chess project in the designer I get " One or more errors encountered while loading the designer ... ". I get rid of the error if I close ...Show All
Mukul Gandhi Startup Menu SHortcut in setup project.
I'm just finishing a setup project and I need to have the app shortcut in the users startup menu.. So far I've read that one makes an entry in the application manifest. Where is this file and what is it's name Is this an editable text file and what does the entry look like Thanks. This problem is resolved. Go to the ACTION menu and add create Shortcut. In the Properties Menu assign the target to the file o ...Show All
Patrick Gallucci MSFT #develop
I was justing loitering in the Community page of windowsforms.net and hit the following link: <A HREF="http://www.icsharpcode.net/OpenSource/SD/">http://www.icsharpcode.net/OpenSource/SD/</A> This is the web page for an open source IDE for C# and VB.NET called #develop. ...Show All
ixTitan SQL HELP WITH THREE TABLES
I have three tables I want to update/Select at the same time with one sql. The tables all have a bar code. The tables below the main Inventory are tied by a field called includedIn which is equal to the bar code of the main part ...Show All
Spidermans_DarkSide - MSP, VSIP Editable Panel within UserControl
I have a usercontrol that I drop a panel and a label onto. I dock the label to the top and the panel dock to fill. When I drop my custom usercontrol onto my form, I can't add controls onto my panel. I want the ability to add ...Show All
