Answer Questions
BillGates4ever Setup
Now I'm on setup stage in my 1st winform app :) I've created a setup program from setup wizard & evetything works fine. Everything except: 1. my app is creating folder in Start menu, but always the same. Setups often ask in which&nbs ...Show All
osfa UserControl with Panel as constituent control
Hi, I have created a UserControl with a Panel as a constituent control. I require the ability to, in the IDE, drag drop controls into the Panel within the UserControl. How do I go about coding that functionality Many thanks You need to add a designer for the control. Add a [Designer(...)] attribute to your custom control. Implement your designer by deriving from ParentControlDesigner and o ...Show All
Drakth Form navigation between forms
Hello, What is the best practice for navigating between forms. I have a mainform with two buttons. The buttons navigate to form1 and form2. I currently do the following from mainform to navigate to form1 Dim form1 As form1= New form1 form1.Show() me.hide to go back to the mainform from form1 I do Dim mainform As mainform = New mainform 'mainform.Show() Me .Close() I only want to open 1 instance at a time so The tas ...Show All
MichaelX Hiding Column not working
Dear sir i have two tables 'master and detail' on on form....textboxes and grid i want to hide some coulmns from the grid i made tablestyle:collection,mappingtable,collection:,mappingcoulmn width=0 BUT STILL NOT WORKING I don't know what you mean, but if you want to hide column in datagridview, you can set property "Visible" of that column. Ex : textboxcolumn.visible = false. ...Show All
Patrick Briggs Project Outut Question, Please Help.
Hey everyone how are you doing I am new to the board, and I am new to programming and Visual Studio .NET 2003. I am teaching myself both of them starting off using “SAMS Teach Yourself Visual Studio .NET 2003 in 21 Days”. &nbs ...Show All
Amir Goodarzi Visual Studio.Net Enterprise Architecture CD
Hello: Since this is the general question forum and going to state my problem here and I am sorry if I am doing it wrong. I am a new VB.Net programmer just starting. I used to have the Visual Studio.Net Enterprise Architecture but ...Show All
Glowball How to call UserControls Property and method from the Container application ?
Hi Friends, I have created one UserContols. I load it on another C# Application using the Assemply.CreateInstance method. Now i need to access all property and method. How to do it Please help me, its very urgent. Nilay what is a C# spcilist Dear David M. Kean Your Post will not help me but thanks for reply me. I can explain in detail. Here the control is not fixed means I don't know which control i am going to load. I am lo ...Show All
HokieTX DataGridViewImageCell, host custom control
Hi all, Again i lack the knowledge and documentation to achieve what i want. The new DataGridView allow us to add custom controls in each cell. I already found the DateTimePicker Example on thos forum, great example and it works smoothly, however i wanted to create a Image Edit control which could be used in the DataGridView. The problem is that the DataGridViewImageCell is readonly by default and has no EditableControl. So following the DateTim ...Show All
TonyYesItsMe ProcessDialogKey doesn't get called
I derrived a class from System.Windows.Forms.DataGrid, overriden the ProcessDialogKey to put custom processing for "Delete" button. All works fine till I created the inherited form derrived from the form with my grid on it. Base form has a datagrid ...Show All
SunnyRon Read a Word Document
Hello All. How can I read a MS Word Document by c# code I'm trying to implement some sort of a desktop-index-application(such as the copernic) with some custom options I need. How can I do it of course, the best way would be reading the doc fi ...Show All
luoluo How to Bind Business Entity Components to User-Interface Controls
Does anyone know where to dowload an example about Binding Business Entity Components to User-Interface Controls on window form Thanks The Windows Forms Databinding forum is probably a better place for questions about binding - I nearly missed this one. Check out this article: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnadvnet/html/vbnet02252003.asp If you are using VS 2005 then you can use BindingList(of T) rat ...Show All
JooK Datagrid row question?
Is there a way to prevent a user from adding a row to a datagrid Data comes back to the grid from a database and populates the first row of the grid. However, I don't want the user to be able to add any additional rows to t ...Show All
Jitin Batra Passing parameters from one form to another
Hi, this is the situation... I have 2 windows forms VB.Net, Form1 contains a DataGrid and a 3 buttons Insert, Edit, Delete respectively, When the user clicks a row in the DataGrid and then click any of the 3 buttons the second Form is load ...Show All
ClaudeX ComboxColumn in DataGridView (VS.NET 2005) not support AutoCompleteMode, DropDowStyle
Dear all, I'm developing application in DataGridView. I want to add ComboBox Column in DataGridView. However, DataGridViewComboBoxColumn in new version DataGridView not support Properties which Combobox control have. Example Properties : AutoCompleteMode, DropDownStyle. In my opinion, They are 2 important properties because they support user input value and auto search items in Combobox. If my ideas are wrong, please tell me ways to get those pr ...Show All
Tony Robyn Problem moving control from one Parent control to another
Hello, I'm trying to move a control to one parent container to another : tControl = [Control Instance] // The control in already container in another control tControl.Tag = tControl.Parent.Handle; // Pu t the parent container Handle in the control tag // Remove the control from its container and then put it to another container (in this case a System.Windows.Form.Panel) tControl.Parent.Controls.Remove(tControl); tFloatingP ...Show All
