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
  • 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 Column

    Hi SHelton i tried that, but it never let user access the DataGrid :-(
  8. sp76

    DataGrid Column

    SORRY FOR THE TYPO, please ignore previous thread. the question is How can i create a DataGrid Column without 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

    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!!!!
  10. 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.
  11. sp76

    Override TextBox property???

    Hi Kris11 i did use Browsable(False) while declaring property, but it still shows up in Property Windows? what am i doing wrong here's my code Imports System.ComponentModel <Browsable(False)> _ Private iMaxLength As Int32 = 10 Public Shadows ReadOnly Property MaxLength() As Integer...
  12. 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???
  13. sp76

    Navigational Question

    what i am trying to achieve here is to stop focus moving into cells of DataGrid. I want my DataGrid to behave same as VB6 DataGrid??? Any clues how to achieve that???
  14. sp76

    Navigational Question

    how can move focus to next control when user tabs into DataGrid control???
  15. 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???
  16. 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...
  17. sp76

    Configuration File

    where is application settings section is that my .config file do u mean? will i be writing the following code in my .config file? <!-- application specific settings --> <appSettings> <add key="ConnectionString" value="server=you server;User ID=sa;pwd=passowrd;database=dbname" />...
  18. sp76

    Configuration File

    How can I use configuration file to provide connection string for my SQL Server database?
  19. 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...
  20. 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???

Part and Inventory Search

Back
Top