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. CabinFever

    VB 2008 Express and SQL

    RESOLVED: After turning off the Firewall on my PC (running sqlserver) I got a new error 'the SELECT permission was denied...' added my application to the exceptions list. Turned the firewall back on giving the same error...OK . Then went into my created database properties and added 'guest' to...
  2. CabinFever

    DataGridView display starting point

    How can I alter the following? (Let me know if I need to start a new thread for this) '======================= '---Fill DataGridView--- '----------------------- Me.~my~TableAdapter.Fill(Me.~my~DataSet.~my data~) '---Sort by "Print Date"--- Me.~my~BindingSource.Sort = "print date" '---FIND...
  3. CabinFever

    Re-arranging rows in datagridView using mouse

    Still trying to re-arrange rows in my datagridview using mouse. I have found this code online. When ran it deletes the row that I select to move, but does not insert it in the new location. Any advise? Private Sub SkillGrid_DragDrop(ByVal sender As Object, ByVal e As...
  4. CabinFever

    Editing code no longer takes effect in application...VB 2008 express

    debugging...what I thought was a fix really just showed the changes visually in design panel. But, when debugging it runs but none of the buttons work & textbox fields are now blank where they filled in with information from my bound data in datagrid.
  5. CabinFever

    Editing code no longer takes effect in application...VB 2008 express

    Fixed it... I selected everything on design copied it, deleted it then pasted it back...all is well
  6. CabinFever

    Editing code no longer takes effect in application...VB 2008 express

    VB 2008 express: This afternoon (using all day) no matter what changes I make to the code or design, my VB application stays the same when debugged or published. I can even go in and delete EVERY line of code and it still runs (Debugging) and publishes just fine. Bad code will not show as...
  7. CabinFever

    VB 2008 Express and SQL

    Thank you once again for your time...I will dive in once more tomorrow. The database table is bound to my datagridview. Once I built it and installed on remote computer, SQL server installed on it as well(prerequisite). My thinking was that it(sql) was needed to enable my remoteVB app to...
  8. CabinFever

    VB 2008 Express and SQL

    Thanks for responding so quickly! Hope I am not getting out of bounds on this forum by asking more about sql. This is all new to me...I am trying to have 5-6 computers looking at the same data tables in real time (5 min auto-refresh). Each being able to add and update as needed. I have...
  9. CabinFever

    VB 2008 Express and SQL

    All Done Local on computer that has both VB2008 Express and SQL 2008 Express installed on it. If my connection string looks like the following it WORKS. Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\SSPE_InterCOMM.mdf";Integrated...
  10. CabinFever

    DataGridView display starting point

    used this example http://www.tipmaster.com/includes/refinfo.cfm?w=450&h=450
  11. CabinFever

    DataGridView display starting point

    This is how I used it. Thanks again! '======================= '---Fill DataGridView--- '----------------------- Me.~my~TableAdapter.Fill(Me.~my~DataSet.~my data~) '---Sort by "Print Date"--- Me.~my~BindingSource.Sort = "print date" '---FIND first "Print Date" that equals Today--- Dim...
  12. CabinFever

    Re-arranging rows in datagridView using mouse

    a little confused (newbie)...looked at the link...is that a simple select row with mouse and move up or down then drop?
  13. CabinFever

    Re-arranging rows in datagridView using mouse

    A search for GuyJos is not coming up with any posts...
  14. CabinFever

    Re-arranging rows in datagridView using mouse

    VB2008Express I have a DataGridView bound to a database: Me.mydata.Fill(Me.mydataDataSet4.myinfo) What is the best method to move rows up/down using the mouse to manually re-sort. Thanks in advance!
  15. CabinFever

    DataGridView display starting point

    Thanks jebenson, Works perfect!
  16. CabinFever

    DataGridView display starting point

    VB2008Express I have a DataGridView bound to a database which sorts by print date (ex. 09/25/2009). Me.mydata.Fill(Me.mydataDataSet4.myinfo) Me.mydataBindingSource.Sort = "print date" The data base consists of past, current and future jobs. Currently I scroll down through the list of past jobs...

Part and Inventory Search

Back
Top