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 Mike Lewis 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. jakeir

    Tring to load a image in a picturebox through code

    Hi, I got it to work. Thanks
  2. jakeir

    Tring to load a image in a picturebox through code

    Thanks for the reply I just tryed this, unforuantly it did not work. I do not get an error buit it nothing appears in the Picturebox. Can it be problem because I am using a jpg? do i have to do something else? Is there another way to go. All I am looking to do is diplay a photo on a form, and I...
  3. jakeir

    Tring to load a image in a picturebox through code

    Hi, I am tring to load a picturebox through code and have found a lot of metthods on the net and in books I have, but nothing works. I either just get a picturebox with no image in it (and no errors), or I the things they suggest does not exist. For example, a few places suggested that this...
  4. jakeir

    Fast question about putting your code in another file

    Oh Okay, that explains it. I am just learning this, and while I knew that it was ran on the server I thought that you would see the code. Thank you for your help
  5. jakeir

    Fast question about putting your code in another file

    Hi, I noticed that any site I go to that has an ASP.NET extension (that is .aspx) in it, I cannot find any ASP.NET code in it. So, I did some research and I figured that they are puting the code in another file, like using the CodeBehind technique; where they put the code in another file. But...
  6. jakeir

    Trying to use BCP to export out to a Access table

    Hi, I want to use BCP to export a table out to MS Access. I would use something like this to expot out to a text file. EXEC master..xp_cmdshell'bcp "Select * from test..emp" queryout "c:\dept.txt" -c -T -x' Does anyone know how to do this to Access instead of a text file? Also, I do know...
  7. jakeir

    Trying to get the value that a user selects in a DataGrid

    To Golom: thnaks this came close but it just retuns a number, and I am not sure the number is. But I am looking that if the cell had the name Bill in it, it would pull htis out and I can assigin it to a variable or a textbox. I have done this with a flexgrid but wanted toi do it with a datagrid...
  8. jakeir

    Trying to get the value that a user selects in a DataGrid

    Thanks for your help but unfortuantly there is nothing like that for a datagrid that I can see. I know how to do this for a flex grid but I wanted to see how to do it for a Datagrid. If you or anyone has any further ideas I would appreciat it. Thank you
  9. jakeir

    Trying to get the value that a user selects in a DataGrid

    Hi, I used to do this but have not been able to find it a again, anywhere on the net. I am trying to get the value of a cell that a user selcets in a DataGrid. For example, If I have in cell one IDs and customers Name in cell2 and the person selects cell1 (any row) they will get the value in...
  10. jakeir

    trying too populate a treeview

    Hi, And thanks for our help,I definatly need to make these, but it still is returning nothing. Is there anything else I can do?
  11. jakeir

    trying too populate a treeview

    Hi, I am trying to learn how to populate a tree, I did this same thing back in Vb6, but I am having trouble with the data reader here. I do not think I have it set up right. It gets to the line with Dim dr As SqlClient.SqlDataReader = cmd.ExecuteReader() and just jumps put leaving the tree...
  12. jakeir

    Trying to create an index based on multiple columns

    Hi, I am being asked to do the following: Put an index on ths table when created, SortIDX, = FamID Any MasterID ,Enrollment_Month Basicaly to create an index based on multiple columns. While I have done this on one column I am not sure of the syn-text for multiple columns. Can some one...
  13. jakeir

    VB.Net function in OleDB select command

    Hi, As far as I know you cannot bring the Access query in the Vb app but you can call the Access query from within the vb application and then assign the results to whereever you want; like a grid view. If you do a google search for running an Ms Access query from within a VB.Net application...
  14. jakeir

    Trying to compar all the fields between two tables for all records

    No the problem is that htere is no primary key. and even if there was they want me to look and see is there is a difference in any of the columns. So I do not known, but there should be a way to caompare field by field. Thank you
  15. jakeir

    Trying to compar all the fields between two tables for all records

    Hi, I am going to be given two list of records which I am going to put in two different tables. so one list I am going to put into table A and list 2 I am putting in table B. List 2 is the same data as list 1 except list 1 has Septembers data and list 2 has Octobers data; and both list has about...
  16. jakeir

    Trying to check if a record was inserted into the database

    Tnaks Jason that did it, and thanks for the other advise I really appreciate it. I am new to ASP, so thank you for the additional information.
  17. jakeir

    Trying to check if a record was inserted into the database

    The code that I have here to insert a record works fine, but I tried to put a check in here to see if the record was entered and send back to a label on the page if it was entered or not. but when I run this with the lines that are commented out here, it stops at the line with "Object result =...
  18. jakeir

    Search a datagrid

    Hi, I figured it out. I just made a SQl statement with a where clause to find the Mgrid I wanted and then populated the Datagrid with just that record. I was reall looking for it to go to thoughs record but this works. But I do wnat to thank you for your help and ideas. Than you
  19. jakeir

    Search a datagrid

    The datagrid is in Microsoft data grid found in their Active x tools. I have used it for years, I jsut never had been asked to have away for the user to go right to the record in a serch.
  20. jakeir

    Search a datagrid

    Hi I have a dataGrid(manager ID as one of the fields) and I would like to put a textbox that I can enter a an Mgr ID and when I click the button it I would like the gride to automaticaly go to that record; I am currently using VBA code to fill the datagrid, from a table in SQL Server. I have not...

Part and Inventory Search

Back
Top