Is it possible to Hide the close control box in C# windows application.I want to show only minimize and maximize control.No need to show the close control.Please guide me to solve this problem
Dear experts
i want to ask three question about the listView control
1)how i can add a columns header to the listview control (i added the columns to the listview but this columns hea...
I am wondering what the best practice is for closing one form and viewing another in a Windows Form app. I have been using Me.Hide() to close the form and SomeForm.Show() but I'm wondering if...
I have a handle (IntPtr) to an object, and I need to convert it to an object (e.g. combobox).
Hi experts,
I'm really going nuts with this here. I'm using VS 2005 and I'm just trying to publish a simnple C# application. Using the built-in Publish Wizard this should be a piece of cake...
I am using a symbol LS9203 with the USB connection. Basically this thing acts like a keyboard wedge, reads a barcode and outputs the info. Does anyone know if it is possible to force the out...
Hello,
I have a form on which I need to display a datagridview for editing data for my users. One of the columns is a comboBox to lookup the values needed. I need to be able to edit the dat...
Hello,
How do I anchor the MDI child form so when the user resizes the Parent form.......the child form will resize with it? Thank you!
Is there a sure way to tell if a windows form has focus?
I currently have setup a way to automatically color code SQL words in a richtextbox everytime the user types a key using regular expressions. I am sending a message to stop painting the richt...
Create a window application to display sales for a selected store using multitier application. Allow the user to select store name from a drop down list.
Use sales and stores from the pubs ...
I have an object that interfaces to a TWAIN device. The object raises events after each scan. The GUI subscribes to these events to get the image that was scanned, error events, and some oth...
Hai
I need to change the back color of a datetimepicker control (the editing part). How can I do that?
Thanks in advance
Is there a way to include a text file with my ClickOnce deployment? Its not part of the application, but a file used by the application. I need to have it installed on the user's PC in the s...
Does anyone know why my Balloon is not disappearing after 5 seconds? Here is my code:
With Me.NotifyIcon
.Icon = Me.Icon
.ShowBalloonTip(5000, "This is the...
I am having trouble getting familiar with the .NET combo box and its events. I have a form with a combo box, which is populated with the records that a user might wish to view/edit. Selected...
I have an xml file following a format similar to:
<Bookshelf>
<Book>
<Title>Title1</Title>
<Author>Author1</Author>
<Author>Author2</Author>
</Book>
<Book>
<Title>Tit...
How to highlight(like highlight square around image) selected Image Item in a listview control ???
Please help...
I have a cobobox column in a datagridview that works fine with the attached code; it displays the correct text for the value it retrieves from the database.
However, If I make a minor alterat...
Hi experts,
Why when I do the following to a dataGridView in vb.net winforms the grid doesnt show any records??
Dim db As New DB_Feed_KSE_KARS
With Me.DataGridView1
...
I am converting a VB6 program to MS C# 2005 Express that must load a *,tif file so that the user can view it. The user may also want to zoom in on the image. The VB6 program uses the old K...
Thanks to one of the experts here, I was able to build an extension to the textbox that allows me to color the rows of a multicolor textbox.
Now the problem is that if I scroll the textbo...
I'm generating a combobox in a datagridview using windows forms, but it doesn't display the data, only listviewItem{1} (2 and 3).
Just can't see what I'm missing...
thanks,
Graham
What's the best way to handle a user clicking on "X" (Close) from the Winform Control Box?
There doesnt' appear to be any events to directly hook into.
There are the FormClosing and FormCl...
Hi,
I want to create an Owner drawn combo box.
In most examples of owner drawn ComboBox in C#, I found that though we can create a new look for the combobox, the scrollbar, which app...