Answer Questions
swin opening a paticular cell in editMode when dg row is highlighted
hiya, When the user clicks on a dgRow, I want to be able to be open the 5th cell (in editMode) of the selected dgRow.Ideally, I want the underlying datable to be updated if the user subsequently enters data in this cell and then moves ...Show All
mak3937 File association
Hi, I programmed an Editor and need a file association... I want that when I click a .txt or .rtf my Editor opens up... ...if there's any sample or you know how to...please post :-) Go to Folder Options in Control Panel, click on ...Show All
DaaDa Ng DataGridViewComboBoxColumn Selection Changed
Hi, I would like to handle the Selection Changed event of a ComboBox column inside my datagrid, what would be the best method to do it. I tried the CellValueChanged event but that throws up an error when I am loading the datagrid. Please suggest how to do this. Thanks, Kunal Thanks for the reply Mark, I think SelectionChangeCommitted should work for me once I get the Beta 2. In Beta 1 it isnt getting fired prop ...Show All
Steve Wertz Printing Document in windows service
I wanna print a document through windows service. I have written the code: Dim MyDoc As New PrintDocument Dim str As String = MyDoc.PrinterSettings.InstalledPrinters.Item(0) MyDoc.PrinterSettings.PrinterName&nb ...Show All
Vedran951 What is "Integrated WinXP"?
What is the difference between WinXP "Integrated" and the "Regular " versions I have Win98SE on my other PC and I am thinking about getting WinXP, but I was told to AVOID the "Integrated" version!!! Any help Thanks! hi, This forum is meant for posting programming related questions in Winforms in .net. Please post your thread in Microsoft newsgroups site. Seel the link below. L ...Show All
Intech Techie how to retrieve value from 2nd form
Hi! There. My win form app has two forms: frmMain and frmLogin, and a module: mod1. mod1 sub main has this: Dim dlg As New frmLogin If dlg.ShowDialog() = DialogResult.OK Then Dim frm As New frmMain frm.ShowDialog() End If In frmLogin, there are several properties: Private m_UserID As Integer Public Property UserID() As Integer ...Show All
Dd365 AutoResizeColumns gives operation exception
Hi, I'm having a problem with the AutoResizeColumns method on a DataGridView. I'm calling it in the DataBindingComplete event handler: void DrmGridView_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e) { this.AutoResizeColumns(); } but I get an operation exception with this message: "This operation cannot be performed while an auto-filled column is being resized." My grid has fi ...Show All
plopes Smart client doesnt work Help!
I have a smartclient with nothing but a ie browser control in it. I try to run it in my own machine it doesnt work. the following error comes. " An unhandled exception of type 'System.Threading.ThreadStateException' occurred in IEExec.exe Additional information:&n ...Show All
TylerAKAsection8 Installation of Windows service
I have writen a windows service and made a setup project for it. My problem is that i need to run the installer classes for the service without running installutil.exe from the comandline. Consequently I need to run this automaticly when the us ...Show All
wscottj Exception of type ExceptionCollection thrown when a form is attempted open from VS2005's IDE
The Exception : Exception of type ' System.ComponentModel.Design.ExceptionCollection ' was thrown when the form is attempted to open from VS2005 IDE. The form contains an implementation to allow a Host Designer at run-time. Someone knows a solution to this issue . The form can't be opens until the VS2005 is closed and the solution is re-opened and rebuild process is executed again . Thank you in advance. ...Show All
domls MSI Files in Click Once applications
Hi, I am using a MSI package within a Click Once application. The MSI runs at the beginning of the Click Once deployment but it installs the files in its own “TargetDir”. I want the MSI to install in the same directory where the Click Once application files reside. How do I do this The reason why I have a separate MSI package is that it contains files from an external app and I do not want to package its files within my Applic ...Show All
morur Is there a way to convert a control to a different type of control?
I want to convert a textbox into a label. Is this possible I was actually doing the first suggestion that you gave but I was just wondering if there was another way to do it. If the conversion worked I was going to turn it into a control but I guess I have to do it the longer way. Thanks for the post this is somehow related to the subject. Is there a way I can create a textbo ...Show All
aloulou_2007 Query/Databinding question
This is a 2 part question as it were so i will start with my query question. I am trying to make a generic query. My query on my table adapter is: SELECT MIN( ) FROM Client WHERE = AND = I ended up changing the WHERE clause so that it would be: WHERE ClientID = AND Status = This cleared up a few errors. I am now having a problem with the Select clause. It will work if i put an actual column instead of a in. It will not accept the passed parame ...Show All
Matholroyd Graphic in .Net executable
HI .. please i need help if someone can i am looking for information from long time but all is in vain i have portable exe file it is devolped in .net using VB.net this exe file has resouse inside i dont know how it work ...Show All
Glenn Ramsey Bindingsource AddingNew causes "Cannot add external objects to this list"
Hello! I want some columns to be prefilled before added so I handled the AddingNew event of my bindingsource: Dim _view As System.Data.DataView = New System.Data.DataView(OrderTable ) Dim _row As System.Data.DataRowView = _view.AddNew _row.Item("PositionsNr") = 4 _row.Item("PositionsSubNr") = 1 e.NewObject = _row While executing it raises the error "Cannot add external objects to this list". I think it's some kind of mis ...Show All
