Answer Questions
NRN Minimizing the Window
Hello I'm starting a visible process of NOTEPAD using the class System.Diagnostics.Process. When i launch this process i want the windowstyle to be minimized. I have tried using the following code but it doesn't seem to work. I mean notepad is launched but it ...Show All
David Schulze How To Use The Tab Key In ListView
Is there any way to use the Tab key to cycle thru the records in a ListView I tried this Private Sub ListView1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ListView1.KeyUp If e.KeyCode = Keys.Tab Then MessageBox.Show("Tab Key") End If But the Tab key is not even recognized and the next item in the Tab order gets the focus ...Show All
NewTechCorp messenger notification
Hello all, I would like to use a notification system similiar to what happens with msn messenger when someone logs in or you recieve a new e-mail. Can anyone point me in the right direction on this. Thanks Thanks for the&n ...Show All
ShaneMcM Pixels
How can I do math operations on pixels. Such as 16px - 10px and get 6px. I'm stripping the px and then doing the math but I sure that there is a better way using the unit namespace. Thanks, Bill I think I found&n ...Show All
jumanjiCA Specified argument was out of the range of valid values.Parameter name: '0'is not a valid value for 'index'
I have made my ListBox and ComboBox control which are derived form System.Windows.Forms.ListBox and System.Windows.Forms.ComboBox respectively. When I am populating these controls initially it was throwing error: "Could Not Bind to the New display member. Parameter Name: newDisplayMember" After doing some changes in the ValueMember property, now it is throwing an error: "Specified argument was out of the range of valid values.Parameter name: '0' ...Show All
schulmand ToolboxBitmapAttribute doesn't work
Could anybody explain me what happens Code is below: C#: [ System.Drawing.ToolboxBitmapAttribute(typeof(MyClass), "myicon.ico") ] public class MyClass: Component {...} VB <System.Drawing.ToolboxBitmapAttribute(GetType(MyClass), "myicon.ico")> _ Public Class MyClass Inherits Component ... End Class I have place the&n ...Show All
George Ionita raise an event from other process
proga.exe & progb.exe is running, is it possible to throw an event from progb.exe to proga.exe for example, if the user clicks a button in progb.exe, i want to pop up a messagebox in proga.exe. not any slower than a web&nbs ...Show All
Critcho Populating Identity Col. value in dataset after Insert
I using the following code to insert a record in tblClient. However, after the insert, the database's value for Client_ID (identity column) is not refreshed in the dataset. What I am missing. SQL with the added select statement that is suppose to r ...Show All
B o g d a n Is Update Web Service Available?
Ok, is a while since my last adventure with Terrarium. I just instaled the last client version and the last dot remains red (the Update Web Service). I remember that this was not available on the las version I play with. Is it available in ...Show All
Kyra92 Jumbling 30 picture boxes - challenge to you all
A small challenge for those interested: Who can create the easiest way of jumbling 30 (small 76,72) picture boxes in a 6X5 layout at the press of 'button1' so that they all swap position and this process could be done again and again to swap pictures around randomly each time Picture boxes are named. pic1, pic2, pic3 .... pic30 and the positions of these picture boxes from left to right are as follows 12,79 94,79 178,79 261,7 ...Show All
pgklada scrollable panels without a scroll bar
Can I have functionality of programmically AutoScrollPosition for a panel but without actually showing the scroll bar Senerio: I have several panels that are programmically set to hor or vertical position controlled by a master panel's scroll bar (not using ...Show All
DavidT passing variables between forms again :)
I have read about five different threads about passing variables between forms and none of them have made much sense to me or helped me. I know i am very new and green but can't seem to figure it out. So one more time could some one help me in simple terms. Show me how to be able to access data from one form to the next. I am wanting to for example access a string that i have assigned in form1 and use it in form 2. Don't know how to do it. I am ...Show All
samno Treeview control
Does .Net2.0 support full row selection of the Tree view control to even fill the +/- signs and the gap between the +/- signs and the tree node Yes .Net 2.0 does support full row selection in TreeView Control. It is a boolean property called FullRowSelect . It will not work if you have ShowLines set to true. The property is finicky. Thus, if it does not work you might want to try hiding and sho ...Show All
Sianspheric BUG: MdiChildActivate strange behavior
The Form1 and Form2 are exists. Form1 is Mdi Container. Form2 is Mdi Child. Form1 has MdiChildActivate event handler: private void Form1_MdiChildActivate(object sender, System.EventArgs e) { if(this.ActiveMdiChild==null) { Form2 f2 = new ...Show All
xDev Custom SaveAs Dialog
Hi I had made a little application that can save data in ASCII or Binary format. I wish to let user choose the format at runtime. But I read the it's impossible to extend the SaveDialog control in the .Net Framework. And I don't find a way to add a radio button to let user choose the format. Is someone know a way to do something like this Or maybe there is already a custom made control that do this somewhere on the Internet. Thank you ...Show All
