Answer Questions
Paulbo99 Listbox to Textbox
Ok. Heres my problem. I have a listbox and a textbox. In the listbox I have a field called "Guest". What I want is when the user presses the "guest" field, I want the word "guest" to display in the textbox. Hi, this code shows the text of the selected item in the listbox in a texbox. private void listBox1_SelectedIndexChanged( object sender, EventArgs e) { textBox1.Text = listBox1.Text; } ...Show All
Jerry Eldridge IIS
Does anyone know if IIS can be installed on XP Home or not as I'm trying to deploy an ASP script that requires ASP and IIS with its virtual SMTP service can someone provide me with the file to do this hack or woul ...Show All
DennisR Datagrid + Dataview + DataTable Problem... :-(
Hi, I have a DataTable. I show my DataTable in my DataGrid (f.w 1.1), and sorting it with a DataView... That cause me a problem because when I want to programically edit a cell in my DataGrid, i have to edit my DataTable, but because i sorted my DataTable then my DataTable is not equal to my DataGrid... e.g DataTable DataGrid -------------- ---------------- col1 col2 col1 col2 ------ ------- ------- ...Show All
Ivan Fernandez Hide the properties of a parent class ?
Hi, I've got a class which inherit from TreeNode. In this derived class, I provide a few properties to show in a propertygrid. But it also displays the properties of TreeNode. And I'd like to avoid that. Is it possible And if so, how (any link to tutorial, documentation or help is welcomed ^^) You used PostFilterAttributes instead of PostFilterProperties. Tony see section ...Show All
toby1980 Display customized message when no value is return to DGV
hello all, anyone has any idea how can i display my own message like "There is no data" instead of just a blank space when DGV displays rows from datasource. tq. this is the truth: DataGridView1.Columns["ColumnName"].DefaultCellStyle.NullValue = "None"; Thanks. I suppose disabling the dgv control is suitable if there is no d ...Show All
Chris Chubb Databinding to n:n Table
Hello, i have the following situation: 1 DataTable containing Questions (qID, question) 1 DataTable containing Answers (aID, answer) 1 DataTable connection the Questions to the (multiple! ) Answers. (qaID, qID, aID) now I want to bind a Combobox and/or a CheckedListBox to this tables. Combobox for questions with one possible answer, CheckedListBox for those with n possible answers. How can I realize this with standard Dat ...Show All
Jim in NoVA Code Groups: What am I doing wrong?
Folks, Ive created a enterprise level code group for the intranet zone with certain SQL Client and security permissions . I take this out of development onto a production server where I have the same code group set up. I still get securtiy exc ...Show All
Ian Bavey Keeping forms in sync
Hello all, Form1 is bound to DataView1 and displays information for an account in text boxes. Form 1 also has a Datagrid1 that is bound to array1 that holds detail info for the current account. When the current account is changed Form1 has methods t ...Show All
Mailtm DIfficulty with Running Server on Local Machine
I've been trying to run both the TaskVision Client and Server on my machine. I get the error reported elsewhere: "An unknown error has occurred, please review the event logs for more information." There are two errors reported in the event&nbs ...Show All
Jigar Shah Datagrid Format
I am frustrated trying to format my datagrid. What I want is a grid with two columns that span the width of the control, yet give no horizontal scrollbar. I also want it uneditable - which I can do with the enabled attribute bu ...Show All
thomas.macht How to sort combobox.
Hi, I am using follwoing code to bind combobox in Form1: IDataReader drMakes = Getting data from database through datareader ; this .SomeBindingSource.DataSource = drMakes; this .combobox.DataSource = this .SomeBindingSource; this .combobox.DisplayMember = "col_name" ; this .combobox.ValueMember = "col_id" ; Now I have following two requirements: 1. When the page load, I want one value from column "col ...Show All
GSC Application Authorization
The taskvision application is supposed to show authorization as one of its techniques and how this can be used to control UI. From what i have seen this is pretty basic with an "IsAdministartor" property of USerInfo. I want to use the Thre ...Show All
BillNoble Please help
I have a MDI application, when i open a child form it gives me a list of items in my database, i then double click on an item and it opens up another child form, in that form i can change the values, and even delete items,&n ...Show All
RLyons windows forms flicker problem
Hi I am kind of new to the windows forms, learning, and I would very much appreciate your help on this one as I think it is trivial but I don't seem to have the answer. I have designed a windows form with a background image (800x600&n ...Show All
HaggaiS How to display a "Static" Form
Hello. On the Main form of my application i have an ItemMenu with a Search Option with the floowing code: SearchCustomerForm frmBusqueda = new SearchCustomerForm(); frmBusqueda.Show(); On frmBusqueda in the button for closing it I have: this.Hide(); all i want is to h ...Show All
