• Home
  • 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
  • Payments
  • Notes
  • System Tips

Notes

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
Css Formatting Customizing Formats For Mircrosoft IE ONLY
!ie IE firefox browser css
Css



1276
09/09/2023
Htacess Internet Security And Set Php Version
.htaccess php version security
Htacess



0
03/04/2024
_Misc Software Customizing Setting NMEA Settings 1200 Monitor
1200 20/20 NMEA
Linking 20/20
1200 MONITOR NMEAS SETTINGS
1. press the 3 square-4 square button top
2. Click on GNS position output settings
3.click on configuration. you can add a new profile here we called our 2025
4. Our guy had us turn port 2 on set baud rate 38400
5. Next turn the CGA->on, RMC->on, VTG->on
6. Click on each of the + signs and set each value to 5hz
_Misc Software



0
04/09/2025
Css Formatting Set Styling For Jesus Loves Humor Website
2013 theme jesus loves humor
Jesusloveshumor
place in the style.css

body {overflow:visible;}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt}
textarea{ font-size:8pt; }
hr.cell_split{color:red;}
tr.alt{background-color:#EEEEEE;}
td{font-family:verdana;font-size:8pt;border:1px solid #000000;}
.navletters {margin:0 7px 0 7px; }
td.code_mod {max-width: 600px;}
td.description_mod {min-width:300px;}
td.description_mod div{min-width:275px;}
div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; }
input[type="button"],input[type="submit"]{
background-color: #64c9ea;
border: none;
border-radius: 2px;
box-shadow: none;
color: #fff;
cursor: pointer;
padding: 5px 5px;
min-width:10px;margin:5px;}
input[type="text"],input[type="select"] {font-family:verdana;font-size:10pt;margin:5px;padding: 2px 2px;width:70%}
td.file_mod{width:200px;}
.entry-content {max-width:1200px; }
Css



2
04/16/2025
Css Formatting Stored Css For 2017 Theme
2017 footer credits seventeen theme Jesus sell
Jesus Over Gangs
Css



4
03/16/2025
_Misc Software Hardware Printer Tips
2600 laser paper
Print Pages
hp2600n printer

[front load]
place the side to be printed on down (labels down) or already printed out

[bottom load]
place the already printed side down with the bottom of the page furthest in or top of page closest to the front but always print facing down
_Misc Software



0
04/19/2025
Htacess Files Page Not Found 404
404 page redirect
Htacess



1507
09/09/2023
Php Files Clean Url
? url clean & #
if you ever add variables to the url line you need to use this function
urldecode for passing gets.
$urlpart1=urldecode($urlpart1);
$urlpart2=urldecode($urlpart2);
$url="http://www.mydomain.com?$urlpart1&$urlpart2;

Do not use it on a completed url. It will totally mess everything up.
Php



1325
09/09/2023
Php Constants Setting The Absolute Path
absolute path define constant
Library
Php



3
09/09/2023
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



0
05/11/2025
Mysql Date ADDDATE - Mysql
add date mysql
Mysql



3
02/15/2024
Php Date Add Day
add day
Php



3
09/09/2023
Mysql Query Alter Tables
add field delete alter table rename update table auto increment engine collation
Mysql



1770
09/09/2023
Vb.net Database Inserting Records Into Database And Data Grid
add insert update sql
Web Tools Create & Update Records
Imports System.IO
Imports System.Text
Imports System.Data.OleDb

Private Sub btAdd_Click(sender As Object, e As EventArgs) Handles btAdd.Click
Select Case table_selected
Case "copytext"
Try
sqL = "INSERT INTO [copy_it]([category],[copy_text],[notes]) VALUES ('" + txTitle.Text + "', '" + TXfield3.Text + "', '" + txSectionCode.Text + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)

Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txTitle.Text, TXfield3.Text, txSectionCode.Text)
Case "directorycopy"
Try
sqL = "INSERT INTO [directory_copy]([prefix],[directory]) VALUES ('" + txTitle.Text + "', '" + txSectionCode.Text + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)

Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txTitle.Text, txSectionCode.Text)
Case "multireplace"
Try
sqL = "INSERT INTO [mulitreplace]([title],[section_code]) VALUES ('" + txTitle.Text + "', '" + txSectionCode.Text + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)

Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txTitle.Text, txSectionCode.Text)
Case "filepaths"
Try
sqL = "INSERT INTO [file_paths]([file_path],[computer]) VALUES ('" + txSectionCode.Text + "','" + My.Computer.Name + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)

Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txSectionCode.Text)
Case "emailmoved"
Try
sqL = "INSERT INTO [move_email]([move_to],[archive],[subject_filter]) VALUES ('" + txTitle.Text + "', '" + TXfield3.Text + "', '" + txSectionCode.Text + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)

Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txTitle.Text, txSectionCode.Text, TXfield3.Text)
Case "emailfiltered"
Try
sqL = "INSERT INTO [Filtered_email]([importance],[email]) VALUES ('" + txTitle.Text + "', '" + txSectionCode.Text + "')"
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
DataGridView1.Rows.Add(0, txSectionCode.Text, txTitle.Text)
End Select


Private Sub btUpdate_Click(sender As Object, e As EventArgs) Handles btUpdate.Click
Dim update As DataGridViewRow = DataGridView1.SelectedRows(0)
If txReplaceid.Text = "0" Then MsgBox("You cannot edit new records without refresh.") : Exit Sub
Select Case table_selected
Case "copytext"
update.Cells(1).Value = txTitle.Text
update.Cells(2).Value = TXfield3.Text
update.Cells(3).Value = txSectionCode.Text
Try
sqL = "UPDATE [copy_it] SET [category]='" + txTitle.Text + "',[copy_text]='" + TXfield3.Text + "',[notes]='" + txSectionCode.Text + "' WHERE [copyID]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Case "multireplace"
update.Cells(1).Value = txTitle.Text
update.Cells(2).Value = txSectionCode.Text
Try
sqL = "UPDATE [mulitreplace] SET [title]='" + txTitle.Text + "',[section_code]='" + txSectionCode.Text + "' WHERE [replaceid]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Case "directorycopy"
update.Cells(1).Value = txTitle.Text
update.Cells(2).Value = txSectionCode.Text
Try
sqL = "UPDATE [directory_copy] SET [prefix]='" + txTitle.Text + "',[directory]='" + txSectionCode.Text + "' WHERE [directoryID]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Case "filepaths"
update.Cells(1).Value = txSectionCode.Text
Try
sqL = "UPDATE [file_paths] SET [file_path]='" + txSectionCode.Text + "' WHERE [pathID]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Case "emailfiltered"
update.Cells(2).Value = txTitle.Text
update.Cells(1).Value = txSectionCode.Text
Try
sqL = "UPDATE [Filtered_email] SET [importance]='" + txTitle.Text + "',[email]='" + txSectionCode.Text + "' WHERE [emailID]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Case "emailmoved"
update.Cells(1).Value = txTitle.Text
update.Cells(3).Value = TXfield3.Text
update.Cells(2).Value = txSectionCode.Text
Try
sqL = "UPDATE [move_email] SET [move_to]='" + txTitle.Text + "',[archive]='" + TXfield3.Text + "',[subject_filter]='" + txSectionCode.Text + "' WHERE [moveID]=" + txReplaceid.Text
ConnDB()
cmd = New OleDbCommand(sqL, conn)
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Select
Vb.net



2
07/23/2025
Php Database Concat - Combine Fields Or Text
add join concat
Php



2
09/09/2023
Vb.net Database ConnectionMod.vb
add update sql access radio
Web Tools Database
Imports System.Data.OleDb

Module ModConnection
Public cur As Form
Public dt As DataTable
Public conn As OleDbConnection
Public cmd As OleDbCommand
Public dr As OleDbDataReader
Public da As OleDbDataAdapter
Public ds As DataSet
Public sqL As String
Public Sub ConnDB()
Dim R As String = My.Computer.Name '
R = GetIni("Database", R, INI)
If R = "" Then
WriteIni("Database", My.Computer.Name, "Dropboxvb10fileExplorerfileExplorerbinReleasePHPCreator.mdb", INI)
Shell("write.exe " + INI, vbNormalFocus) : Exit Sub
End If
'C:UserssteveDropboxvb10fileExplorerfileExplorerbinReleasePHPCreator.mdb"
Try
Dim connectionString As String = "Provider=Microsoft.jet.oledb.4.0;Data Source=" + R
'Dim connectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + R
conn = New OleDbConnection(connectionString)
'conn = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Application.StartupPath() & "beer.mdb;")
'conn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Databasephone.mdb;Jet OLEDB:Database Password = escobar;")
conn.Open()
Catch ex As Exception
MsgBox("Failed in Connecting to database")
End Try
End Sub
Public Function getDataTable(ByVal SQL As String) As DataTable
ConnDB()
Dim cmd As New OleDbCommand(SQL, conn)
Dim dt As New DataTable
Dim da As New OleDbDataAdapter(cmd)
da.Fill(dt)
Return dt
End Function
End Module

-------------- radio button test -------------------------

Private Sub rbFilePaths_CheckedChanged(sender As Object, e As EventArgs) Handles rbFilePaths.CheckedChanged
If rbFilePaths.Checked = True Then table_selected = "filepaths" : btRefresh_Click(sender, e)
End Sub

Private Sub rbMultireplace_CheckedChanged(sender As Object, e As EventArgs) Handles rbMultireplace.CheckedChanged
If rbMultireplace.Checked = True Then table_selected = "multireplace" : btRefresh_Click(sender, e)
End Sub

Private Sub txText_TextChanged(sender As Object, e As EventArgs) Handles txText.TextChanged

End Sub

Private Sub rbDirectoryCopy_CheckedChanged(sender As Object, e As EventArgs) Handles rbDirectoryCopy.CheckedChanged
If rbDirectoryCopy.Checked = True Then table_selected = "directorycopy" : btRefresh_Click(sender, e)
End Sub

Private Sub RBcopyText_CheckedChanged(sender As Object, e As EventArgs) Handles RBcopyText.CheckedChanged
If RBcopyText.Checked = True Then table_selected = "copytext" : btRefresh_Click(sender, e)
End Sub

Private Sub RBemailFiltered_CheckedChanged(sender As Object, e As EventArgs) Handles RBemailFiltered.CheckedChanged
If RBemailFiltered.Checked = True Then table_selected = "emailfiltered" : btRefresh_Click(sender, e)
End Sub

Private Sub RBemailMove_CheckedChanged(sender As Object, e As EventArgs) Handles RBemailMove.CheckedChanged
If RBemailMove.Checked = True Then table_selected = "emailmoved" : btRefresh_Click(sender, e)
End Sub

====== selected table =============
Select Case table_selected
Case "copytext"

Case "directorycopy"

Case "multireplace"

Case "filepaths"

Case "emailmoved"

Case "emailfiltered"

End Select
Vb.net



5
07/23/2025
WP Plugin Customizing Putting Your Code Into Wordpress Admin
admin embed iframe
Developer Wordpress
Got it — you want to embed an iFrame inside the WordPress admin area (not just in posts or pages). This is a bit different from front-end embedding because it involves customizing the WordPress dashboard or admin pages.

Here’s how you can do it safely and cleanly:

1. Add an iFrame to a Custom Admin Page
You can create a new admin menu item and load your iFrame inside it.

Php
Copy code
// Add this to your theme's functions.php or a custom plugin
function my_custom_admin_page() {
add_menu_page(
'My iFrame Page', // Page title
'iFrame Page', // Menu title
'manage_options', // Capability
'my-iframe-page', // Menu slug
'my_iframe_page_html', // Callback function
'dashicons-admin-site', // Icon
20 // Position
);
}
add_action('admin_menu', 'my_custom_admin_page');

function my_iframe_page_html() {
?>
{div class="wrap">
{h1>Embedded iFrame{/h1>
{iframe src="https://example.com" width="100%" height="600" style="border:0;">{/iframe>
{/div>
{?php
}
2. Embed iFrame in an Existing Admin Page via Hook
If you want to insert it into an existing settings page, you can hook into the page’s output:

Php
Copy code
function my_iframe_in_settings_page() {
echo '{iframe src="https://example.com" width="100%" height="500" style="border:0;">{/iframe>';
}
add_action('admin_notices', 'my_iframe_in_settings_page');
(Note: This will show at the top of all admin pages — you can conditionally check $_GET['page'] to target specific ones.)

3. Use a Dashboard Widget with iFrame
This is great if you want the iFrame right on the WordPress Dashboard.

Php
Copy code
function my_iframe_dashboard_widget() {
wp_add_dashboard_widget(
'my_iframe_widget',
'My iFrame Widget',
function() {
echo '{iframe src="https://example.com" width="100%" height="400" style="border:0;">{/iframe>';
}
);
}
add_action('wp_dashboard_setup', 'my_iframe_dashboard_widget');
???? Tips for Safety & Compatibility

Only embed trusted URLs to avoid security risks.
Some sites block embedding via X-Frame-Options. If your iFrame doesn’t load, that’s likely the reason.
For better styling, you can enqueue custom CSS for admin pages using admin_enqueue_scripts.
If you want, I can make a version where the iFrame is responsive and styled to match the WordPress admin UI so it feels native. Would you like me to prepare that?

Undo



?php
/*
Plugin Name: Custom Admin PHP Script
Description: Adds a custom admin page that runs a PHP script.
Version: 1.0
Author: Your Name
*/

// Hook into admin menu
add_action('admin_menu', 'cap_add_admin_page');

function cap_add_admin_page() {
add_menu_page(
'Custom PHP Script', // Page title
'Custom Script', // Menu title
'manage_options', // Capability
'custom-php-script', // Menu slug
'cap_render_admin_page', // Callback function
'dashicons-editor-code', // Icon
100 // Position
);
}

// Render the admin page
function cap_render_admin_page() {
if (!current_user_can('manage_options')) {
wp_die('Unauthorized user');
}

echo '{div class="wrap">{h1>Custom PHP Script Output{/h1>';

// Your PHP script logic here
try {
$result = date('Y-m-d H:i:s'); // Example: current date/time
echo "{p>Server time is: {strong>{$result}{/strong>{/p>";
} catch (Exception $e) {
echo '{p style="color:red;">Error: ' . esc_html($e->getMessage()) . '{/p>';
}

echo '{/div>';
}
WP Plugin



0
01/19/2026
Windows <=8 Server Services That Can Be Killed
administration speed up
Windows <=8



1745
09/09/2023
Windows <=8 Files Removing Admin Rights Protects Against Most Vulnerabilities
administrator privilages
Windows <=8



2162
09/09/2023
Mysql Database MySQL ALTER TABLE Statement
alter table drop add modify
ALTER TABLE prices
ADD COLUMN inventory smallint AFTER invoice;

ALTER TABLE eqMaintenance ADD COLUMN filter2id smallint AFTER filterid

ALTER TABLE filters ADD COLUMN model varchar(75) AFTER description
ALTER TABLE filters ADD COLUMN code varchar(10) AFTER model

ALTER TABLE filters ADD COLUMN cost decimal (10,2) AFTER type_of
ALTER TABLE fertilizer_applied ADD COLUMN crop_year smallint AFTER acres

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


increase size:
ALTER TABLE table_name MODIFY COLUMN column_name SMALLINT;
ALTER TABLE `bible` MODIFY COLUMN `chapter` SMALLINT;
ALTER TABLE `transactions` MODIFY `description` varchar (400);
ALTER TABLE `lastbackup` MODIFY `source` varchar (500);
ALTER TABLE `fertilizer_applied` MODIFY `comments` varchar (400);

ALTER TABLE `purchases` MODIFY `description` varchar (400);
ALTER TABLE `equipment_photo` MODIFY `caption` varchar (100);


MySQL ALTER TABLE Statement
The ALTER TABLE statement is used to add, delete, or modify columns in an existing table.

The ALTER TABLE statement is also used to add and drop various constraints on an existing table.

ALTER TABLE - ADD Column
To add a column in a table, use the following syntax:

ALTER TABLE table_name
ADD column_name datatype;
The following SQL adds an "Email" column to the "Customers" table:

ExampleGet your own SQL Server
ALTER TABLE Customers
ADD Email varchar(255);
ALTER TABLE - DROP COLUMN
To delete a column in a table, use the following syntax (notice that some database systems don't allow deleting a column):

ALTER TABLE table_name
DROP COLUMN column_name;
The following SQL deletes the "Email" column from the "Customers" table:

Example
ALTER TABLE Customers
DROP COLUMN Email;
ALTER TABLE - MODIFY COLUMN
To change the data type of a column in a table, use the following syntax:

ALTER TABLE table_name
MODIFY COLUMN column_name datatype;
Mysql



0
12/02/2023
WP Archive Saved Android Video Text
android
 











00:00:00 hidden setting in gallary app
00:13:13 settings -> search for gallery -> Gallery App info -> Mobile data ->
turn off Allow background data usage
00:33:02 <- Battery -> Restricted
00:39:09 <- Appear on top or draw on top -> Allow permission - off
00:46:24 Open gallery app -> 3bar menu rigth corner ->
00:58:00 Settings -> About Gallery -> Tap on version# 5times fast
01:06:22 <- Gallery labs -> Samsungs hidden tool list ->
01:21:05 When receiving Samsung update
01:28:14 Enabled trackers to turn off
01:35:28 SETTINGS -> Google Services -> All Services ->
01:58:09 personalize using shared data -> turn all 3 or 4 listed off
02:07:26 SETTINGS -> Apps -> 3dots right -> Special Access ->
-- usage dat access -> Google ->
02:23:27 Disable all 3 Google entities
02:30:07 3 setting to always turn off ->
02:43:20 SETTINGS -> privacy & security -> more privacy settings ->
--- Personal data intelegence -> Turn off
03:18:08 <- usage & diagnostics -> turn off
03:35:03 END
[video width="720" height="486" mp4="https://softwarewebdesign.com/SWDHome/wp-content/uploads/2025/12/android20251230.mp4"][/video]

video
00:00:00 Dangerous setting to turn off on Android phone
00:03:28 Open Settings
00:06:00 Click on about phone
00:08:07 Next Software Information
00:09:29 Next Build Number (click 7 times) Developer Mode activated
00:12:12 Go back main settings
00:16:26 Click Developer options on bottom
00:21:09 Go System Tracing
00:23:13 Turn off Trace Debugable Applications
00:28:27 Next Per-CPU buffer size
00:31:23 Use 8192 KB
00:34:17 Clear saved traces
00:41:18 Secret Wi-Fi menu-
- Developer options->Wi-Fi non-persistent MAC->ON
01:33:17 Getting rid of ads
Settings-> Connection - more connection settings->private DNS->private DNS provider->
dns.adguard.com->save
02:33:21 Google reporting - Settings app->Usage & diagnostics (turn off)->
02:49:02 Google reporting 2
- Settings app->digital wellbeing & parental controls->3 dots top->
- Settings->usage data access->settings->turn off access
03:10:11 Google reporting 3
- Settings app->digital wellbeing->customization services->switch off
03:29:07 Secret codes -
- *#62# forwarded calls
03:48:05 Secret codes -
- ##21# call forwarding unconditionally erasure
04:13:01 Secret codes -
- *#06# phone info
04:22:04 parasitic setting -
04:54:20 - Settings app->digital wellbeing & parental controls->3 dots top->
- Settings->usage data access->Settings->allow permissions->OFF
05:22:08 Spying on your phone
05:34:15 Check tracking -
- Settings app->search (spy glass)->type; tracker->unknown tracker alerts->allow alerts-
- manual scan->view report
05:59:13 trackers2
- Settings app-> Security & privacy->permission used 24 hr->three dots -
- Show system apps->permissions tab->physical activity->customization service->See all custom {link}
some apps may require permissions to work
06:41:19 Creation of the developer menu in settings- repeat
07:14:13 END
 

[video width="480" height="720" mp4="https://softwarewebdesign.com/SWDHome/wp-content/uploads/2025/12/AndroidDangerousSettings.mp4"][/video]

 
WP



5
12/22/2022
Vb.net Setup Have Application Run In The Background
application background process file explorer

http://www.dreamincode.net/forums/topic/59527-make-a-program-to-run-in-the-background/



This tutorial deals with how to make a standard VB.NET application run
in the background, like a process. By background i mean that the
application will have no interface (form or console) and will run from a
Sub Main(), but will not terminate once all the code in Main has
executed. That means your program will run like a normal form
application, and will only exit when told to. First, create a standard
Windows Form application. Then, go to the solution explorer, and double
click on the item that says My Project.

[attachment=7480:attachment]

Once that is opened, you should see something like this

[attachment=7484:attachment]

There are a few very simple things you need to change there. First,
uncheck the box that says "Enable Application Framework". Then, go to
the box that says "Startup Object:" and change that to Sub Main. Then,
delete the form that was put in your application automatically. By now,
you should notice that there is no startup object in your application.
In fact, there is no Code in your application. So, you need to add a Sub Main in. Add a new module to your application (call it anything you want). Then, add this sub into your module:

1Sub Main()
2 'This will execute when your application
3 'starts up. This is the equivilent of a
4 'Form_Load event in a form application.
5 'Put whatever code you want in this sub,
6 'but make sure you end it with this statement:
7 Application.Run()
8End Sub


Let me explain exactly what this is doing. When you changed the startup
object to Sub Main, you application will execute from a Main routine,
like a console application, so what is stopping it from showing a
console window? Notice the box that says "Application Type:". You will
see that that is set to "Windows Form Application". When you create a
console application, that box is set to "Console Application". When you
create any windows form application, there, of course, is no console
window. That is because the application has a type of "Windows Form
Application", which basically means your application will not show a
console. Of course, in Consle Applications, there are no forms. So what
happens when you application's type is Windows Form Application, and
there is no form in it? Your program will have no interface at all. But,
even though your application is called a Windows Form Application, it
will still exit once all the code in Sub Main has executed, like a
console application. To prevent that, you must have a line at the end of your Main routine that says Application.Run().
That line will prevent your application from closing right after Main
has finished. Now, it will run like a standard form application, just
with no form, and the only way you can close it is with an Application.Exit()
call. And it's as simple as that. You can treat the module your main
routine is in as if it was the code for your form. The only difference
is, there is no form, and you can't add controls to it in the designer
(because there is no interface there to design). So, for example, if you
wanted to add a timer to your application, you can't just drag-and-drop
it on the form, you have to get down and dirty and add it in manually,
with something like this

1Friend WithEvents Timer1 As New Timer()


That will create a timer object, exactly as if it was created by the
designer. To add a tick event handler for it, go to the box near the
top-left of the code editor. Select the item that says "Timer1", or
whatever you called your timer. Then, select the box next to it and it
will show a list of events for that control. Click the one you want,
Tick in this case, and it will add an event handler for that event
directly into your code.

Private Sub laPath_DoubleClick(sender As Object, e As EventArgs) Handles laPath.DoubleClick
Dim filePath As String = laPath.Text 'Example file
Process.Start("explorer.exe", "/select," & filePath) : Application.DoEvents()
End Sub
Vb.net



1215
09/09/2023
Vb.net Customizing Close Running Processes
application close running
Windows

VB.Net Close window by title



Top Answer

Answered Jun 29, 2012 · 6 votes

Try using something like this. using Process.MainWindowTitle


to get the Title Text and Process.CloseMainWindow


to close down the UI, its a little more graceful than killing the Process.

Note: Contains does a case-sensitive search

Imports System.Diagnostics
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Notepad") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module

Display processes running


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 + "]")
End If
Next
End Sub
Vb.net



1
07/21/2025
Php Variables Using Arrays
array
Php



2
09/09/2023
Vb.net Variables Create New Arrays
array null
Read through entire array
For Each fruit As String In MV
Console.WriteLine(fruit)
Next

max number of elements array.length
For L = 0 To MV.GetUpperBound(0) elements stored



Either

Dim strings = New String() {"a", "b", "c"}
or

Dim strings() As String = {"a", "b", "c"}
or strings() As String = {}
should work
Vb.net



2
09/09/2023
WP Themes Customizing Executive Pro Theme Html5
article header executive pro
Genesis Framework
WP Themes



1287
09/09/2023
Html Formatting Ascii Table Improved
ascii
Ascii Lookup
DEC OCT HEX BIN Symbol HTML Number HTML Name Description
00000000000000NUL?? Null character
10010100000001SOH? Start of Heading
20020200000010STX? Start of Text
30030300000011ETX? End of Text
40040400000100EOT? End of Transmission
50050500000101ENQ? Enquiry
60060600000110ACK? Acknowledge
70070700000111BEL? Bell, Alert
80100800001000BS? Backspace
90110900001001HT ? Horizontal Tab
100120A00001010LF? Line Feed
110130B00001011VT? Vertical Tabulation
120140C00001100FF ? Form Feed
130150D00001101CR? Carriage Return
140160E00001110SO? Shift Out
150170F00001111SI? Shift In
160201000010000DLE? Data Link Escape
170211100010001DC1? Device Control One (XON)
180221200010010DC2? Device Control Two
190231300010011DC3? Device Control Three (XOFF)
200241400010100DC4? Device Control Four
210251500010101NAK? Negative Acknowledge
220261600010110SYN? Synchronous Idle
230271700010111ETB? End of Transmission Block
240301800011000CAN? Cancel
250311900011001EM? End of medium
260321A00011010SUB? Substitute
270331B00011011ESC? Escape
280341C00011100FS? File Separator
290351D00011101GS? Group Separator
300361E00011110RS? Record Separator
310371F00011111US? Unit Separator


DEC OCT HEX BIN Symbol HTML Number HTML Name Description
320402000100000SP ? Space
330412100100001!!!Exclamation mark
340422200100010"""Double quotes (or speech marks)
350432300100011###Number sign
360442400100100$$$Dollar
370452500100101%%%Per cent sign
380462600100110&&&Ampersand
390472700100111'''Single quote
400502800101000((&lparen;Open parenthesis (or open bracket)
410512900101001))&rparen;Close parenthesis (or close bracket)
420522A00101010***Asterisk
430532B00101011+++Plus
440542C00101100,,,Comma
450552D00101101--? Hyphen-minus
460562E00101110...Period, dot or full stop
470572F00101111///Slash or divide
48060300011000000? Zero
49061310011000111? One
50062320011001022? Two
51063330011001133? Three
52064340011010044? Four
53065350011010155? Five
54066360011011066? Six
55067370011011177? Seven
56070380011100088? Eight
57071390011100199? Nine
580723A00111010:::Colon
590733B00111011;;;Semicolon
600743C00111100<<<Less than (or open angled bracket)
610753D00111101===Equals
620763E00111110>>>Greater than (or close angled bracket)
630773F00111111???Question mark
641004001000000@@@At sign
651014101000001AA? Uppercase A
661024201000010BB? Uppercase B
671034301000011CC? Uppercase C
681044401000100DD? Uppercase D
691054501000101EE? Uppercase E
701064601000110FF? Uppercase F
711074701000111GG? Uppercase G
721104801001000HH? Uppercase H
731114901001001II? Uppercase I
741124A01001010JJ? Uppercase J
751134B01001011KK? Uppercase K
761144C01001100LL? Uppercase L
771154D01001101MM? Uppercase M
781164E01001110NN? Uppercase N
791174F01001111OO? Uppercase O
801205001010000PP? Uppercase P
811215101010001QQ? Uppercase Q
821225201010010RR? Uppercase R
831235301010011SS? Uppercase S
841245401010100TT? Uppercase T
851255501010101UU? Uppercase U
861265601010110VV? Uppercase V
871275701010111WW? Uppercase W
881305801011000XX? Uppercase X
891315901011001YY? Uppercase Y
901325A01011010ZZ? Uppercase Z
911335B01011011[[[Opening bracket
921345C01011100Backslash
931355D01011101]]]Closing bracket
941365E01011110^^^Caret - circumflex
951375F01011111___Underscore
961406001100000```Grave accent
971416101100001aa? Lowercase a
981426201100010bb? Lowercase b
991436301100011cc? Lowercase c
1001446401100100dd? Lowercase d
1011456501100101ee? Lowercase e
1021466601100110ff? Lowercase f
1031476701100111gg? Lowercase g
1041506801101000hh? Lowercase h
1051516901101001ii? Lowercase i
1061526A01101010jj? Lowercase j
1071536B01101011kk? Lowercase k
1081546C01101100ll? Lowercase l
1091556D01101101mm? Lowercase m
1101566E01101110nn? Lowercase n
1111576F01101111oo? Lowercase o
1121607001110000pp? Lowercase p
1131617101110001qq? Lowercase q
1141627201110010rr? Lowercase r
1151637301110011ss? Lowercase s
1161647401110100tt? Lowercase t
1171657501110101uu? Lowercase u
1181667601110110vv? Lowercase v
1191677701110111ww? Lowercase w
1201707801111000xx? Lowercase x
1211717901111001yy? Lowercase y
1221727A01111010zz? Lowercase z
1231737B01111011{{{Opening brace
1241747C01111100|||Vertical bar
1251757D01111101}}}Closing brace
1261767E01111110~~˜Equivalency sign - tilde
1271777F01111111DEL? Delete



DEC OCT HEX BIN Symbol HTML Number HTML Name Description
1282008010000000€€€Euro sign
1292018110000001 Unused
1302028210000010‚‚‚Single low-9 quotation mark
1312038310000011ƒƒƒLatin small letter f with hook
1322048410000100„„„Double low-9 quotation mark
1332058510000101………Horizontal ellipsis
1342068610000110 Dagger
1352078710000111‡‡‡Double dagger
1362108810001000ˆˆˆModifier letter circumflex accent
1372118910001001‰‰‰Per mille sign
1382128A10001010 Latin capital letter S with caron
1392138B10001011‹‹‹Single left-pointing angle quotation
1402148C10001100ŒŒŒLatin capital ligature OE
1412158D10001101 Unused
1422168E10001110ŽŽŽLatin capital letter Z with caron
1432178F10001111 Unused
1442209010010000 Unused
1452219110010001‘‘‘Left single quotation mark
1462229210010010’’’Right single quotation mark
1472239310010011“““Left double quotation mark
1482249410010100”””Right double quotation mark
1492259510010101•••Bullet
1502269610010110–––En dash
1512279710010111———Em dash
1522309810011000˜˜˜Small tilde
1532319910011001™™™Trade mark sign
1542329A10011010šššLatin small letter S with caron
1552339B10011011›››Single right-pointing angle quotation mark
1562349C10011100œœœLatin small ligature oe
1572359D10011101 Unused
1582369E10011110žžžLatin small letter z with caron
1592379F10011111ŸŸŸLatin capital letter Y with diaeresis
160240A010100000NBSP Non-breaking space
161241A110100001¡¡¡Inverted exclamation mark
162242A210100010¢¢¢Cent sign
163243A310100011£££Pound sign
164244A410100100¤¤¤Currency sign
165245A510100101¥¥¥Yen sign
166246A610100110¦¦¦Pipe, broken vertical bar
167247A710100111§§§Section sign
168250A810101000¨¨¨Spacing diaeresis - umlaut
169251A910101001©©©Copyright sign
170252AA10101010ªªªFeminine ordinal indicator
171253AB10101011«««Left double angle quotes
172254AC10101100¬¬¬Negation
173255AD10101101­SHY­­Soft hyphen
174256AE10101110®®®Registered trade mark sign
175257AF10101111¯¯¯Spacing macron - overline
176260B010110000°°°Degree sign
177261B110110001±±±Plus-or-minus sign
178262B210110010²²²Superscript two - squared
179263B310110011³³³Superscript three - cubed
180264B410110100´´´Acute accent - spacing acute
181265B510110101µµµMicro sign
182266B610110110¶¶¶Pilcrow sign - paragraph sign
183267B710110111···Middle dot - Georgian comma
184270B810111000¸¸¸Spacing cedilla
185271B910111001¹¹¹Superscript one
186272BA10111010ºººMasculine ordinal indicator
187273BB10111011»»»Right double angle quotes
188274BC10111100¼¼¼Fraction one quarter
189275BD10111101½½½Fraction one half
190276BE10111110¾¾¾Fraction three quarters
191277BF10111111¿¿¿Inverted question mark
192300C011000000ÀÀÀLatin capital letter A with grave
193301C111000001ÁÁÁLatin capital letter A with acute
194302C211000010ÂÂÂLatin capital letter A with circumflex
195303C311000011ÃÃÃLatin capital letter A with tilde
196304C411000100ÄÄÄLatin capital letter A with diaeresis
197305C511000101ÅÅÅLatin capital letter A with ring above
198306C611000110ÆÆÆLatin capital letter AE
199307C711000111ÇÇÇLatin capital letter C with cedilla
200310C811001000ÈÈÈLatin capital letter E with grave
201311C911001001ÉÉÉLatin capital letter E with acute
202312CA11001010 ÊÊÊLatin capital letter E with circumflex
203313CB11001011ËËËLatin capital letter E with diaeresis
204314CC11001100ÌÌÌLatin capital letter I with grave
205315CD11001101ÍÍÍLatin capital letter I with acute
206316CE11001110ÎÎÎLatin capital letter I with circumflex
207317CF11001111ÏÏÏLatin capital letter I with diaeresis
208320D011010000ÐÐÐLatin capital letter ETH
209321D111010001ÑÑÑLatin capital letter N with tilde
210322D211010010ÒÒÒLatin capital letter O with grave
211323D311010011ÓÓÓLatin capital letter O with acute
212324D411010100ÔÔÔLatin capital letter O with circumflex
213325D511010101ÕÕÕLatin capital letter O with tilde
214326D611010110ÖÖÖLatin capital letter O with diaeresis
215327D711010111×××Multiplication sign
216330D811011000ØØØLatin capital letter O with slash
217331D911011001ÙÙÙLatin capital letter U with grave
218332DA11011010ÚÚÚLatin capital letter U with acute
219333DB11011011ÛÛÛLatin capital letter U with circumflex
220334DC11011100ÜÜÜLatin capital letter U with diaeresis
221335DD11011101ÝÝÝLatin capital letter Y with acute
222336DE11011110ÞÞÞLatin capital letter THORN
223337DF11011111ßßßLatin small letter sharp s - ess-zed
224340E011100000 Latin small letter a with grave
225341E111100001áááLatin small letter a with acute
226342E211100010âââLatin small letter a with circumflex
227343E311100011ãããLatin small letter a with tilde
228344E411100100äääLatin small letter a with diaeresis
229345E511100101åååLatin small letter a with ring above
230346E611100110æææLatin small letter ae
231347E711100111çççLatin small letter c with cedilla
232350E811101000èèèLatin small letter e with grave
233351E911101001éééLatin small letter e with acute
234352EA11101010êêêLatin small letter e with circumflex
235353EB11101011ëëëLatin small letter e with diaeresis
236354EC11101100ìììLatin small letter i with grave
237355ED11101101íííLatin small letter i with acute
238356EE11101110îîîLatin small letter i with circumflex
239357EF11101111ïïïLatin small letter i with diaeresis
240360F011110000ðððLatin small letter eth
241361F111110001ñññLatin small letter n with tilde
242362F211110010òòòLatin small letter o with grave
243363F311110011óóóLatin small letter o with acute
244364F411110100ôôôLatin small letter o with circumflex
245365F511110101õõõLatin small letter o with tilde
246366F611110110öööLatin small letter o with diaeresis
247367F711110111÷÷÷Division sign
248370F811111000øøøLatin small letter o with slash
249371F911111001ùùùLatin small letter u with grave
250372FA11111010úúúLatin small letter u with acute
251373FB11111011ûûûLatin small letter u with circumflex
252374FC11111100üüüLatin small letter u with diaeresis
253375FD11111101ýýýLatin small letter y with acute
254376FE11111110þþþLatin small letter thorn
255377FF11111111ÿÿÿLatin small letter y with diaeresis
Html



1
09/24/2025
Php Formatting Remove Ascii > 127
ascii remove delete
String Cleanup
Php



0
03/07/2024
Css Archive Assembly.css Backup
assembly css floating header line height
Library

1st part runs everything. Rest formatting is in the xxxCustom.css and floatingheader.css


//* begin auto css 4.2020.801.1875 */
input, textarea, select,a {font-family:verdana;font-size:10pt;margin-top:3px;}
/* Checkbox element, when checked */
input[type="checkbox"] {
box-shadow: 0 0 0 1px hotpink;
}
table.reportActionTable {max-width:1200px;min-width:800px;}
td.viewnumber{text-align:right;}
.button_cell{min-width:125px;}
.tableInput {min-width:100px;}
table.formtablewidth {width:100%;max-width:600px;}
textarea.textareaDimension{ width:98%; min-height: 100px; }
textarea.descriptionPUR { height:300px; }
textarea.descriptionFIL { height:200px; }
textarea.NoteBox{ width:100%; max-width:600px; min-width:400px; min-height: 300px; }
hr.cell_split{color:red;}
img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;font-size:10pt;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:27px;margin-top:0px;font-size:10pt;font-family:Verdana}
p{font-family:verdana;font-size:12pt}
p.menu{font-family:verdana;font-size:12pt;margin-right:20px;margin-top:.5em}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt}
tr.alt{background-color:#FFEFD5;}
td{font-family:verdana;font-size:10pt;border:1px solid #000000;padding:3px;}
td.debt{color:red;}
div {font-size:10pt;zoom:1;}
div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; }
.navletters {margin:0 7px 0 7px; }
h1 {font-size:26pt; }
textarea.descriptionLED {height:250px; }
..ui-datepicker.ui-datepicker-multi {
min-width: 30% !important; /* Makes the multi-month datepicker responsive to its parent container */
}
.ui-datepicker {
min-width: 38em; /* Adjust the pixel value as needed .ui-datepicker table { width: 100%; } */
font-size: 10pt; /* Adjust font size to fit more months if necessary */
}
@media screen and (max-width: 1100px) {
body{ zoom:1;}
}
/* end auto css 4.2020.801.1875 */



Old archived stuff


.navletters{margin:0 5px 0 10px;}
.fertilizer {font-size:14pt;margin-left:75px;page-break-after: always;}
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}
.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;
}
input.txwhere {min-width:300px;}
table.formtablewidth {width:100%;max-width:800px;}
table.reportActionTable {max-width:1200px;min-width:800px;}
textarea.textareaDimension{ width:100%;min-height: 200px; }
hr.cell_split{color:red;}

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:25px;margin-top:0px;font-size:10pt;font-family:Verdana}
/* body {min-width:4150px;} */
p{font-family:verdana;font-size:10pt}
p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt;}
tr.alt{background-color:#D1EED0;}
td{font-family:verdana;font-size:8pt;border:1px solid #000000;padding:3px;}
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;max-width:450px;max-height:150px; }

#lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100% ; }

#imageData{ padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; outline: none;}

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
Css



8
01/22/2025
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



0
01/22/2025
_Misc Software Customizing Modify Output In Davinci Resolve 18
audio render mp4 shortcut
DAVINCI RESOLVE
[Audio]
To change the volume of your audio in DaVinci Resolve, go to the “Edit” page (bottom) and select the clip you want to adjust in the timeline. Open the “Inspector” tab (top right-hand corner), click on the “Audio” sub-tab, and adjust the value next to “Volume“.

[image]
How to Change the Duration of a Still Image in DaVinci Resolve?
Go to the menu “DaVinci Resolve” > “Preferences”.
Click on the “User” tab.
Click on the “Editing” option.
Under “General Settings”, change the “Standard Still Duration” value to your desired one, say, 3 seconds.
Click on “Save“.

[Render]
Select deliver bottom screen. I use mp4 - H.264 , 720 x 480 NTSC, 30 frames per second with a medium quality for uploading

[How to Move Multiple Clips at Once in DaVinci Resolve]
To move multiple clips in DaVinci Resolve, simply press “Ctrl” or “Command” on your keyboard while selecting the clips you want to move. Then drag the selected clips to move them. You can also select all the clips on the right-hand side of the playhead by pressing shortcut “Alt + Y” or “Option + Y”.

[SPLIT CLIP]
To split a clip in DaVinci Resolve, place the timeline playhead where you want to split it. Then, simply press the shortcut “Ctrl or Command + B” or “Ctrl or Command + “. Alternatively, you can click on “Timeline > Split Clip” located in the upper left-hand corner of Resolve.

[Shortcuts]
J - Play in reverse
K - Pause play
L - Play Forward
Alt + left click ->Select either audio or video based on click
Alt + y ->Selects everything right of the marker.

ctrl + A ->Selects everything
Ctrl + B ->Split clip
Ctrl + G ->close clip gaps. I created this
_Misc Software



2
09/09/2023
Windows <=8 Customizing Making Changes To Your Computer
auto dim pc settings control panel
Like windows 7 you can use the control panel to adjust the power management and hardware settings. Windows 8 has the PC Settings in the right bar under "SETTINGS" that also has options. My Samsung computer would dim every time it would boot up and I would take it to the place I bought and could not create it. After several hours of frustration I found an auto dim setting that I unchecked. Make sure you look here also
Windows <=8



1916
09/09/2023
Javascript Text Box Move To Next Field Automatically When Textbox Is Full
auto move text box event keycode focus
function moveOn(field,nextFieldID,e){
var unicode=e.keyCode? e.keyCode : e.charCode
if(unicode!=39 && unicode!=37){
if(field.value.length >= field.maxLength){
document.getElementById(nextFieldID).focus();
}
}
}


-
-
";
Javascript



1542
09/09/2023
_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



0
07/21/2025
Css Formatting Background Changes
background css fixed url background-
Css



1621
09/09/2023
Windows <=8 Formatting Unable To Change Desktop Background In Windows 7
background wallpaper
Windows <=8



1256
09/09/2023
Windows <=8 Hardware Laptop Battery Calibration For Windows:
battery calibration
Windows <=8



239
09/09/2023
Javascript Function Bearing
Bearing heading latitude longitude
GPS
Javascript



2
09/09/2023
Windows <=8 Hardware Why Bluetooth Mouse Keeps On Disconnecting In Windows 8?
Bluetooth mouse disconnect device manager power setting manual automatic
When I start win8, my bluetooth mouse works perfectly but after awhile, in stop working. I turn the power of the mouse off and turn it on again to make it work again. But after awhile, it stop working again, so I turn the mouse off and on again to make it work. When the mouse stop working, the light of the mouse is still on therefore I know the mouse is still working but the notebook stops responding to the mouse. The touch pad doesn't have any problem. I don't have this problem in win7.

option 1
Check Device Manager and expanded the Bluetooth menu. I right clicked on each item and selected Properties until I found the one that had a Power Management. Mine happened to be Bluetooth Module. Once I got into the Power Management setting I unchecked 'Allow the computer to turn off this device to save power'.

Option2:
Some exotic things can cause Bluetooth interruption. Check the physical space for any device that puts off a large amount of electromagnetic radiation, such as a big microwave or certain kinds of industrial equipment. These devices actually corrupt the radio waves that Bluetooth devices use to communicate. Battery failure is another common cause of patchy reception. If the batteries are fine, check the power settings as Windows 8 sometimes turns off devices that aren’t in use. The power settings are available from the Settings charm, or by pressing Windows+I.

Some devices may simply not have a fix yet and a bit of time and patience may be required while new problems with Windows 8 are discovered and fixed. Tech support should be notified of any devices that do not yet have an available fix, so that Microsoft can begin work on a patch. Calling the device’s manufacturer for a fix may also be necessary, as there are some things Microsoft cannot fix from their end.
http://windows7themes.net/fix-windows-8-bluetooth-problems-mouse-disconnects.html

Option3:
Bluetooth Problem In Windows 8.1

There are unusual Bluetooth problem in windows 8.1. In Windows 8.1 my Bluetooth mouse, keyboard and headphones were already paired but not able to connect. The blue tooth device connect my wireless Bluetooth devices for few Seconds and then disconnect and searching again and again. My Bluetooth device disconnect again and again and Shows a Error “The btvstack could not be started”. So follow below steps to solve this problem. [tested in dell inspiron and working for all dell laptops].
FIX: Bluetooth Not Working In Windows 8.1
Step 1:

→ Go to RUN (Windows Logo + R) and type “services.msc” and Enter.
Step 2:

→ Now find “Bluetooth Support Service” and double click on it.
Step 3:

→ In General Tab change startup type Manual to Automatic.
Step 4:

→ Now click on Log On Tab and mark on “This Account” and type your account name or browse to find your account name.
Step 5:

→ Now remove both hidden password and restart your PC.

Step 6:

→ Now Re install your Bluetooth drivers. You can download latest Bluetooth drivers from your PC official website.
Step 7:

→ If Bluetooth drivers not compatible with Windows 8.1 then follow simple steps.
Step 7a:

→ Go to RUN(Windows logo + R) and type “regedit” to open registry editor.
Step 7b:

→ In registry editor go to HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion
Step 7c:

→ In Current Version find Current version and change the value 6.3 to 6.2.

→ Now check your Bluetooth device, If you have any question about this problem please comment below.
http://www.wiknix.com/solved-bluetooth-device-not-working-in-windows-8-1/
Windows <=8



1500
09/09/2023
Css Formatting Fieldsets And Legends
border box fieldset legend
Web
Css



1447
09/09/2023
Css Formatting Creating And Styling Borders
border property color size
Web
Css



3
09/09/2023
Css Formatting Force Long Text And Urls To Wrap On All Browser
break url cell
Css



2
09/09/2023
Php Date Mktime - Create New Date
build date new date
Php



2
09/09/2023
Css Formatting Bullets And Numbering
bullets li ul ol
Css



2134
09/09/2023
Javascript Link Using A Button As A Hyperlink
button hyperlink
With an ordinary HTML link using the tag you can target the page that the link refers to so that it will display in another window or frame. Of course the same can also be done from within Javascript.

To target the top of the current page and break out of any frameset currently in use you would use
in HTML. In Javascript you use:

top.location.href = 'page.htm';
To target the current page or frame you can use
in HTML. In Javascript you use:

self.location.href = 'page.htm';
To target the parent frame you can use
in HTML. In Javascript you use:

parent.location.href = 'page.htm';
To target a specific frame within a frameset you can use
in HTML. In Javascript you use:

top.frames['thatframe'].location.href = 'page.htm';
To target a specific iframe within the current page you can use
in HTML. In Javascript you use:

self.frames['thatframe'].location.href = 'page.htm';
or
parent.right.location.href= `Loads file into window or frame right`
Javascript



1624
09/09/2023
Microsoft Excel Form Button To Go To A Certain Sheet
button sheet
Microsoft Excel



2
09/09/2023
WP Customizing Turn Cache Off
cache
All
Delete the cache folder in wp-content/cache/ and also the W3TC configuration files and folders in wp-content, such as w3-total-cache-config.php, db.php, advanced-cache.php and the w3tc folder.

Delete any cache directives in wp-config.php, such as

define('WP_CACHE', true); //Added by WP-Cache Manager

define( 'WPCACHEHOME', '/home/public_html/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager

Delete any caching and expires headers directives in the root .htaccess file, too, such as bracketed by ## START W3TC ##, etc.

And be sure you have cleared your own browser cache.
WP



0
03/15/2025
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



0
08/21/2025
Javascript Form Input - First Caps
capital first onblur
Javascript



1596
09/09/2023
Css Formatting Centering A Table
center table
Css



1744
09/09/2023

Software Web Design