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 TouchToneTommy 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: *

  • Users: sp76
  • Content: Threads
  • Order by date
  1. sp76

    DataGrid Alignment Question?

    How can I align my DataGrid’s column header to center and data in that column to left.
  2. sp76

    Refreshing DataSet

    Is there any method in VB.NET equivalent to VB6 recorset’s ReQuery method. How can i refresh DataSet???
  3. sp76

    Select Case

    How can achieve the following with Select Case Statement. 'Validate data. If txtFirstName.Text = "" Then MessageBox.Show("Please provide First Name", "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation) txtFirstName.Focus() Exit Sub...
  4. sp76

    Converting variables

    how can i convert the value in my textbox to SQL Server Decimal DataType before passing it to a stored procedure.
  5. sp76

    Converting to SQL Server Money DataType

    how can i convert a variable to SQL Server Money DataType
  6. sp76

    DataGrid Alignment Question?

    How can I align my DataGrid’s column header to center and data in that column to left.
  7. sp76

    DataGrid Hell Please HELP!!!!!

    is there anyway i can make my DataGrid behave same as VB6 DataGrid. i.e. highligthing rows with Up and Down arrow keys, highligthing row with mouse click. i don't want cursor to tab into DataGrid cells. Please help!!!!
  8. sp76

    DataGrid Column

    How can i create a DataGrid Column with TextBox in it. Is there a way to get rid of underlying TextBox in DataGridTextBoxColumn. What i am trying to achieve here is: to prevent cursor from tabbing into cells of the DataGrid.
  9. sp76

    Connection String Question???

    I am developing an application using VB.NET and SQL Server 2000. SQL Server is locally installed on my machine. My application is creating a connection even though if I omit Server and just provide Password and User Id, why is it so? Does it defaults to local server???
  10. sp76

    Navigational Question

    how can move focus to next control when user tabs into DataGrid control???
  11. sp76

    Connection String Question

    I am developing an application using VB.NET and SQL Server 2000. SQL Server is locally installed on my machine. My application is creating a connection even though if I omit Server and just provide Password and User Id, why is it so? Does it defaults to local server???
  12. sp76

    DataGrid TableStyle

    Question 1 I am binding a DataGrid to DataSource as follows: DA = New SqlDataAdapter("SELECT * FROM Employees", myConn) DA.Fill(DS, "Employees") myDataGrid1.SetDataBinding(DS, "Employees") Does a TableStyles gets created in this case? Question 2 How to ascertain how many TableStyle exists...
  13. sp76

    Configuration File

    How can I use configuration file to provide connection string for my SQL Server database?
  14. sp76

    Tab Control Problem???

    This might sound funny, but this is what is happening: I have a form with a tab control (tabMain) and 4 tabpages (tpage1, tpage2, tpage3, tpage4) on it. Further on the fourth tabpage (tpage4) i have another tab control (tabSub) with 4 tabpages (tsubpage1, tsubpage2, tsubpage3, tsubpage4) on it...
  15. sp76

    InvalidOperstionException ????

    I have a form with tab control on it. i am getting the following error when ever i close the form in design mode: InvalidOperstionException. Cannot call invoke or InvokeAsync on a control until the window handle has been created. What does it means and why is it occurring???
  16. sp76

    "InvalidOperstionException" Error ???

    i am getting this error whenever i close my project. InvalidOperstionException. Cannot call invoke or InvokeAsync on a control until the window handle has been created. what does it means????
  17. sp76

    Override TextBox property???

    am creating a custom TextBox control. I want to restrict the user from changing the value of Maxlength property. Is there any way I can override the Maxlength property and make it ReadOnly. Or is there any other way to do it?
  18. sp76

    String Manipulation

    How can i find how many times a character appears in a string. for eg. i want to find how many times "a" occures in "Visual Basic"
  19. sp76

    Is there anyone who can help me with DataGrid Problem

    I am having this problem since long, but no one seems to have worked out any solution for it. I tried to scour through many articles but haven't got an answer yet. PLease help me with this. I have written the following code to highlight the row when a user press up-down arrow key. Private Sub...
  20. sp76

    Select Case problem

    How can i achieve the below, using Select Case statement Private Sub optInterestOnly_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles optPandI.CheckedChanged, optInterestOnly.CheckedChanged If optPandI.Checked = True Then 'Do Something...

Part and Inventory Search

Back
Top