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 strongm 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: jakeir
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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 =...
  9. 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...
  10. jakeir

    A problem updaating a field

    Hi, I am tring to update a field in the a sql server 2005 databse. I am useing the code below to update a field in a table, and while it works for every field two of them it will not work. Comes back saying trying to update an un updateable field. There are no trigers or constrants on the table...
  11. jakeir

    quick question about checkboxes

    Hi, I have a check box on a form, as part of some fields that take in user info. Then in my code behind the form inserts the data from the form fields to a SQL server table. Thsi all works fine. The problem is that currently I have to ask the use to clik on the check box to get it to enable I...

Part and Inventory Search

Back
Top