Answer Questions
MagnaX how to execute an embedded VB executable in a form?
Hello, I wanted to embed an executable inside a C# Windows Application. I want my dot net windows application (exe) to load the embedded executable when I click a button. I have seen several samples on the web where people are retreiving bmp, icons, etc using resource manager and display them on the form. But how do I retrieve an executable and run it on the click of a button The executable is not a dot net assembly. Its an unmanaged assem ...Show All
Van Vangor TaskVision as Document WorkFlow
I'm new to Windows Forms, but have been working with IBS VB for a while. Will TaskVision allow you to upload documents to the server This link would allow me to create some kind of WorkFlow environment, so that Users are assigned stages i ...Show All
Nahas List View row height....
Hi All, In my requirement i have to show mulitline text in List View row.How to show multi line text in list viw rows. Thnaks in advance..... Thanks, Narendra ...Show All
quantumkev Forms from 6.0 to .Net
I have prepared a project in VB 6.0. Later on I upgraded it to VB .Net. To call a form, the code 'MyForm1.show' was upgraded to 'MyForm1.DefInstance.Show()'. Now I added a new form in my .Net project. My question is how to call the newly a ...Show All
a006751 DataColumnChanging problems...
I am attempting to validate data on a grid in a DataSet. In the DataSet Designer if I click on the column that I want to add a validation for, I get an error: Failed to add validation event handler because of the following error: Not ...Show All
ArtSoft Unselecting text when entering DataGridView cell
When a user clicks on a DataGridView cell to enter edit mode, the contents of the cell is automatically selected (i.e. all the text in the cell is highlighted in blue). How can I stop this Is there a way to make it so that when they enter edit mode, the cursor is just placed into the cell without highlighting the text. Is there something I can do in the DataGridView.CellBeginEdit event, or am I looking in thw wrong place ...Show All
papalarge Using Reflection?
Hi We have a multi layered .NET application under development. It had VB.NET client, J2EE mid layer, Documentum another middle layer and Oracle on Unix. Quite huge. Just trying to understand if REFLECTION feature of .NET can be some good use for us ...Show All
Rafitelli MDI Maximized children forms without controlbox?
MDI Maximized children forms without controlbox I have been searching the web and everywhere I asked the question, the answer is that it is a Microsoft Bug. Well instead of telling me that it is a bug, how do I fix this My situation: I have a parent form (frmMain), a welcome/startup (or background) form (frmWelcome) and other child forms for data capturing. The idea is that when the program runs, the welcome form is displayed and stays displ ...Show All
Lantzmannen The Display Member is not a property of ComboBox control.
How to set the display member ...Show All
Pops Jackson flash problem
I'm using the flash activex control to load swf files. I want it to be dynamic, I'm adding the control at runtime,and it works ok, but I can't load the movie into the control. I tried the Movie property and the loadMovie method but bo ...Show All
richard22 Window drag from client area
Hello, I want a code snippet that enables me to drag a window with the left mouse button from the client area (not using the title bar). Here is what I've wrote, but the results are wrong: case WM_MOUSEMOVE: x = LOWORD(lParam);y = HIWORD(lParam); if (wParam & WM_LBUTTONDOWN) { //Move the window GetCursorPos(&pos); SetWindowPos(hWnd, 0, pos.x - x, pos.y - y, 0, 0, SWP_NOSIZE | SWP_NOZORDER | SWP_NOOWNERZORDER); } break; ...Show All
spncc Editing XML file
I want to manage, i.e., insert, edit, and retrieve, data in a simple XML file. Here is a sample of the file: < xml version="1.0" encoding="utf-8" > <Backup> <Settings Compress="true" RunMinimized="true" /> <InPaths> &n ...Show All
pauldo right-click event
where is right-click event on button and another cotrols I can't see it in events list... Handle the MouseClick event (new to .NET 2.0) and do something similar to the following: private void button1_MouseClick( object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Right) { MessageBox.Show("Right-click"); } } The right click mouse even ...Show All
zfmicrosoft How to format money with $, commas and 2 decimal in textbox?
Any one know Please help! One admittedly ineligant way to do this is to convert the text to a double/decimal/single and then do this: someVariable.ToString("c"); where someVariable is a double/decimal/single. I would use the parse command to get th ...Show All
Johnn manc How to update changes?
Hi everyone, I'm developing an application on C# using ADO .NET to update and retrieve data from an MS Access DB. I have bound a combo box to one tables (parent table) and several text boxes to another table (child table). Both tables are related through a DataRelation. So whenever I select an item from the combo box, the data bound to the text boxes changes automatically. I also have a Save button in my windows form so that after the use ...Show All
