Answer Questions
noonie Automating login to website with IIS basic authentication
Hello all, Can someone point me int the direction of writing a script to automate login to a web application that uses basic authentication instead of a normal post login from a form Basically what I am trying to do is make the authentication ...Show All
Demented Devil DataGridViewButtonColumn question
I want to get the heading value for a DataGridViewButtonColumn that I added to a DataGridView. I'd like to check the heading value upon the DataGridView_CellContentClick event, if I have several button columns. I want to know which one is doing the clicked button. Anybody know how to do this Ken Found my answer. I initially was thrown because it was a button column. I didnt know you could just go ...Show All
sm8680 Storing from dataset to database
Hi. I want to store to the database a table that is located in dataset defined on the form. I did it with a regular OleDbCommand and OleDbReader for each row in the table separately. I know there is a way to use DataAdapter in order to store the whole table at same time, but i do not succeed to perform this action. Can somebody write an exact code sample how to do it Thank you. Hi, look here: http://samples ...Show All
Spider-X ComboBox Key Value Pair
Hi, How do I create a Windows Forms ComboBox in C# that accepts a key/value pair, and returns the key while displaying the value. For example: YearOfBirth Name 1970 John 1975 Jim 1980 Janet When I select 'Jim' from the ComboBox, I would like 1975 to be returned for assigning to a variable. Many thanks in advance. Jason Holt Jason Holt wrote: Hi, How do I create a ...Show All
iainmcc interactive winForm
Hi all, I need to build an interactive winForm. In many application I see a special effects with the form and it's controls, e.g, winForm with round corners, circular buttons and many other effects. Can you help me please how to build that, or give me some links to learn about this topic. Best regards... Here is the technique with a commercial product: Translucent Calculator using Vector Graphics ...Show All
Mike75 Method of web service, about database?
Hi all I create s web service, it have a method updateDemo. The method use to update data of dataset. When it is runed only one row executes successfully. However I added new or modifyed records. But also method here, when it is runed at&n ...Show All
MikeCai prerequisites list order in bootstrapper
My application requires MSXML6 and ASOLEDB9. Using Bootstrapper Manifest Generator, I created two packages, one for each of the MSI files. When I restarted the VS environment and opened the Prerequisites, the ASOLEDB9 appears at the top of the list, .NET 2.0 in its usual place, and MSXML6 at the bottom. I don't know if the order can be controlled, but this is the order the Publish.htm page trys to install the prerequisites. This fails because ...Show All
Mercenary4 design time instantiation
I have written a Component that I have included in the toolbox so I can drag it into a Form in design time. If I have a constructor in my Component with no parameters, the auto generated code in my Form calls this constructor. And if my Component constructor has a System.ComponentModel.IContainer as a in parameter, the auto generated code calls this constructor instead. Is it possible to write another constructor for my Component ...Show All
klingmeister Trapping Events
Hi, I would like to be able to trapt all events in my current window (thread), eg make my own type of modal window, so that the user can't do anything else. Is it possible Thanks, Jaco ...Show All
oldolddba BUG: XPanderComparer in XPanderList
Hi! In XPanderList.vb, you can read: Private m_XPanderComparer As XPanderComparer Private m_ControlList As New SortedList(m_XPanderComparer) In those 2 lines you declare an XPanderComparer (m_XPanderComparer ), and then you asign it to the SortedList "ControlLi ...Show All
Ronak Desai Date Time Picker
Hi everyone, I am using a windows application where I use a date time picker. what is the event raised when I click on the date time picker so I see the calendar. thanks Here is my VB6 code: Private Sub mtvView_DateClick( ByVal DateClicked As Date ) txtDate.Text = Format(mtvView.Value, "mm/dd/yyyy") mtvView.Visible = False End Sub Private Sub picDate_Click() & ...Show All
Newbie10 Select a control in FlowLayoutPanel
Hi - I've programmatically added a few of my custom-built user controls (inherits only from the standard UserControl class) into a FlowLayoutPanel. It looks great, except I'd like to be able to select (by clicking it) one of the instances of the user control I added for deletion in the FlowLayoutPanel. I would have figured the background of the cell would highlight to indicate my selection of the user control when I click on it, but I don't get ...Show All
Andreas Hammar Persisting settings
What is the best place to persist settings such as windows sizes, the previously selected values in combo boxes, etc I haven't done much winforms development but my understanding was that before .NET this kind of information was stored in the  ...Show All
Seth Nielson Streaming data to a DataGridView like in Sql Server Management Studio
How do you stream data to a DataGridView so it asynchronously retrieves data from the database and asynchronously updates the datagrid I want it to act like the datagrid in Sql Server management tool that populates data to the grid as it retreives it. I tried the following: 1. Retrieve the data using a SqlDataReader asynchonrously using BeginExecuteReader 2. In the resulting callback populate the DataGridView on another thread using the B ...Show All
Heisler DataGridView - Row Selector - Can they be numbered ???
Howdy all, I have a datagridview and my data's index is NOT an integer; but I would like to see a number associated with the row. Is there any way I can put a number in where the record selector goes I know what data i want in there - I just don't know how to put it there. Is it possible Thanks in advance for your help. Randy Hi, Is it possible to hide the select icon on the rowheader cell Thanks, Reddy ...Show All
