Search results for query: *

  1. J

    Retrieve value from datagrid column

    Thanks for the reply again cjard. I initally trie dwhat you had suggested but it complained. So this is what I came up with : Dim t AsInteger t = CInt(TbljobsDataGridView.SelectedRows.Item(0).Cells.Item(0).Value) TextBox1.Text = t.ToString 'only purpose is to test output Now let me see if I...
  2. J

    Working with multiple sql sum results

    Ahhh completely understand now. Was thinking outside the box when I didnt need to :) Thank you very much!
  3. J

    Working with multiple sql sum results

    Hello everyone I am having a bit of a problem with displaying the values returned by a sum query. Heres my situation : SELECT SUM(fldMaterial) AS Expr1, SUM(fldBob) AS Expr2, SUM(fldBrian) AS Expr3 FROM tbljobs I have 3 columns of interest that I just want to sum all value...
  4. J

    Retrieve value from datagrid column

    Hello all, How in the world do I retrieve a value from a specific column within the selected row of a datagrid. So i have a datagrid that display roughly 10 columns of data. Selection mode is set to FullRow "I would really prefer to keep it that way" So how do select a row hit a button and the...
  5. J

    Running External App within project

    Well in all my newbness glory I will give it a shot haha. Both response seem like a reasonable solution. Running with your guys idea how does this sound. Put 4 points on a form "not sure which component to use for the points yet" and then using the move event for the form have the external app...
  6. J

    Running External App within project

    Hello all, Is it possible to run a external application within your .net program. For instance : I want to have a form with various controls on it, then a groupbox/panel or even a blank area that will house a external app. Maybe wordpad or a telnet window. Basically have the application run...
  7. J

    Vs 2003 to 2005 SelectCommand Difference

    Okay that makes sense, so then how you I accomplish a dynamic search? Or is the answer to simply just have a different query for each search? My original thought was to have a combo box which the user can select which "field" they would like to search in and then add the criteria to check. I...
  8. J

    Vs 2003 to 2005 SelectCommand Difference

    Scratches head... I will dig into the parameter thing later tonight. However a quick question: Im trying to pass SELECT fldID, fldType, fldMake, fldModel, fldYear, fldPrice, fldDoors, fldHp, fldEngineType FROM tblVehicles WHERE (? = ?) At the Where (? = ?) I can not pass two...
  9. J

    Programmatically change TableAdapter Query

    Try this thread, I just asked the same question basically. http://www.vbdotnetforums.com/showthread.php?t=14823&goto=newpost
  10. J

    Vs 2003 to 2005 SelectCommand Difference

    Now I dont say this to often but I think I love you. I have spent countless hours trying to figure this out. Thanks much! Edit : But I do have one last little question. Why can I find some documentation on this part of your respone : If you are Using MS Access Select * From tblVehicles Where...
  11. J

    Vs 2003 to 2005 SelectCommand Difference

    Awesome, I dont know why but that just filled in a lot of gaps. Okay so now I can get my TableAdapter to work correctly and apply different queries to it "And actually get this to update on my form ya!!" So my next question is : how do I pass a dynamic query to the table adapter? I now see where...
  12. J

    Vs 2003 to 2005 SelectCommand Difference

    Hello all! First let me get this on the table, I am pretty new to visual studio 2005 and programming in general so please excuse my.... ignorance at times :) Anyway I have a pretty general question: I am working from a school book that was based in visual studio 2003, it is asking us to pass...
Back
Top