-
Replied To a Post in Click on a button and show results in HTML Table with javascript
Here are the code. <!DOCTYPE html> <html lang="en"> <body> <div class="content"> <div class="container-fluid page-body-wrapper"> <div class="main-panel"> <div class="content-wrapper"> <div class="row"> <div class="col-md-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h3>Attendance of … -
Replied To a Post in Click on a button and show results in HTML Table with javascript
No error show. -
Replied To a Post in Need Information about Domain Shifting?
GoDaddy does support .pk domain registrations, but it's essential to check with GoDaddy directly or visit their website to confirm the most up-to-date information, as domain registration options and policies … -
Replied To a Post in Click on a button and show results in HTML Table with javascript
As follow your suggestions the script didn't work. Now no result show in Total days and total salary input field. There are no error show in browser console. -
Created Click on a button and show results in HTML Table with javascript
In HTMl from I have a Input field type month. When I select a month and click on search button then total days of selected month show in HTMl table … -
Replied To a Post in Upload Image with php and database
Thanks a lot. The problem was solved. -
Created Upload Image with php and database
I try to upload image in my database. I write these code, but it's not update may database. <?php // Include the database configuration file $msg = ""; // If … -
Replied To a Post in parse error: syntax error, unexpected token "}" in php
I make some change in this code. because I did some mistake. now it works: <?php require_once __DIR__ . '/vendor/autoload.php'; include('conn.php'); $res = mysqli_query($conn, "select * from smash"); if (mysqli_num_rows($res) … -
Created parse error: syntax error, unexpected token "}" in php
I want to make a pdf file in php. I write code like this: <?php require_once __DIR__ . '/vendor/autoload.php'; include('conn.php'); $res = mysqli_query($conn, "select * from smash"); if (mysqli_num_rows($res) > … -
Marked Solved Status for auto generated number in php
I want to auto generate the id number. I write this code. But it's not work. I don't make primary key for id in database. function getData() { $data = … -
Replied To a Post in auto generated number in php
dear ajbest I do as your direction and it's work well. just set as primary key. actually problem was different. I was made the database manually and the database didn't … -
Replied To a Post in auto generated number in php
Now I write: function getData() { $data = array(); $data[0] = $_POST['id']; and then $insert_query = "INSERT INTO `smash`(`id`, `name`, `fname`, `address`, `phone`,`class`,`qualification`,`branch`,`rollno`,`gender`,`birth`) VALUES ('$info[0]','$info[1]','$info[2]','$info[3]','$info[4]','$info[5]','$info[6]','$info[7]','$info[8]','$info[9]','$info[10]')"; but nothing change. -
Created auto generated number in php
I want to auto generate the id number. I write this code. But it's not work. I don't make primary key for id in database. function getData() { $data = … -
Created Run time error 3021
When I want to save data then show this error massage. Run Time error 3021 Either BOF or EOF is true, or the current record has been deleted. Requested operation … -
Replied To a Post in "Run-time Error 430 - Class Does Not Support Automation"
I make the setup file by package & development wizard. Then I install it another pc (use setup file). When I run the exe file then show the error massage. … -
Marked Solved Status for Run Time error 380
When I click in listview control to send data in specific textbox then show the error. run time error 380 Invalid property value. I write this code: Private Sub LVEmp_ItemClick(ByVal … -
Marked Solved Status for Run Time error 380
When I click in listview control to send data in specific textbox then show the error. run time error 380 Invalid property value. I write this code: Private Sub LVEmp_ItemClick(ByVal … -
Replied To a Post in Run Time error 380
now I declare another one like: Private Const mlngCUST_Date_IDX As Long = 2 -
Created "Run-time Error 430 - Class Does Not Support Automation"
I make a setup file. I install it in another computer. When I run the application then show this error massage. -
Replied To a Post in Run Time error 380
the problem was solved. but now problem is: both text box show same data. -
Revoked Solved Status for Run Time error 380
When I click in listview control to send data in specific textbox then show the error. run time error 380 Invalid property value. I write this code: Private Sub LVEmp_ItemClick(ByVal … -
Marked Solved Status for Run Time error 380
When I click in listview control to send data in specific textbox then show the error. run time error 380 Invalid property value. I write this code: Private Sub LVEmp_ItemClick(ByVal … -
Replied To a Post in Run Time error 380
I forget to declare ........ Private Const mlngCUST_LAST_IDX As Long = 1 -
Created Run Time error 380
When I click in listview control to send data in specific textbox then show the error. run time error 380 Invalid property value. I write this code: Private Sub LVEmp_ItemClick(ByVal … -
Replied To a Post in Delete checked item from listview
In database it was numeric. so what problem? -
Created Delete checked item from listview
Delete checked item (one or more) from listview I write this code. Dim x As Long For x = LVEmp.ListItems.Count To 1 Step -1 If LVEmp.ListItems(x).Checked Then con.Execute "DELETE FROM … -
Marked Solved Status for Can't save data
for save I write this........ With rs .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic .AddNew !SrNo = cmbbillno '!SrNo = GetNewNo("Dad") !DadItems = cmbIName !DadSize = cmbISize !Dad = … -
Replied To a Post in Can't save data
I write this and solved it With rs1 sSQL = "Select * From duereport Where partyname ='" & cmbPartyName.Text & "'" rs1.Open sSQL, con, adOpenDynamic, adLockOptimistic Do While rs1.EOF = … -
Replied To a Post in Can't save data
Now I write this With rs1 sSQL = "Select * From duereport Where partyname ='" & cmbPartyName.Text & "'" rs1.Open sSQL, con, adOpenDynamic, adLockOptimistic If rs1.EOF = False Then rs1.Fields("due") … -
Revoked Solved Status for Can't save data
for save I write this........ With rs .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic .AddNew !SrNo = cmbbillno '!SrNo = GetNewNo("Dad") !DadItems = cmbIName !DadSize = cmbISize !Dad = … -
Replied To a Post in Can't save data
any body can help me. -
Marked Solved Status for Can't save data
for save I write this........ With rs .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic .AddNew !SrNo = cmbbillno '!SrNo = GetNewNo("Dad") !DadItems = cmbIName !DadSize = cmbISize !Dad = … -
Marked Solved Status for Can't save data
for save I write this........ With rs .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic .AddNew !SrNo = cmbbillno '!SrNo = GetNewNo("Dad") !DadItems = cmbIName !DadSize = cmbISize !Dad = … -
Replied To a Post in Can't save data
just forget all thing.... Now I write this for update and it works. With rs1 .Open "Select * from duereport where partyname = '" & Me.cmbPartyName & "'", con, adOpenKeyset, … -
Replied To a Post in Can't save data
yes. and if the record not found then entry as a new record. -
Replied To a Post in Can't save data
Sorry it only create new data........ not update -
Replied To a Post in Can't save data
now I write this With rs1 .Open "Select * from due", con, adOpenKeyset, adLockOptimistic If .Fields("partyname") = " & Me.cmbPartyName & " Then .Fields("due") = rs1.Fields("due") + Val(Me.txtdue) Else .AddNew … -
Replied To a Post in Can't save data
not work. I need: when I enter data then the data save in both table and if the data aldready in due table then it will update it. -
Created Can't save data
for save I write this........ With rs .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic .AddNew !SrNo = cmbbillno '!SrNo = GetNewNo("Dad") !DadItems = cmbIName !DadSize = cmbISize !Dad = …
The End.