abu taher 34 Practically a Posting Shark

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 <?php echo date('Y-m-d'); ?></h3>
                                    <br>

                                    <form action="" method="post" class="form-horizontal col-md-6 col-md-offset-3">
                                        <div class="form-group">
                                            <strong>Select Month</strong>
                                            <?php
                                            // Check if the month is set in $_POST
                                            $selectedMonth = isset($_POST['whichmonth']) ? $_POST['whichmonth'] : '';
                                            ?>
                                            <input id="inputmonth" type="month" name="whichmonth" required="true" class="form-control" value="<?php echo $selectedMonth; ?>">
                                        </div>

                                        <div class="col-xs-6">
                                            <button type="submit" class="btn btn-danger col-md-2 col-md-offset-5" style="border-radius:0%" name="search">Search</button>
                                            <input type="submit" class="btn btn-primary col-md-2 col-md-offset-10" value="Save!" name="save" />
                                        </div>

                                        <table class="table table-stripped">
                                            <thead>
                                                <tr>
                                                    <th scope="col">Id. No.</th>
                                                    <th scope="col">Name</th>
                                                    <th scope="col">Designation</th>
                                                    <th scope="col">Salary</th>
                                                    <th scope="col">Present</th>
                                                    <th scope="col">PSalary</th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <?php
                                                //  if (isset($_POST['search'])) {
                                                $con = mysqli_connect("localhost", "root", "", "madrasadb");

                                                // Prepare the SELECT statement
                                                $all_query = mysqli_prepare($con, "SELECT id, name, designation, salary FROM jack ORDER BY id ASC");

                                                // Execute the prepared statement
                                                mysqli_stmt_execute($all_query);

                                                // Bind the result variables
                                                mysqli_stmt_bind_result($all_query, $id, $name, $designation, $salary);

                                                while (mysqli_stmt_fetch($all_query)) {
                                                ?>
                                                    <tr>
                                                        <td><?php echo $id; ?> <input type="hidden" name="stat_id[]" value="<?php echo $id; ?>"></td>
                                                        <td><?php echo $name; ?><input type="hidden" name="stat_name[]" value="<?php echo $name; ?>"></td>
                                                        <td><?php echo $designation; ?> <input type="hidden" name="stat_fname[]" value="<?php echo $designation; ?>"></td>
                                                        <td><?php echo $salary; ?> <input type="hidden" name="salary[]" value="<?php echo $salary; ?>"></td>
                                                        <td>
                                                            <input type="number" name="st_status[]" style="width:70px" max="31" value="<?php echo isset($_POST['whichmonth']) ? date('t', strtotime($_POST['whichmonth'])) : ''; ?>" onchange="calculateTotalSalary(this, <?php echo $id; ?>)">
                                                        </td>
                                                        <td>
                                                            <input type="number" id="totalSalary<?php echo $id; ?>" name="total_salary[]" style="width:70px" readonly>
                                                        </td>
                                                    </tr>
                                                <?php
                                                }

                                                mysqli_stmt_close($all_query);
                                                mysqli_close($con);

                                                ?>
                                            </tbody>

                                        </table>
                                    </form> …
abu taher 34 Practically a Posting Shark

No error show.

abu taher 34 Practically a Posting Shark

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 can change over time.

If you already have a .pk domain registered with another registrar and want to transfer it to GoDaddy, the process is generally known as domain transfer. Domain transfers typically involve unlocking the domain at the current registrar, obtaining an authorization code (also known as an EPP code), and initiating the transfer process with GoDaddy. During the transfer process, you might be required to pay a transfer fee, and the domain's registration period may be extended for an additional year.

Regarding hosting, GoDaddy is primarily known as a domain registrar and web hosting provider. They offer various hosting options, including shared hosting, VPS hosting, and dedicated hosting. If you are considering moving your website to GoDaddy's hosting service, you can sign up for a hosting plan that suits your website's needs and then migrate your website's files and databases to the new hosting account. You can do this manually, use migration tools, or seek assistance from GoDaddy's support team.

Before proceeding with any domain transfer or hosting service, it's essential to review the terms, features, and pricing of the service you are interested in, as well as any customer reviews or feedback to ensure it aligns with your requirements and expectations.

As domain-related services and hosting options can change over time, I recommend checking GoDaddy's official website …

abu taher 34 Practically a Posting Shark

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.

AndreRet commented: Did it came up with errors?, If so what error on which line? +15
abu taher 34 Practically a Posting Shark

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 with backend data. This table contain salary. I want the salary is calculate with Total days. I write a script. But When I click on search button the calculated salary doesn't show in input box in HTML table. When I change the value of total days from input field then all salary show in table.
I want It will show when I click on search button and if I need to modify days then it will also change. But I can't find out the problem is where?

<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

include('conn.php');
include('navbar.php');

$error_msg = '';
$att_msg = '';

try {
    // ...

    if (isset($_POST['save'])) {
        $course = $_POST['whichmonth'];

        $con = mysqli_connect("localhost", "root", "", "madrasadb");

        // Prepare the SQL statement
        $stat = mysqli_prepare($con, "INSERT INTO stdattendence (id, stdname, stdfname, class, present, month) VALUES (?, ?, ?, ?, ?, ?)");

        // Bind the parameters
        mysqli_stmt_bind_param($stat, "ssssss", $stat_id, $stat_name, $stat_fname, $st_status, $course);

        foreach ($_POST['st_status'] as $i => $st_status) {
            $stat_id = $_POST['stat_id'][$i];
            $stat_name = $_POST['stat_name'][$i];
            $stat_fname = $_POST['stat_fname'][$i];

            // Execute the prepared statement
            mysqli_stmt_execute($stat);
        }

        $att_msg = "Attendance Recorded.";

        mysqli_stmt_close($stat);
        mysqli_close($con);
    }

    // ...

} catch (Exception $e) {
    $error_msg = $e->getMessage();
}
?>


<!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 …
AndreRet commented: Glad to see you on Daniweb again! +15
abu taher 34 Practically a Posting Shark

Thanks a lot. The problem was solved.

abu taher 34 Practically a Posting Shark

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 upload button is clicked ...
if (isset($_POST['upload'])) {

    $filename = $_FILES["uploadfile"]["name"];
    $tempname = $_FILES["uploadfile"]["tmp_name"];
    $folder = "./image/" . $filename;

    $db = mysqli_connect("localhost", "root", "", "madrasadb");

    // Get all the submitted data from the form
    $sql = "INSERT INTO `smash` (`stuimage`) VALUES ('$filename')";

    // Execute query
    mysqli_query($db, $sql);

    // Now let's move the uploaded image into the folder: image
    if (move_uploaded_file($tempname, $folder)) {
        echo "<img src=" . $folder . " height=200 width=300 />";
    } else {
        echo "<h3> Failed to upload image!</h3>";
    }
}
?>



<!DOCTYPE html>
<html>

<head>
    <title>Image Upload</title>
</head>

<body>
    <div id="content">
        <form method="POST" action="" enctype="multipart/form-data">
            Select Image File to Upload:
            <input type="file" name="file">
            <input type="submit" name="submit" value="Upload">
        </form>
    </div>

</body>

</html>
abu taher 34 Practically a Posting Shark

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) > 0) {
  $html = '<table>';
  $html .= '<tr><td>ID</td><td>Name</td><td>FatherName</td><td>Address</td><td>Phone</td><td>Class</td><td>Qualification</td><td>Branch</td><td>rollno</td></tr>';
  while ($row = mysqli_fetch_assoc($res)) {
    $html .= '<tr><td>' . $row['id'] . '</td><td>' . $row['name'] . '</td><td>' . $row['fname'] . '</td>
        <td>' . $row['address'] . '</td><td>' . $row['phone'] . '</td><td>' . $row['class'] . '</td>
        <td>' . $row['qualification'] . '</td><td>' . $row['branch'] . '</td>
        <td>' . $row['rollno'] . '</td><td>' . $row['gender'] . '</td>
        <td>' . $row['birth'] . '</td></tr>';
  }
  $html .= '</table>';
} else {
  $html = "Data not found";
};

$mpdf = new \Mpdf\Mpdf();
$mpdf->WriteHTML($html);
$file = time() . '.pdf';
$mpdf->output($file, 'D');
abu taher 34 Practically a Posting Shark

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) > 0) {
    $html = '<table>';
    $html = '<tr><td>ID</td><td>Name</td><td>FatherName</td><td>Address</td><td>Phone</td><td>Class</td><td>Qualification</td><td>Branch</td><td>rollno</td></tr>';
    while ($row = mysqli_fetch_assoc($res)) {
        $html .= '<tr><td>' . $row['id'] . '</td><td>' . $row['name'] . '</td><td>' . $row['fname'] . '</td>
        <td>' . $row['address'] . '</td><td>' . $row['phone'] . '</td><td>' . $row['class'] . '</td>
        <td>' . $row['qualification'] . '</td><td>' . $row['branch'] . '</td>
        <td>' . $row['rollno'] . '</td><td>' . $row['gender'] . '</td>
        <td>' . $row['birth'] . '</td></tr>'
    }
    $html= '</table>';
  {
    $html = "Data not found"
  }};

$mpdf = new mPDF();
$mpdf->WriteHTML($html);
$file = time() . '.pdf';
$mpdf->output($file, 'D');

But a error show: Parse error: syntax error, unexpected token "}" in C:\xampp\htdocs\Management\printstudentdata.php on line 15

I use PHp 8.

abu taher 34 Practically a Posting Shark

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 set the primary key. But now this time I make it with code and it's work well.
I write code to create table like this:

CREATE TABLE `smash` (
  `id` INT(255) NOT NULL AUTO_INCREMENT,
  `fname` VARCHAR(255) NOT NULL,
  `address` VARCHAR(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4_general_ci;
abu taher 34 Practically a Posting Shark

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.

abu taher 34 Practically a Posting Shark

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 = array();

  $data[1] = $_POST['name'];
  $data[2] = $_POST['fname'];
  $data[3] = $_POST['address'];
  $data[4] = $_POST['phone'];
  $data[5] = $_POST['class'];
  $data[6] = $_POST['qualification'];
  $data[7] = $_POST['branch'];
  $data[8] = $_POST['rollno'];
  $data[9] = $_POST['gender'];
  $data[10] = $_POST['birth'];
  return $data;
}

//insert
if (isset($_POST['insert'])) {
  $info = getData();
  $insert_query = "INSERT INTO `smash`(`name`, `fname`, `address`, `phone`,`class`,`qualification`,`branch`,`rollno`,`gender`,`birth`) VALUES ('$info[1]','$info[2]','$info[3]','$info[4]','$info[5]','$info[6]','$info[7]','$info[8]','$info[9]','$info[10]')";
  try {
    $insert_result = mysqli_query($conn, $insert_query);
    if ($insert_result) {
      if (mysqli_affected_rows($conn) > 0) {
        echo ("data inserted successfully");
      } else {
        echo ("data are not inserted");
      }
    }
  } catch (Exception $ex) {
    echo ("error inserted" . $ex->getMessage());
  }
}
abu taher 34 Practically a Posting Shark

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 requires a current record.

 With rs1
rs1.Open "Select * from debtordue where debtorname = '" & Me.cmbreceiver & "'", con, adOpenKeyset, adLockOptimistic
        .Fields("due") = rs1.Fields("due") - Val(Me.txtamount)
        !debtorname = cmbreceiver
        !payment = txtamount
        !By = cmbRcvIBy
        !Date = RcvDate
        .Update
        .Close
        MsgBox "Information is Saved", vbInformation, Me.Caption
         End With
abu taher 34 Practically a Posting Shark

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.

its a database application. Use Ms Access and vb 6.

abu taher 34 Practically a Posting Shark

now I declare another one like:
Private Const mlngCUST_Date_IDX As Long = 2

abu taher 34 Practically a Posting Shark

I make a setup file. I install it in another computer. When I run the application then show this error massage.

abu taher 34 Practically a Posting Shark

the problem was solved. but now problem is: both text box show same data.

abu taher 34 Practically a Posting Shark

I forget to declare ........

Private Const mlngCUST_LAST_IDX As Long = 1

abu taher 34 Practically a Posting Shark

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 Item As MSComctlLib.ListItem)
With Item
       Me.txtSrNo = .Text
        Me.txtamount.Text = .SubItems(mlngCUST_LAST_IDX)
       Me.txtdate.Text = .SubItems(mlngCUST_LAST_IDX)

           End With
End Sub
abu taher 34 Practically a Posting Shark

In database it was numeric. so what problem?

abu taher 34 Practically a Posting Shark

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 stock WHERE [SrNo] = '" & LVEmp.ListItems(x).SubItems(1) & "'"

                LVEmp.ListItems.Remove x
            End If
        Next

        con.Close
        Set con = Nothing

but it show error massage:
run time error -2147217913 (80040e07)
data type mismatch in criteria expression.

abu taher 34 Practically a Posting Shark

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 = False
rs1.Fields("due").Value = rs1.Fields("due").Value + Val(Me.txtdue)
rs1.Update
rs1.MoveNext
Loop
If rs1.EOF = True And rs1.BOF = True Then
rs1.AddNew
rs1.Fields("partyname").Value = cmbPartyName.Text
rs1.Fields("due").Value = txtdue.Text
rs1.Update
End If
   End With
abu taher 34 Practically a Posting Shark

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") = rs1.Fields("due") + Val(Me.txtdue)
rs1.Update
End If

If rs1.EOF = True Then
rs1.Fields("partyname") = cmbPartyName.Text
rs1.Fields("due") = cmbPartyName.Text
End If
   End With

In new record: show this massage: run time error 3201. "Either EOF or BOF is true or the current record has been deleted....." and selected the line: rs1.Fields("partyname") = cmbPartyName.Text
I use movenext but not solve

abu taher 34 Practically a Posting Shark

any body can help me.

abu taher 34 Practically a Posting Shark

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, adLockOptimistic
.Fields("due") = rs1.Fields("due") + Val(Me.txtdue)
.Update
.Close
End With

Now tell me how I can input new record if the record not entry before.

abu taher 34 Practically a Posting Shark

yes. and if the record not found then entry as a new record.

abu taher 34 Practically a Posting Shark

Sorry it only create new data........ not update

abu taher 34 Practically a Posting Shark

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
        !partyname = cmbPartyName
        !due = txtdue.Text
        End If
         .Update
        .Close

         End With

it save new data. but a new problem: duplicate data was not update. it create new data same name.

abu taher 34 Practically a Posting Shark

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.

abu taher 34 Practically a Posting Shark

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 = txtDadIQty
        !Dadby = cmbOrTkBy.Text
        !DadDate = DadDate
        !deliverydate = deldate
        !partyname = cmbPartyName
        !amount = txtamount.Text
        !due = txtdue.Text
        !Receive = txtreceive.Text
        .Update
        .Close
        MsgBox "Information is Saved", vbInformation, Me.Caption
    End With

no problem to save data. but I want to save due in dad table and due table. so I write this code...

With rs
            .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic
            .AddNew
            !SrNo = cmbbillno
            '!SrNo = GetNewNo("Dad")
            !DadItems = cmbIName
            !DadSize = cmbISize
            !Dad = txtDadIQty
            !Dadby = cmbOrTkBy.Text
            !DadDate = DadDate
            !deliverydate = deldate
            !partyname = cmbPartyName
            !amount = txtamount.Text
            !due = txtdue.Text
            !Receive = txtreceive.Text
            .Update
            .Close
            MsgBox "Information is Saved", vbInformation, Me.Caption
        End With



         With rs1
        .Open "Select * from due where partyname = '" & Me.cmbPartyName & "'", con, adOpenKeyset, adLockOptimistic

        If .Fields("due") <= -1 Then
        .AddNew
        !due = txtdue.Text
        End If
        .Fields("due") = rs1.Fields("due") + Val(Me.txtdue)
        .Update
        .Close
         End With

problem is: in dad table it was saved. but in due table it wasn't create new data. it only update the exiting data. so what i need to do for save new data in due table?

e.g. long time after so i forget many thing.

abu taher 34 Practically a Posting Shark

I was recoverd it by a software. but it says corrupt. can anybody tell me how get data from a corrupt access database file?

abu taher 34 Practically a Posting Shark

I paste a file on the old file. like: overwrite. It's a mistake. So now I want to recover the old file. I mean now I want the old file. How I get it?

abu taher 34 Practically a Posting Shark

I think this can help you.
Click Here

abu taher 34 Practically a Posting Shark

I thing nothing to make extra. just make exe file. do you know how to make exe. file? make it and run it another pc. one thing, you need the support file in that pc. so its better if you make setup file. setup it and create the sortcut in this pc of your pc's exe.

abu taher 34 Practically a Posting Shark

is it possible? the program count how many page print per day?

abu taher 34 Practically a Posting Shark

ya i did it.

abu taher 34 Practically a Posting Shark

in data environment i write

Select * from item where date and date between DTFr.value and DTTo.vlaue

In button I write

Load DataEnvironment1
    With DataEnvironment1
    If .rscmborder.State <> 0 Then .rscmborder.Close
     .cmborder Format(DTFr.Value, "dd/mm/yyyy"), Format(DTTo.Value, "dd/mm/yyyy")
     End With
     drorder.Show

but the report show all item from 1st date. it not show the range of date. (What I selected)

abu taher 34 Practically a Posting Shark

it show a error massage:
run time error 5
Invalid proceduer call or argument.

abu taher 34 Practically a Posting Shark

sorry mustafa it not work as my requeirment.

abu taher 34 Practically a Posting Shark

not like this. supoose.... in FrmMain I click a button show FrmItem (another form). It was show. When I minmize FrmMain it was minimized with FrmItem. When I maximized FrmMain FrmItem not show in front. It show In back of FrmMain. I want it will show on front of FrmMain.

abu taher 34 Practically a Posting Shark

but when it normal then form1 appear. I want otherForm will appear. Now it appear in the back of Form1.

abu taher 34 Practically a Posting Shark

all thing is ok. I unplug all and check it. when I press the power button windows start normally. it scan drive D. When finished the scan it was hang. no welcome screen or user screen appear. Whant can I do now?

abu taher 34 Practically a Posting Shark

I find out the problem. It happend when I enter same PartyName. Then it happend. no id change. it only update the due amount. I try to solved it. I think I can.
You guys also welcom.

abu taher 34 Practically a Posting Shark
Private Sub cmdsave_Click()
If cmbIName = "" Then
MsgBox "Plese Select Item Name.", vbCritical, Me.Caption
cmbIName.SetFocus
Exit Sub
End If

If cmbISize = "" Then
MsgBox "Please Select Item Size ", vbCritical, Me.Caption
cmbISize.SetFocus
Exit Sub
End If

If txtDadIQty = "" Then
MsgBox "Please Enter Quantity ", vbCritical, Me.Caption
txtDadIQty.SetFocus
Exit Sub
End If

If cmbOrTkBy = "" Then
MsgBox "Please Select Order Taken Name ", vbCritical, Me.Caption
cmbOrTkBy.SetFocus
Exit Sub
End If

CheckData "Dad", "PartyName", cmbPartyName.Text
If HH = "NOT OK" Then

            With rs
    .Open "Select * from Dad", con, adOpenDynamic, adLockOptimistic
    .AddNew
    !SrNo = GetNewNo("Dad")
    !DadItems = UCase(cmbIName)
    !DadSize = UCase(cmbISize)
    !Dad = txtDadIQty
    !Dadby = UCase(cmbOrTkBy)
    !DadDate = DadDate
    !PartyName = UCase(cmbPartyName)
    !amount = txtamount.Text
    !due = txtdue.Text
    !Receive = txtreceive.Text
    !profit = txtprofit.Text
    .Update
    .Close
    MsgBox "Information is Saved", vbInformation, Me.Caption
End With

Else

With rs
rs.Open "Select * from Dad where PartyName = '" & Me.cmbPartyName & "'", con, adOpenKeyset, adLockOptimistic

    .Fields("due") = rs.Fields("due") + Val(Me.txtdue)
.Update
.Close
    MsgBox "Information is Saved", vbInformation, Me.Caption
End With
End If


Set rs = Nothing
Call ClearAll
End Sub

In module

Public Function CheckData(ByVal TName As String, TField As String, H As String)
On Error Resume Next
Dim cnh As New ADODB.Connection
Dim rsh As New ADODB.Recordset

cnh.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\Database\InvData.mdb;Persist Security Info=False"
cnh.Open
rsh.Open "Select " & TField & " From " & TName & " Where " & TName & "." & TField & " ='" & UCase(H) & "'", …
abu taher 34 Practically a Posting Shark

all thing is ok. all ready 11 item was saved. in sr. no. 12 when I input all necessary thing and click in save button massage was show " save data". no error massage show. but the data is not save in database. I don't know why? So I need help please.

abu taher 34 Practically a Posting Shark

all connection is ok. but when I want to play curseder game (in two pc connection)in multiplayer function the both pc are not connect. I mean One pc select host and the another pc select join but no ip show. Now what can I do for it.

abu taher 34 Practically a Posting Shark

yesterday I press the power button 6/7 times. then the pc start. it occurred many time. but now this time it not start. I check all connection and all parts. all things are ok. So what I need to do now?

abu taher 34 Practically a Posting Shark

you can check it. I think you can get idea form it.

abu taher 34 Practically a Posting Shark

dear you post in wrong forum. you need to post in vb.net .
however.............. you can see this & this. I think it can help you.

abu taher 34 Practically a Posting Shark

then please mark it solved.....