Search results for query: *

  1. C

    How to MS SQL Server Connection ?

    Dim MAMULCMD As New SqlDataAdapter("select * from TBLSTSABIT", sqlConnection) Dim MAMUL as new Datatable MAMULCMD .fill(MAMUL) datagrid.DataSource=MAMUL
  2. C

    Error while Installing VS 2012 Ultimate

    You maybe hav a problem with your software... redownload your VS2012
  3. C

    Question Checking if exist in access db problem

    try this one maybe this will work...
  4. C

    Question Calculator: don't know how to do it

    try mine this works well ] Dim FirstNumber As Double Dim SecondNumber As Double Dim Process As String Dim Answer As Double Private Sub ZeroButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ZeroButton.Click Textbox1.Text = Textbox1.Text &...
  5. C

    Question Xampp Connection String From Remote PC

    Hello there... anyone who could help me .. i am using xampp as my server database.. my problem is how to connect to my xampp database from other network pc.. i tried this connection string " server=serverip; user id=root; username=myusername; password=mypass; database=mydb" but it doesnt...
  6. C

    Question ComboBox to populate texboxes!

    many of thanks to u... i also approach my teacher and i understand few thngs.. i able to populate the texboxes using this ... Try Dim sql1 As String sql1 = "SELECT * FROM PaymentTable WHERE loantype= '" & Me.LoanTypeCBO.Text & "'" oledbAdapter = New...
  7. C

    Question ComboBox to populate texboxes!

    hello jmcilhinney tanx for the reply.... i tried this code Try Dim CBO As New OleDb.OleDbDataAdapter("SELECT * FROM Member_Loans WHERE ActgNumber=" & ActgNotxt.Text, conn) Dim CBoDT As New DataTable CBO.Fill(CBoDT) With LoanTypeCBO...
  8. C

    Question ComboBox to populate texboxes!

    Hello hope anyone could help me., im just a beginner.. i have this table called Member_Loans and the corresponding fields are "ActgNumber", "LoanType", "LoanAmount" nd so on. a person having two different loans called "appliance loan" and "bonus loan" with same "actgnumber" on same table...
Back
Top