Jump to content
Xtreme .Net Talk

student

Members
  • Posts

    8
  • Joined

  • Last visited

student's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. thanks Hi, Thanks for the reply. It worked fine for me. Do u know how to pass arguments from one form to another form? I want to pass the variable value from one form to another form. Thanks
  2. Hi, I have customer register form (with ssn,fname,lname,address,apt,city,state,zip,custid) which will store datas in 4 different tables. I am trying to create more controls like Add,Update,Delete. For updating ,i am getting their custid as input and i need to update all tables by using custid. I know that for updating we need to use this command, "Update table customer set name ="fsgf" where custid = ' &idtext.text &'" But i need to update morethan 8-9 columns(ssn,fname...).Do i need to do this update query 9 times or is there anyother way for this? thanks
  3. Hi, I designed a cust form which will connect to Oracle database and add some datas from form to DB.Everything worked fine.When i add a new form or existing form to my project ( i coded in custform to show one of the added form),I got this following errors .. 1.Could not copy termporary files to Output Directory. 2.Projectname.Exe can't be copied to run directory.The process Can't access the file because it is being used by another process. 3.Projectname.pdb can't be copied to run directory.The process Can't access the file because it is being used by another process. Can anyone help me out in this !!! Thanks
  4. Hi I am trying to retrieve data to the textbox from database.But i am not getting. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source=C:\NWIND.mdb" Dim sqlStr As String = "SELECT * FROM customers" Dim conn As OleDbConnection = New OleDbConnection(conStr) Dim da As OleDbDataAdapter = New OleDbDataAdapter(sqlStr, conn) Dim ds As DataSet = New DataSet() da.Fill(ds, "customers") DataGrid1.DataSource = ds.DefaultViewManager TextBox1.Text = ds!name end sub
  5. Hi, I am not a student and i don't have Homework. I am a house wife and i mentioned "Student" name as i am not very confident with .Net and i am in practising some projects. This website is really cool and useful.I learn a lot from this website. thanks
  6. Hi, I am on VB.Net form page but i couldn't find ADO DATASET COMMAND.. Do i need to add any reference? thanks
  7. Hi, I am new to .Net.I am working on VB.NET.I need to connect to database and i need to pass some datas from Form to db and vice versa. I am not confident with the connection,data reader codings,but i know the concept. Can anyone help me out? Is there any links so that i can study? Thanks
×
×
  • Create New...