• Home
    • Payments
  • Tools
    • Color Chart
  • Software
    • Windows tricks
      • Windows 11 Speed Up Tricks
      • Windows Command Prompt CMD
    • Android Phone
      • Android – Dangerous Settings to Turn Off
    • Projects
      • Copy Files
      • Php Autoscript
      • Web Tools
  • Notes
    • How to Code
    • System Tips
  • News
    • Comparing SSD to HDD

How to Code

ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software |

ABCDEFGHIJKLMNOPQRSTUVWXYZ
ON
PRT
OFF

<- Look Inside Data
Conditions:
Order:
1|2|3|4|5|6|7|8|
50 Language Operation Title
Keywords
Application
Code Languageid
Show Html
Show Iframe
Make Public
Viewed
Viewed Date
Microsoft Excel Formatting Cleaning Table Row Cells Using Vba
clean clear cells table
Crop Production Xls
Sub ClearRowBasedOnValue()
Dim tbl As ListObject
Dim i As Long

' Set the table object (Replace "Table1" with your actual table name)
Set tbl = ActiveSheet.ListObjects("Table1")

' Loop through the rows from bottom to top
For i = tbl.ListRows.Count To 1 Step -1
' Check if the cell in a specific column (e.g., "Status") matches your criteria
If tbl.ListRows(i).Range(1, tbl.ListColumns("Status").Index).Value = "Clear" Then

' Clear specific cells in that row by column name
tbl.ListRows(i).Range(1, tbl.ListColumns("Data1").Index).ClearContents
tbl.ListRows(i).Range(1, tbl.ListColumns("Data2").Index).ClearContents

' Alternatively, clear a range of columns in that row
' tbl.ListRows(i).Range.ClearContents
End If
Next i
End Sub



Sub ClearRowConstantsByFilter()
Dim tbl As ListObject
Dim row As Range
Dim filterCriteria As String

' Set your table name
Set tbl = ActiveSheet.ListObjects("Table1")

' Define what value you are looking for to trigger the clear
filterCriteria = "DeleteMe"

' Loop through each row in the table's data area
For Each row In tbl.ListObject.DataBodyRange.Rows
' "Filter" check: Only act if the first column matches our criteria
If row.Cells(1, 1).Value = filterCriteria Then
On Error Resume Next ' Avoid error if no constants exist in the row
' Clear everything in the row EXCEPT formulas
row.SpecialCells(xlCellTypeConstants).ClearContents
On Error GoTo 0
End If
Next row
End Sub
Microsoft Excel



0
05/21/2026
Microsoft Excel Customizing Creating Ranges In Excel
range
Crops
Quick Methods to Name Ranges
Method 1: Using the Name Box (Fastest)

  1. Select the cells or range you want to name.
  2. Click into the Name Box (the empty box just to the left of the formula bar).
  3. Type a name (remember: no spaces or special characters are allowed; use underscores instead of spaces, like Total_Sales).
  4. Press Enter to save the name.
Microsoft Excel



0
05/18/2026
Php Internet Drag And Drop File Upload
drag drop upload
Uplioad
Php



0
06/27/2026
_Misc Software Archive Dumps Of Code
dump archive save
Developer
_Misc Software



0
07/06/2026
Php Archive Hempdbase Code Saved
hemp potency importPDF
Php



0
06/04/2026
_Misc Software Customizing Menu Commands
media timeline
Devinchi Resove
Timeline -> video ->
  • linked move across tracks,
  • Selection follows play head,
  • Ripple timeline markers


Under "Sound Library" dropdown
  • metadata View
  • thumbnail view
  • list view
_Misc Software



0
07/05/2026
Microsoft Excel Archive Module 3
vba module
Crop Production
Microsoft Excel



0
06/04/2026
Mysql Database Php Lookup Of User Permissions
user permissions
New Server
$result=mysqli_query($connection,"SHOW GRANTS FOR CURRENT_USER");
if ($result) {
echo "

Privileges:

    ";
    while ($row = $result->fetch_assoc()) {
    echo "
  • " . htmlspecialchars(current($row)) . "
  • ";
    }
    echo "
";
$result->free();
} else {
echo "Error: " . $mysqli->error;
}
exit;
Mysql



0
07/11/2026
Vb.net Customizing Rem Out Code
rem
Developer
Comment multiple lines:
Ctrl + K, then Ctrl + C
Uncomment them:
Ctrl + K, then Ctrl + U

Here are the correct, verified ways to “REM out” (comment out) multiple lines in VB.NET, based strictly on real Visual Basic language rules and Visual Studio behavior.
VB.NET does not have a native multi?line comment block like /* */ in C# or Java. This is confirmed in the official REM documentation: each comment must begin its own line, because comments cannot span multiple lines automatically 1 4.
However, you can comment out multiple lines using any of the following real methods:

1. Add ' or REM to every line (language rule)
VB.NET allows single?line comments using:

The apostrophe '
The keyword REM (requires a space)

Both apply only to the current line, so you repeat them for each line 1 4.
Example:
Vb' First commented line
' Second commented line
' Third commented line

or:
VbREM First commented line
REM Second commented line
REM Third commented line


2. Use Visual Studio shortcut: Ctrl+K, Ctrl+C (comment)
Visual Studio lets you “comment out” multiple lines at once, even though VB.NET itself does not support block comments.
This is done with the keyboard shortcut 2 3 5:
Comment multiple lines:
Ctrl + K, then Ctrl + C
Uncomment them:
Ctrl + K, then Ctrl + U
Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C)
#If False Then … #End If to disable a block of code


3. Use #If False Then … #End If (compiler?ignored block)
This is not technically a comment, but it is a valid and common VB.NET technique for disabling multiple lines at once.
Example 5:
Vb#If False Then
Dim x As Integer
x = 10
Console.WriteLine(x)
#End If

Because the condition is False, the compiler ignores the entire block—effectively acting like a multi?line comment.

Summary
VB.NET does not support multi?line comments, but you can “REM out” multiple lines using:

' or REM on each line (language standard)
Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C)
#If False Then … #End If to disable a block of code

If you'd like, I can generate a Visual Studio macro, extension, or tool to automate REM?style commenting across many lines.
1-Microsoft.com 2-Stackoverflow.com 3-Codegenes.net 4-Github.com 5-Umatechnology.org
Vb.net



0
05/21/2026
Mysql Database Simple Php Mysql Database Connection Insert Example
connect insert
Debug
// Source - https://stackoverflow.com/q/53312997
// Posted by Tr?n V? Anh D?ng
// Retrieved 2026-07-10, License - CC BY-SA 4.0

$servername = "localhost";
$user = "admin";
$pass = "admin";
$dbname = "examples";

// Create connection
$conn = new mysqli($servername, $user, $pass, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

$id = $_POST['id'];
$name = $_POST['name'];
$year = $_POST['year'];

$sql = "INSERT INTO cars (id, name, year)
VALUES ($id, $name, $year)";

if ($conn->query($sql) === TRUE) {
echo "T?o m?i th nh công";
} else {
echo "L?i: " . $sql . "
" . $conn->error;
}

$conn->close();
?>
Mysql



0
07/10/2026
Microsoft Excel Formatting Using Look Up Tables
xlookup
Crop Production
look up units
=IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),IF(tank_sizeB<101,XLOOKUP(R3,convertA,convertE),XLOOKUP(R3,convertA,convertC)))

look up multiplier
=IF(tank_sizeB<51,XLOOKUP(I4,convertA,convertF),IF(tank_sizeB<101,XLOOKUP(I4,convertA,convertD),XLOOKUP(I4,convertA,convertB)))

=IF(tank_sizeB<51,XLOOKUP(R3, convertA,convertF),"")
=IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),"")

A B C D E F G
Units convert units2 convert2 units3 convert3 units4
oz 128 gal 32 qt 1.00 oz
pt 8 gal 2 qt 1.00 pt
qt 4 gal 1 qt 1.00 qt
gal 1 gal 0.25 qt 1.00 gal
ozd 16 lbs 16 lbs 1.00 ozd
lbs 1 lbs 1 lbs 1.00 lbs_
feet 1 ft1 1 ft2 1.00 feet
zz 1 zz 1 zz 1 zz
Microsoft Excel



0
05/20/2026
Microsoft Excel Function Vba Print Area
set print area
Crop Production
Sub SetMultiplePrintAreas()
ActiveSheet.PageSetup.PrintArea = ""
' Separate multiple ranges with a comma inside the string
ActiveSheet.PageSetup.PrintArea = "A1:C10,E1:G10,I1:K10"
End Sub

Sub ClearPrintArea()
ActiveSheet.PageSetup.PrintArea = ""
end sub


Sub ClearAllPrintAreas()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
ws.PageSetup.PrintArea = ""
Next ws
End Sub
Microsoft Excel



0
05/29/2026
Php Files Activate75.php
activate security
Developer
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");

if($bypass!=true){
$appid="636390303046554890";
$user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers';
$connection = swd_mysql("localhost", $user,$password,$database);
//if($appid>"636390303046554897"){$qu=new mysqli_swd();}else{$qu=new dbase();}
$qu=new mysqli_swd();
$sql="SELECT lock_device,security_level FROM users WHERE device_name='".$_COOKIE["machine_id"]."'";
$qu->dbsql($sql);
if($qu->num==0 || $qu->data1[0]==1) { echo "You are locked out";exit; }
$_SESSION['LEVEL']=$qu->data1[1]; $LEVEL=$qu->data1[1];
define('SWD_AUTHENTICATE', true);define('SWD_KEY', 'JesusIsLord');
}
if($bypass==true){define('SWD_AUTHENTICATE', true);}

?>
Php



1
05/05/2026
Php Function Back Up Of Mystuff.php
mystuff
Vps & Shared Servers

VPS SERVER



?php
// PHP 7.0 conversion Mysql
class mysqli_swd{
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection;
//if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; }

try {
$result=mysqli_query($connection,$query);
//echo "query successfully to MariaDB using MySQLi!";
} catch (mysqli_sql_exception $e) {
// Handle query failures gracefully
echo ("query failed: " . $e->getMessage());
if($debug==true){ echo "

Error:".$query."

";exit; }
} //end try

$sql= strtolower($query);

if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
//if($AC==""){echo $AC."==".$query;exit; }
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class
function swd_mysql($server, $user,$password,$database){
global $appid;
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
try {
// Establish the connection
$connection = mysqli_connect($server,$user,$password,$database,3306);
//echo "Connected successfully to MariaDB using MySQLi!";
} catch (mysqli_sql_exception $e) {
// Handle connection failures gracefully
die("Connection failed: " . $e->getMessage());
}
return $connection;
}


session_start();
include("config.php");//$bypass=true;
$connection = swd_mysql($server,$user,$password,$database);
if($pageLevel=='')$pageLevel=3;
?


OLD SERVER



?php
// PHP 7.0 conversion Mysql
class mysqli_swd{
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection;
//if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; }
$result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query)
if(!$result){
if($debug==true){ echo "Error:".$query;exit;
}else{ echo "Error:".substr($query,0,1000);exit;}
}
$sql= strtolower($query);

if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
//if($AC==""){echo $AC."==".$query;exit; }
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class
function swd_mysql($server, $user,$password,$database){
global $appid;
$connection = mysqli_connect($server, $user,$password);
mysqli_select_db($connection, $database);
if (!$connection){
echo 'Error: Could not connect to Mysqli database. Please try again later.'; exit;
}
return $connection;

}

session_start();
include("config.php");//$bypass=true;
$connection = swd_mysql($server, $user,$password,$database);
if($pageLevel=='')$pageLevel=3;
?
Php



1
07/14/2026
Php Customizing Code That Is Being Debugged
backup debug testing
Php Script
Php



1
05/18/2026
Php Files Copy A File In PHP
file copy
Copying Files
To copy a file in PHP, you use the built-in
copy() function. This function takes the source file path and the destination path as arguments and returns true on success or false on failure.
Syntax
php

bool copy(string $source, string $destination, resource $context = null): bool

$source (Required): The path to the original file you want to copy.
$destination (Required): The path, including the new filename, where the file will be copied. If the destination file already exists, it will be overwritten.
$context (Optional): A context resource created with stream_context_create().

Example
Here is a basic example of how to copy a file and check the result:

=?php

// Specify the source file path
$source_file = 'path/to/original_file.txt';

// Specify the destination path, including the new filename
$destination_file = 'path/to/new_directory/copied_file.txt';

// Use the copy() function
if (copy($source_file, $destination_file)) {
echo "File copied successfully!";
} else {
echo "Something went wrong while copying the file. Check permissions.";
}

?=


Important Considerations

File Permissions: The PHP script must have permission to read the source file and write to the destination directory. Permission errors are a common reason for failure.
Destination Path: The destination must include the new filename, not just the directory name. For example, you need .../new_dir/copied.txt, not just .../new_dir/.
Error Handling: The copy() function returns a boolean, so it is important to use an if statement to handle potential errors gracefully.
Moving vs. Copying: If you want to move a file (delete the original after copying), use the rename() function instead.
Uploaded Files: For handling files uploaded via an HTML form (HTTP POST method), you must use the specialized move_uploaded_file() function, not copy().
Php



1
05/05/2026
Php Files Create Directory File List After Database Backup
file list database backup example
Backup Sites
Php



1
05/05/2026
Php Function Create Lionks Backup
links $PDS_
Developer
Php



1
05/05/2026
Php Function Deletefile.php
delete exist file switch
Backup File Info
Php



1
05/05/2026
Php Language Finds The Position Of The Last Occurrence Of A String
search find
Developer
PHP strrpos() Function

Example
Find the position of the last occurrence of "php" inside the string:

echo strrpos("I love php, I love php too!","php");
?>
Definition and Usage
The strrpos() function finds the position of the last occurrence of a string inside another string.

Note: The strrpos() function is case-sensitive.

Related functions:

strpos() - Finds the position of the first occurrence of a string inside another string (case-sensitive)
stripos() - Finds the position of the first occurrence of a string inside another string (case-insensitive)
strripos() - Finds the position of the last occurrence of a string inside another string (case-insensitive)
Syntax
Php



1
05/05/2026
Php Database Inserting Multiple Rows Into A Table
insert multiple records
Database
Php



1
05/05/2026
Php Language Loops In Php
loops do while
Php
Php



1
05/05/2026
Php Ini Php Ini Partial
ini
Filter List Textarea
disable_functions no value no value
display_errors Off Off
display_startup_errors Off Off
doc_root no value no value
docref_ext no value no value
docref_root no value no value
enable_dl Off Off
enable_post_data_reading On On
error_append_string no value no value
error_log error_log error_log
error_prepend_string no value no value
error_reporting 22519 22519
expose_php Off Off
extension_dir /opt/cpanel/ea-php80/root/usr/lib64/php/modules /opt/cpanel/ea-php80/root/usr/lib64/php/modules
file_uploads On On
hard_timeout 2 2
highlight.comment #FF8000 #FF8000
highlight.default #0000BB #0000BB
highlight.html #000000 #000000
highlight.keyword #007700 #007700
highlight.string #DD0000 #DD0000
html_errors On On
ignore_repeated_errors Off Off
ignore_repeated_source Off Off
ignore_user_abort Off Off
implicit_flush Off Off
include_path .:/opt/cpanel/ea-php80/root/usr/share/pear .:/opt/cpanel/ea-php80/root/usr/share/pear
input_encoding no value no value
internal_encoding no value no value
log_errors On On
log_errors_max_len 1024 1024
mail.add_x_header On On
mail.force_extra_parameters no value no value
mail.log no value no value
max_execution_time 60 60
max_file_uploads 20 20
max_input_nesting_level 64 64
max_input_time 60 60
max_input_vars 1000 1000
max_multipart_body_parts -1 -1
memory_limit 512M 512M
open_basedir no value no value
output_buffering no value no value
output_encoding no value no value
output_handler no value no value
post_max_size 516M 516M
precision 14 14
Php



1
05/05/2026
Php Language PHP Language
random
Php



1
05/05/2026
Php Formatting Remove Ascii > 127
ascii remove delete
String Cleanup
Php



1
05/05/2026
Php Function SESSION VARIABLES NOT WORKING
DEBUG $_SESSION
HEMPDBASE
Php



1
05/05/2026
WP Plugin Function Wpfuction
wpfunction video
Swd Plugins
// PHP 7.0 conversion Mysql

class mysqli_swd{
// global $wpdb;
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection; global $wpdb;
// $result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query)
$result=mysqli_query($wpdb->dbh,$query);
if(!$result){
echo "You definitely Botched the Output requirement";exit;
//echo $query;exit;
}
$sql= strtolower($query);
if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class

function MovieCall($file){
$poster=str_replace(".mp4",".png",$file);
$var="".MOVIE_DIRECTORY.$file."";
//$var="/JesusHumor/wp-content/uploads/movies/".$file."";

return $var;
}
function sizepicture($picture,$maxwidth,$maxheight){
list($width, $height, $type, $attr) = getimagesize($picture);
if($width==0)$width=1;if($height==0)$height=1;
$size[2]=$width;$size[3]=$height;
$hratio=$height/$maxheight; $wratio=$width/$maxwidth;
if ($wratio>$hratio){
$ratio=$width/$height;
if($width>$maxwidth){
$height=(int)($maxwidth/$ratio);$width=$maxwidth;
}
}else{
$ratio=$height/$width;
if($height>$maxheight){
$width=(int)($maxheight/$ratio);$height=$maxheight;
}
}
$size[0]=$width;$size[1]=$height;
return $size;
}
function replaceForm($longadd){
$longadd=stripslashes($longadd);
$longadd=str_replace(chr(160),chr(32),$longadd);
$longadd=str_replace("'","'",$longadd);
$longadd=str_replace(chr(34),""",$longadd);
return $longadd;
}

function replacePunctuation($longadd){
$longadd=stripslashes($longadd);
$longadd=str_replace(chr(160),chr(32),$longadd);
return $longadd;
}
function radiochecked($var,$item){
if($var==$item) return "checked";
else return "";
}
function checkboxchecked($value){
if($value==1) return "checked";
else return "";
}
function checkhtml($var){
$var2=strip_tags($var);
if($var2!=$var){ echo "Mail Server Crashed";exit; }
if(strpos("|".$var,"http:")>0){ echo "Mail Server Crashed";exit; }
$var=addslashes($var);
return $var;
}
function stripDESC($var1){
$m=strpos($var1,'DESC');
if($m>0)$var1=substr($var1,0,$m-1);
return $var1;
}
function ShortenString($var1){
global $prn;
$var1=stripslashes($var1);
$var1=str_replace(chr(160)," ",$var1); $var1=str_replace(chr(32).chr(32),"  ",$var1);
$var1=str_replace(chr(13),'
',$var1);
if(strlen($var1)>100 && $prn==''){
// $var1=substr($var1,0,40).'....';
//$var1="
".$var1."
";
}
//if($var1=='')$var1=' ';
return $var1;
}
function checkBlanks($value){
if($value!="")return "
".$value;
else return "";
}

function convertmdy($date1){
if($date1==""||$date1=="0000-00-00"){
$date1="";return date("m/d/y");
}
$new=strtotime($date1);
$date1= date('m/d/Y',$new);
return $date1;
}
function convertmdytime($date1){
if($date1==""||$date1=="0000-00-00"){
$date1="";return $date1;
}
$time=strtotime($date1);
$date1= date('m/d/Y H:i:s',$time);
return $date1;
}
function convertdate($date1){
if($date1=="") return date('Y-m-d');
$date1=str_replace("/","|",$date1); $date1=str_replace("-","|",$date1);
$time=explode("|",$date1);
if(strlen($time[0])==1) $time[0]="0".$time[0];
if(strlen($time[1])==1) $time[1]="0".$time[1];
$new=trim($time[2])."-".$time[0]."-".$time[1];
$date1= date('Y-m-d',strtotime($new));
return $date1;
}
function convertdatetime($date1){
if($date1=="") return date("Y-m-d H:i:s");
$date1= date('Y-m-d H:i:s',strtotime($date1));
return $date1;
}

function retrieveSettings($appid){
$bkup=array();
$savedSessions= json_decode(stripslashes($_COOKIE["SESSIONARRAY".$appid])); $savedPosts= json_decode(stripslashes($_COOKIE["POSTARRAY".$appid])); $savedGets= json_decode(stripslashes($_COOKIE["GETARRAY".$appid]));
if(gettype($savedSessions)=='array' || gettype($savedSessions)=='object'){
foreach($savedSessions as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
if(gettype($savedPosts)=='array' || gettype($savedPosts)=='object'){
foreach($savedPosts as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
if(gettype($savedGets)=='array' || gettype($savedGets)=='object'){
foreach($savedGets as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
return $bkup;
}
function checkValue($value1,$value2){
if($value1=="")$value1=$value2;
return $value1;
}
function comboResultSet($fieldidx,$fieldx,$tablex){
//global $r;global $appid; global $connection; global $wpdb;
$r=new mysqli_swd;
$settings=array(); $WHERE="";
if(function_exists("createConditions")){
$settings=createConditions($tablex);
if($settings[0]!="" )$WHERE=$settings[0];
if($settings[1]!="" )$fieldx=$settings[1];
}
$sql="SELECT $fieldidx,$fieldx FROM $tablex $WHERE ORDER BY $fieldx";//echo $sql;exit;
$r->dbsql($sql);
return $r->data;
}
function comboResultSet2($tablex,$fieldidx,$valuex){
$r=new mysqli_swd;//global $r;
$sql="SELECT * FROM $tablex WHERE $fieldidx = '$valuex'";$r->dbsql($sql);
return $r->data1;
}
function reportArray($result,$fieldxid,$fieldx){
$r=new mysqli_swd;
mysqli_data_seek($result,0);
For ($i=0; $i< mysqli_num_rows($result); $i++){
$row=$r->dbRow($result);
$xid=replacepunctuation($row["$fieldxid"]);
$x=replacepunctuation($row["$fieldx"]);
$createdArray[$xid]=$x;
}
return $createdArray;
}
function reportArray2($fieldx){
$rowtemp=explode(",",$fieldx[2]); $row=array();
foreach($rowtemp as $k=>$value) {
$row[$value]=$value;
}
return $row;
}
function reportCombo($result,$fieldxid,$fieldx,$selectx){
$r=new mysqli_swd;
mysqli_data_seek($result,0);
For ($i=0; $i< mysqli_num_rows($result); $i++){
$row=$r->dbRow($result);
$xid=replacepunctuation($row["$fieldxid"]);
$x=replacepunctuation($row["$fieldx"]);
if ($xid == $selectx){
$dis1 .= "
WP Plugin



1
07/06/2026
Javascript Object .select(); Clipboard
Clipboard object of document.getElementById().select;
Javascript



2
05/05/2026
Css Formatting ??????Keeping Place Holders
placeholder



Persistent background text

Css



2
05/05/2026
Microsoft Excel Customizing Adding A Color To Alternate Rows
color alternate rows
Filter List
Adding a color to alternate rows or columns (often called color banding) can make the data in your worksheet easier to scan. To format alternate rows or columns, you can quickly apply a preset table format. By using this method, alternate row or column shading is automatically applied when you add rows and columns.

Table with color applied to alternate rows

Here's how:

Select the range of cells that you want to format.

Go to Home > Format as Table.

office 365 asks for cell range. Remove "I have headers" checkmark. You can uncheck the headers box and it will remove the headers it creates. Delete the cells and move the cells up

Pick a table style that has alternate row shading.

To change the shading from rows to columns, select the table, under Table Design, and then uncheck the Banded Rows box and check the Banded Columns box.
Microsoft Excel



2
05/05/2026
WP Function Am I Logged Into Wordpress
logged in
Wp Admin
AI Overview
WordPress knows you are logged in by storing hashed, secure cookies in your browser upon successful authentication. When you navigate to a new page, WordPress checks for the wordpress_logged_in_[hash] cookie to identify who you are, making it stateless rather than using server-side PHP sessions.

Authentication Cookie: After login, WordPress sets a wordpress_logged_in_[hash] cookie that lasts for a specific duration, storing your username and authentication details.
Verification: On every admin page request, WordPress checks wp-includes/pluggable.php (using wp_validate_auth_cookie) to verify this cookie, ensuring you are logged in.
Without Cookies: If cookies are disabled or expired, WordPress will not recognize you and will request login credentials again.
No Active Monitoring: By default, WordPress does not track active sessions in the database; it only validates the cookies sent by your browser. Plugins are required to see "who is online"
WP



2
05/05/2026
Css Customizing Assembly.css Instructions
assembly vb.net phpscript whs transaction zoom
Developer

customize top and bottom table:


input.txwhere {min-width:300px;} length of where textbox
table.formtablewidth {width:100%;max-width:800px;}
table.reportActionTable {max-width:1200px;min-width:800px;} width of bottom table
textarea.textareaDimension{ width:100%;min-height: 200px; }
hr.cell_split{color:red;} color of line in merged cells


.navletters{margin:0 5px 0 10px;}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
input[type="checkbox"] {
border: 2px solid #2c4358;
}
table.formtablewidth {width:100%;max-width:800px;}
textarea.textareaDimension{ width:100%;min-height: 200px; }
table.reportActionTable {max-width:1200px;min-width:800px;}

A:link {text-decoration:underline;color:#330033;font-size:8pt}
A:visited {text-decoration:none;color:#0033FF;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A.menu:visited {text-decoration:none;color:#666666;font-size:8pt}
A:hover.menu {color:#ffcc66;font-size:8pt}
A.menu:active {text-decoration:none;color:#666666;font-size:8pt}
A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A:visited.calendar {text-decoration:underline;color:#666666;font-size:8pt}
A:hover.calendar {color:#ffcc66;font-size:8pt}
A:active.calendar {text-decoration:underline;color:#666666;font-size:8pt}
hr.cell_split{color:#FFFF00;}
img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:30px;margin-top:0px;font-size:10pt;font-family:Verdana}
p{font-family:verdana;font-size:10pt}
p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em}
table{border-color:#CCCCCC;border-collapse:collapse;}
tr.alt{background-color:#EEEEEE;}
td.debt{ color:red; }
td{font-family:verdana;font-size:8pt;border:1px solid #CCCCCC;padding:3px 4px 3px 6px;}
td.small{font-family:verdana;font-size:6pt}
td.menu{font-family:verdana;font-size:7pt}
p.title{font-family:verdana;font-size:12pt;font-weight:bold}
p.large{font-family:verdana;font-size:22pt}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
#menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC}
#menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right}
#menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right}
#menud tr.space{height:15px}
#menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000}
#menud tr{height:20px}
#menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
div.scroll{overflow:auto;text-align:left;min-width:450px;max-width:600px;max-height:200px; }
textarea.descriptionLED {height:250px; }
@media screen and (max-width: 1100px) {
body{ zoom:2.5;}
}
Css



2
05/05/2026
_Misc Software Formatting Auto Number In Excel
auto number
Excel Column
You can automatically number a column in Excel using the Fill Handle, Fill Series, or the ROW function to create a sequential numbering system easily.
Method 1: Using the Fill Handle
Enter Initial Numbers: In the first two cells of the column where you want to start numbering, enter the numbers 1 and 2 (or any starting numbers you prefer).
Select Cells: Highlight both cells containing the numbers.
Use the Fill Handle: Move your cursor to the bottom-right corner of the selection until you see a small plus sign (the Fill Handle).
Drag or Double-Click: Click and drag the Fill Handle down to fill the column with sequential numbers, or double-click it to auto-fill the column based on adjacent data.
2


2 Sources
Method 2: Using the Fill Series Option
Enter Starting Value: Type 1 in the first cell of the column.
Access Fill Options: Go to the Home tab, click on Fill, and select Series from the dropdown menu.
Configure Series: In the Series dialog box, choose Columns for Series in, set the Step Value to 1, and specify the Stop Value based on how many rows you want to number.
Click OK: This will fill the column with a sequential series of numbers.
2


2 Sources
Method 3: Using the ROW Function
Enter the Formula: In the first cell of the column, type the formula =ROW(A1) (adjust the cell reference based on your starting position). This will return the row number of the cell.
Drag the Fill Handle: Use the Fill Handle to drag the formula down the column. Each cell will display its corresponding row number, which updates automatically if rows are added or deleted.
2


2 Sources
Tips
Adjust Starting Point: If you want to start numbering from a different number, you can modify the formula accordingly (e.g., =ROW(A1)-4 to start from 1 in row 5).
Manual Updates: If you use the Fill Handle or Fill Series, remember that these numbers won't automatically update if you add or remove rows; you may need to redo the process to maintain accuracy.
1

By following these methods, you can efficiently auto-number columns in Excel to keep your data organized and easily readable.
_Misc Software



2
05/05/2026
_Misc Software Archive Backup Config Files
config
Config Files
code
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_codesaver'; $LEVEL=3;$_SESSION['LEVEL']=3; }
$debug=false;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="../lightbox";
$sessionListSave='';
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");
//Save this session when using ?RESET=1. Use commas if more than one



accounting business
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_accounting';$_SESSION['LEVEL']=2; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


Accounting Personal
//$y=date('Y');$m=date('m');$filter="Y".$y."M".$m;
//if($_GET["$filter"]==1){$_SESSION['LEVEL']=1;$LEVE=1;}else{require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");}
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accountingp'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accountingP'; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave="date_of1SAVE,date_of2SAVE"; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


accounting Sons
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_winterbros';$_SESSION['LEVEL']=2; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");

Email Accounts
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_emailAccts';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebdesign.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'JesusIsLord'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


Windsor hair Shoppe
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_hairShoppe';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Invoices
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_invoices';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Iq of Post
include("settings.php");
$appid="mysqli";
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_Tips';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Crop Map
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_cropMap';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");
_Misc Software



2
05/05/2026
_Misc Software Archive Backup Google Earth My Places
google earth backup
Google Earth Pro
Move saved locations to a new computer
You can move locations you've saved in Google Earth to a different computer. Saved locations are called placemarks, and they're automatically saved to your computer.

Step 1: Find location file
Windows
Press Ctrl + Esc + r or Windows key + r.
. In the "Open" box, enter "%USERPROFILE%AppDataLocalLowGoogleGoogleEarth".
If you're using Windows XP, enter "%USERPROFILE%Application DataGoogleGoogleEarth" instead.
Select OK.
In the directory, you'll see a file called "myplaces.kml". This file has your saved locations.
Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml."
Mac
Open the Finder.
At the top of the screen, click Go. Hold down Option or Alt, then click Library and then Application support and then Google Earth.
You'll see a file called "myplaces.kml". This file has your saved locations.
Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml."
Step 2: Move location file
There are a few ways you can transfer the file with your saved locations to another computer:

Save the file in Google Drive
Email the file to yourself
Save the file to a USB drive
Tip: Back up your myplaces.kml file to a removable device, like USB drive.
_Misc Software



2
05/05/2026
_Misc Software Setup Bluehost Email Setup On Pop3
email bluehost
Outook
These are results for bluehost pop3 email setup
Search instead for blue host pop3 email setup
AI Overview
To set up Bluehost email with POP3, configure your mail client using incoming server
mail.yourdomain.com (or pop.titan.email for professional email) on port 995 with SSL, and outgoing server mail.yourdomain.com (or smtp.titan.email) on port 465 or 587 with SSL/TLS. POP3 downloads messages to your device, making them accessible offline but often removing them from the server.
Key Bluehost POP3 Settings

Username: Full email address (e.g., user@example.com)
Password: Password for your email account
Incoming Server (POP3): mail.yourdomain.com (or pop.titan.email)
Incoming Port: 995
Security: SSL/TLS
Outgoing Server (SMTP): mail.yourdomain.com (or smtp.titan.email)
Outgoing Port: 465 (or 587)
Authentication: Required for outgoing server (use same username/password)

Setup Steps by Device

Gmail (Web): Go to Settings > "Accounts and Import" > "Check mail from other accounts" > Add a mail account > Select POP3 and enter the settings above.
Windows 10 Mail: Search for Mail > Accounts > Add Account > Advanced Setup > Internet email > Fill in POP3 details.
Android (Gmail App): Settings > Add account > Other > Select POP3 > Enter details.

Note: Ensure "Leave a copy of messages on server" is checked in your email client settings if you want to access mail from multiple devices
_Misc Software



2
05/05/2026
Vb.net Function Calling A Click Event
call
Vb.net Events
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Button2_Click(Sender, e)
End Sub

BTbulkMove_Click(sender As Object, e As EventArgs) translates to BTbulkMove_Click(sender, e)

BTtest_Click(sender As Object, e As EventArgs) translates to BTtest_Click(sender, e)
Vb.net



2
05/05/2026
Browsers Customizing Change The Default Download Location In Firefox
download firefox
Firefox
Browsers



2
05/05/2026
Windows >=10 Formatting Change Windows Date Format
time date format
Windows 11
Control panel
Date And time
Button Change date and time
Link "Change calendar settings
Select "English United states"
Windows >=10



2
05/05/2026
Windows >=10 Formatting Check Disk Chkdsk
check disk bad
Hard Drives
What is CHKDSK

Check Disk (CHKDSK) is a Windows built-in tool that scans your hard drive for corrupted files, repairs bugs and errors, and cleans up disk space to maintain your PC’s health. Use this tool when your PC is slow due to an almost full or failing hard drive.

CHKDSK commands:

chkdsk - Scans the hard drive for bugs or errors with no attempts of repair.
chkdsk [drive letter] - Replace “[drive letter]” to specify the internal or external drive to scan. For example, chkdsk C:
chkdsk /f - Attempts to fix bugs or errors while scanning the hard drive.
chkdsk /r - Attempts to fix sectors on the hard drive to make them readable in the file system.
chkdsk /x - Disconnects a drive to scan and fix it.
chkdsk /f /r /x - Scans the file system and its sectors, and fixes any errors found. If needed, this also disconnects the drive.

Run CHKDSK from File Explorer
If there only a few bad sectors on your drive, you can run CHKDSK command and format the drive to repair those bad sectors:
1. Press the Windows key and type cmd.
2. Right-click "Command Prompt" and choose "Run as administrator".
3. Type chkdsk E: /f /r /x and hit
Windows >=10



2
05/05/2026
_Misc Software Setup Check Gmail In Outlook Manually
gmail
Outlook Setup
_Misc Software



2
05/05/2026
Windows >=10 Query Cmd Ftype|clip
cmd ftype
Windows >=10



2
05/05/2026
_Misc Software Query Cmd Prompt
cmd
_Misc Software



2
05/05/2026
Php Archive Code Zoom Backup Code
zoom format html_entity_decode
Codezoom.php
Php



2
05/05/2026
Vb.net Setup Compiling Error Locations
errors optimization
Locating Bug Fixes
optimize error
Project- project properties (located towards bottom)
Compile -towards bottom "Advanced Compile Options" uncheck "Enable Optimizations"

============

Resolving the 'Microsoft.Jet.OLEDB.4.0' Provider Not Registered Er…
1
2
3
The error Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine typically occurs when you try to use the Microsoft Jet OLEDB 4.0 driver on a 64-bit operating system. This driver is not compatible with 64-bit systems, leading to this error.

Example

string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;";
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Perform database operations
}
Solution 1: Change Project Build Configuration

One common solution is to change the build configuration of your project to target x86 (32-bit) instead of Any CPU or x64.

Steps:

Open your project in Visual Studio.

Go to Project Properties > Build.

Change the Platform target to x86.

Rebuild your project.

Solution 2: Use Microsoft.ACE.OLEDB.12.0

Another solution is to use the Microsoft Access Database Engine, which provides a 64-bit compatible driver.

Example:

string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\mydatabase.accdb;";
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Perform database operations
}
Solution 3: Enable 32-bit Applications in IIS

If you are running a web application, you can enable 32-bit applications in IIS
3
.

Steps:

Open IIS Manager.

Select the application pool your application is using.

Click on Advanced Settings.

Set Enable 32-Bit Applications to True.

By following these steps, you can resolve the Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine error and ensure your application runs smoothly on both 32-bit and 64-bit systems.

Learn more:
1 -
stackoverflow.com
2 -
answers.microsoft.com
3 -
stackoverflow.com




Resolving the 'Microsoft.Jet.OLEDB.4.0' Provider Not Registered Er…
1
2
3
The error Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine typically occurs when you try to use the Microsoft Jet OLEDB 4.0 driver on a 64-bit operating system. This driver is not compatible with 64-bit systems, leading to this error.

Example

string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;";
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Perform database operations
}
Solution 1: Change Project Build Configuration

One common solution is to change the build configuration of your project to target x86 (32-bit) instead of Any CPU or x64.

Steps:

Open your project in Visual Studio.

Go to Project Properties > Build.

Change the Platform target to x86.

Rebuild your project.

Solution 2: Use Microsoft.ACE.OLEDB.12.0

Another solution is to use the Microsoft Access Database Engine, which provides a 64-bit compatible driver.

Example:

string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\mydatabase.accdb;";
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Perform database operations
}
Solution 3: Enable 32-bit Applications in IIS

If you are running a web application, you can enable 32-bit applications in IIS
3
.

Steps:

Open IIS Manager.

Select the application pool your application is using.

Click on Advanced Settings.

Set Enable 32-Bit Applications to True.

By following these steps, you can resolve the Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine error and ensure your application runs smoothly on both 32-bit and 64-bit systems.

Learn more:
1 -
stackoverflow.com
2 -
answers.microsoft.com
3 -
stackoverflow.com
Vb.net



2
05/05/2026
Php Files Config.php
config
Config.php
config.php->
require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='hairshoppe'; $_SESSION['LEVEL']=10; $_SESSION["EMPLOYEE"]=1;}
else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_hairShoppe'; }// if($_SESSION['EMPLOYEE']==""){ echo "Login Again";exit; } }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebdesign.com|127.0.0.1";
$sessionListSave="EMPLOYEE";$lightbox="https://www.softwarewebdesign.com";
define('SWD_KEY', 'KingOfKings');
setcookie("humans_21909", "", time() - 3600, "/");
//define('SWD_AUTHENTICATE', true); // inactivate75.php


activate75.php ->
if($bypass!=true){
$user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers';
$connection = swd_mysql("localhost", $user,$password,$database);
//if($appid>"636390303046554897"){$qu=new mysqli_swd();}else{$qu=new dbase();}
$qu=new mysqli_swd();
$sql="SELECT lock_device FROM users WHERE device_name='".$_COOKIE["machine_id"]."'";
$qu->dbsql($sql);
if($qu->num==0 || $qu->data1[0]==1) { echo "You are locked out";exit; }
$_SESSION['LEVEL']=10;
mysqli_close($connection);
define('SWD_AUTHENTICATE', true);
}define('SWD_KEY', 'JesusIsLord');
if($bypass==true){define('SWD_AUTHENTICATE', true);}
Php



2
05/05/2026
Vb.net Customizing Control Window State Of App
maximize all programs minimize
Outlook Mail Cleaner
automatically minimize a window in VB.NET, you can set the WindowState property of the form to FormWindowState.Minimized. This can be done in various scenarios, such as when the form loads, in response to a user action (like clicking a button), or based on a timer.
1. Minimizing the Current Form:
To minimize the form where the code is executed:
Code

Me.WindowState = FormWindowState.Minimized
This line of code can be placed within an event handler, such as a button click event or a form load event.
2. Minimizing All Active Forms:
To minimize all forms currently open in your application:
Code

For Each frm As Form In Application.OpenForms
frm.WindowState = FormWindowState.Minimized
Next frm
This code iterates through the Application.OpenForms collection and sets the WindowState of each form to Minimized.
3. Minimizing an External Application Window (Advanced):
Minimizing an external application's window requires using Windows API functions. This involves obtaining the window handle of the target application and then using functions like ShowWindow to manipulate its state. This is a more complex approach and typically involves PInvoke to call unmanaged code.
Example for a specific event:
To minimize the form when a specific button is clicked:
Code

Private Sub btnMinimize_Click(sender As Object, e As EventArgs) Handles btnMinimize.Click
Me.WindowState = FormWindowState.Minimized
End Sub

Maximize all apps


Imports System.Runtime.InteropServices
Module ModConnection

' Import the ShowWindow function from user32.dll

Public Function ShowWindow(hWnd As IntPtr, nCmdShow As Integer) As Boolean
End Function

' Constants for ShowWindow

Public Const SW_SHOWNORMAL = 1
Public Const SW_SHOWMAXIMIZED = 3
Public Const SW_SHOWMINIMIZED = 6

your function calls

Private Sub btProcess_Click(sender As Object, e As EventArgs) Handles btProcess.Click

File1.Items.Clear()
For Each p In Process.GetProcesses
If p.MainWindowTitle <> "" Then
'File1.Items.Add(p.MainWindowTitle + "..running")
File1.Items.Add("[" + p.ProcessName + "=" + p.MainWindowTitle + "]")
ShowWindow(p.MainWindowHandle, SW_SHOWMAXIMIZED)
End If
Next
End Sub
Vb.net



2
05/05/2026
Vb.net Files Create A Copy Or Move A File In A Different Directory
copy files move files
File Management
' Copy the file to a new location without overwriting existing file.
My.Computer.FileSystem.CopyFile(
"C:UserFilesTestFilestestFile.txt",
"C:UserFilesTestFiles2testFile.txt")

' Copy the file to a new folder, overwriting existing file.
My.Computer.FileSystem.CopyFile(
"C:UserFilesTestFilestestFile.txt",
"C:UserFilesTestFiles2testFile.txt",
Microsoft.VisualBasic.FileIO.UIOption.AllDialogs,
Microsoft.VisualBasic.FileIO.UICancelOption.DoNothing)

' Copy the file to a new folder and rename it.
My.Computer.FileSystem.CopyFile(
"C:UserFilesTestFilestestFile.txt",
"C:UserFilesTestFiles2NewFile.txt",
Microsoft.VisualBasic.FileIO.UIOption.AllDialogs,
Microsoft.VisualBasic.FileIO.UICancelOption.DoNothing)

==================
overwrite defaults to false need to add ",true" inside the function

The My.Computer.FileSystem.MoveFile method can be used to move a file to another folder. If the target structure does not exist, it will be created.

To move a file
Use the MoveFile method to move the file, specifying the file name and location for both the source file and the target file. This example moves the file named test.txt from TestDir1 to TestDir2. Note that the target file name is specified even though it is the same as the source file name.

VB

Copy
My.Computer.FileSystem.MoveFile("C:TestDir1test.txt",
"C:TestDir2test.txt")
To move a file and rename it
Use the MoveFile method to move the file, specifying the source file name and location, the target location, and the new name at the target location. This example moves the file named test.txt from TestDir1 to TestDir2 and renames it nexttest.txt.

VB

Copy
My.Computer.FileSystem.MoveFile("C:TestDir1test.txt",
"C:TestDir2nexttest.txt",
FileIO.UIOption.AllDialogs,
FileIO.UICancelOption.ThrowException)
Vb.net



2
05/05/2026
_Misc Software Ini Creating A .user.ini File For Linux
user ini
Developer
_Misc Software



2
05/05/2026
Css Formatting CSS Scale Property
scale zoom
Media Screens
The CSS scale property allows you to resize elements by scaling them along the x, y, and z axes. This property is particularly useful for creating responsive designs and animations. The scale property can be defined with one, two, or three values, depending on the dimensions you want to scale.

Syntax and Usage

The syntax for the scale property is as follows:

scale: x-axis y-axis z-axis | initial | inherit;
Copy
x-axis: Defines the scale factor along the x-axis.
y-axis: Defines the scale factor along the y-axis.
z-axis: Defines the scale factor along the z-axis.

initial: Sets the property to its default value.

inherit: Inherits the property from its parent element.

Examples

Scaling uniformly in both x and y directions:

div {
scale: 2;
}
Copy
Scaling differently in x and y directions:

div {
scale: 2 0.5;
}
Copy
Scaling in x, y, and z directions:

div {
scale: 1 1.5 2;
}
Copy
Alternative: CSS Transform Property

An alternative to the scale property is using the CSS transform property with the scale() function. This function allows you to scale elements in 2D or 3D space. For example:

div {
transform: scale(2);
}
Copy
This will achieve the same effect as scale: 2; but is part of the broader transform property.

Important Considerations

Accessibility: Scaling and zooming animations can trigger migraines for some users. It's advisable to provide a control to turn off animations or use the prefers-reduced-motion media feature to disable animations for users who have reduced motion preferences.

Child Elements: The scale property affects all descendant elements, meaning that if you scale a parent element, all its children will be scaled as well.

Layout Flow: Unlike the scale() function in the transform property, the scale property does not cause other elements to reflow around it.

By understanding and utilizing the CSS scale property, you can create dynamic and responsive web designs that enhance user experience. Whether you choose to use the scale property directly or the transform property with the scale() function, both methods offer flexibility and control over element sizing.
Css



2
05/05/2026

Software Web Design