Hi,
This project and its design looks very nice.
Many many thanks to you for creating this kind of project which helps us very much for learning.
But I am unable to enter OPD Management. A error message coming. Please see attachment.

Would you please upload a fresh and full project.

Waiting for this to see.

2

(2 replies, posted in General)

Thanks a lot.

3

(2 replies, posted in General)

Hi,
I need your help.
Please tell me how to save record into multiple table from a button click.

Dear Mr. JB,

Many many thanks to you.

Regards
Mirza

Dear Mr. JB,

Thanks a lot for your answer.
Would you please tell me in more details.


Regards
Mirza

Hi, Bellow script is for PHP.
I want to create a script like this by My Visual Database which I want to apply for my project.
Please help me...



// this is for HDD authentication//

function GetVolumeLabel($drive) {
if (preg_match('#Volume Serial Number is (.*)\n#i', shell_exec('dir '.$drive.':'), $m)) {
$volname = ' ('.$m[1].')';
} else {
$volname = '';
}
return $volname;
}
$serial = str_replace("(","",str_replace(")","",GetVolumeLabel("c")));

echo "HDD No is:" .$serial. "<br>";

// Condition
$MyHDD = " BC3A-9B56";
if ($serial == $MyHDD) {
    //echo 'true';
} else {
     header('location: ---.com');
                exit();
}
// Authentication for usage date

$Lic_day = 30;
$start  = date_create('2021-04-26');
$end     = date_create(); // Current time and date
$diff      = date_diff( $start, $end );
/*
echo 'The difference is ';
echo  $diff->y . ' years, ';
echo  $diff->m . ' months, ';
echo  $diff->d . ' days, ';
echo  $diff->h . ' hours, ';
echo  $diff->i . ' minutes, ';
echo  $diff->s . ' seconds';
*/
$usage = $diff->days;
//echo 'The difference in days : ' . $diff->days;
if ($Lic_day >= $usage) {
    echo 'Your License is Valid <br>';
} else {
     header('location: ---.com');
                exit();
}
//echo "Today is:" .$end. "<br>";
echo "License set for:" .$start. "<br>";
echo "Date Limit:" .$Lic_day. "<br>";
echo "Used Day:" .$usage. "<br>";

?>

7

(1 replies, posted in General)

Hi,
I want to change database structure by SQLite Expert Professional.
I want to change PK and foreign key. Because Database design is very limited in My Visual Database apps.

Always its taking id as a primary and foreign key.

But If i change it by using SQLite Expert Professional, nothing changes in My Visual Database structures.

Would you please help me regarding this issue how can I change database attributes.

8

(8 replies, posted in FAQ)

Hi,
Is your program is working fine now?

Can you share with me the project codes and solutions?