Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. spidervenom

    ComboBox Item Index

    Hi all, This maybe a little bit hard to explain (and confusing), but hope someone can help. I have 2 ComboBox (Cmb1, Cmb2). They are bounded to DataSource. There are 2 items in Cmb1, and Cmb2 populates its items based on Cmb1 SelectIndexChanged event. If Cmb1 item 1 is selected, 2 items...
  2. spidervenom

    Datagrid not refresh

    *********Here is the Remove Button code: *********resultSet is a DataTable Private Sub btnRemove_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRemove.Click If resultSet.Rows.Count < 2 Then MsgBox("At least one Customer is required") Else...
  3. spidervenom

    Datagrid not refresh

    Hi all, I am using VB.NET and trying to remove. I have 2 forms (Form1 and Form2). When user clicks "Edit" button in Form1, Form2 will open. Inside Form2, there is a list of Customer displays in a Datagrid control. When the user highlighted the current row, and click the "Remove" button on...
  4. spidervenom

    Combobox Index out of range

    Thanks for the help. Just want to clarify, the data from combobox1 is from DataSource. Thus, by default, the first item displays in combobox1 will be the first item from the DataTable. When the form starts, a blank item is added to combobox1 because we want to force the user to click on...
  5. spidervenom

    Combobox Index out of range

    Hi everyone, I have two comboboxes (Sample and Lot). Both get data from DataSource. The items in Lot combobox will populate based on the selection in Sample. I have added a blank line to the combobox so that the user will not see the data right away when the form is load (they must select the...
  6. spidervenom

    Button in Windows Datagrid

    Mastakilla, I had found and taken a look at that website before. Without using that 3rd party software, just wondering is there a way to do it? Anyway, thanks for your help! :-)
  7. spidervenom

    Button in Windows Datagrid

    Hi All, I am building a Windows application and have 3 columns in the datagrid control. Now I want to add a 4th column which has a "Remove" button on each row such that when users click the button on that row, it will remove that row in the datagrid. I have done some research online, but most...
  8. spidervenom

    Remove/Disable automatic space insert after text input

    Hi all, I am new to Table PC application development, hope someone can help. I created a VB.NET Windows application and have a textbox control that allows user input (I use InkEdit) using the tablet pc's pen. After the user inputs the text, the text recognizer automatically add a trailing...
  9. spidervenom

    ASP.NET Calendar Control. Please Help!

    Hi, I am pretty new to asp.net. I would like to create a pop up calendar control where users can select the date from the control and that date will then add to a textbox I get the following error: Run Time Error has occurred 'window.opener.frmCalendar.txtDate' is null or not an object this...
  10. spidervenom

    Web.Config Configuation Problem

    Thank you for your help first. I have tried using the method that you mentioned, but I am still getting the same error. Is there any other ways to solve this?
  11. spidervenom

    Web.Config Configuation Problem

    I got this error message when I run the Time Tracker Starter Kit application that is availiable in www.asp.net Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and...
  12. spidervenom

    Get Dataset Row Values

    Hi George, Thanks for the help. I got it working just as I expected using rows iteration, the 2nd method is not bad too. Also, thanks for the nice article about datagrid. I agree that everyone should read it, it really helps a lot in understanding datagrid. :-)
  13. spidervenom

    Get Dataset Row Values

    Hi, I have the following stored in a database and display on a datagrid ID Name Subject Detail 1 test_name test This is a test message This is a row that return as a dataset by a SELECT statement. I would like to extract specific values from this row and store it in a...
  14. spidervenom

    How to pass dataset into an Insert Statement?

    How do I pass a dataset returned by a SELECT statement into an INSERT statement in VB.NET?? Thank you very much for the help!
  15. spidervenom

    Problem with Retrieving Row Elements

    I have tired it, it gave me the following errors Compiler Error Message: BC30390: 'System.Data.DataRow.Protected Sub New(builder As System.Data.DataRowBuilder)' is not accessible in this context because it is 'Protected'. What is the proper way of fixing it? Thanks
  16. spidervenom

    Problem with Retrieving Row Elements

    Hi Here is a segment of my Code: . . Dim myID As String myID = Request.QueryString(&quot;ID&quot;) Dim intMyID as Integer = Int32.Parse(myID) Dim getDataSet As Data.DataSet = GetTable() 'Find Row in the DataSet Dim getDataRow As Data.DataRow =...
  17. spidervenom

    Datagrid Data Passing Problem

    First, thank you very much to both of you for the help, I almost get it done. Just one more question. I have the following code when the login button is click: Sub LoginBtn_Click(Sender As Object, E As EventArgs) If Page.IsValid Then Dim userDS As New System.Data.DataSet userDS =...
  18. spidervenom

    Datagrid Data Passing Problem

    Hi, I am pretty new to ASP.NET. I am working on a Message Approval project using VB.NET. I have created two datagrids and some data are stored Waiting for Approval datagrid: Approval ID Date Name Message Approve 1 1/28/2004 testname testmessage Approve 2...
  19. spidervenom

    Triple Pointer in C

    int makeargv(char *s, char *delimiters, char ***argvp) Anyone knows what ***argvp means and what it means if it is **argvp?? Is there an easy way to represent these?? thank you very much!

Part and Inventory Search

Back
Top