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 | ABCDEFGHIJKLMNOPQRSTUVWXYZONPRTOFF codeid operationid title keywords application code languageid show_html show_iframe make_public viewed viewed_date language operation <- Look Inside DataConditions: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 Javascript Object .select(); Clipboard Clipboard object of document.getElementById().select; Click on the button to copy the text from the text field. Try to paste the text (e.g. ctrl+v) afterwards in a different window, to see the effect. Copy text Dim dbs As Database Dim rs As Recordset Dim strSQL As String Set dbs = CurrentDb strSQL = 'your query here Set rs = dbs.OpenRecordset(strSQL) If Not (rs.EOF And rs.BOF) Then rs.MoveFirst 'get results using rs.Fields() Else 'Use results rs.MoveFirst Do While Not rs.EOF 'do something like rs("SomeFieldName") rs.MoveNext Loop DoCmd.SetWarnings False DoCmd.RunSQL "DELETE * FROM NameOfTable" DoCmd.SetWarnings True Sub InsertIntoX2() Dim dbs As Database ' Modify this line to include the path to Northwind ' on your computer. Set dbs = OpenDatabase("Northwind.mdb") ' Create a new record in the Employees table. The ' first name is Harry, the last name is Washington, ' and the job title is Trainee. dbs.Execute " INSERT INTO Employees " _ & "(FirstName,LastName, Title) VALUES " _ & "('Harry', 'Washington', 'Trainee');" dbs.Close End Sub Javascript 0 07/29/2022 WP Database Access Wordpress Connection String connection string wordpress Source File wpdb() is located in wp-includes/wp-db.php. "$wbdb->dbh" WP 2 09/09/2023 Php Date Add Day add day $date = date('m/d/Y',strtotime($date.' + 2 days')); [compare difference] $date = date('Y-m-d',strtotime(date('Y-m-d').' + 10 days')); $priority="";if(strtotime($date)>strtotime($daterequested)) $priority="!"; [Subraction] $date = date('Y-m-d',strtotime(date('Y-m-d'))-(10*24*60*60)); "; echo (31*24); ?> Php 3 09/09/2023 Mysql Date ADDDATE - Mysql add date mysql Update adds Set durationdays=ADDDATE(now(),INTERVAL 30 DAY) WHERE addid=15 Date and Time Functions This section describes the functions that can be used to manipulate temporal values. See section 6.2.2 Date and Time Types for a description of the range of values each date and time type has and the valid formats in which values may be specified. Here is an example that uses date functions. The following query selects all records with a date_col value from within the last 30 days: mysql> SELECT something FROM tbl_name WHERE TO_DAYS(NOW()) - TO_DAYS(date_col) <= 30; eqMaintenance.intervalof-(TO_DAYS(NOW())- TO_DAYS(equipment.date_done) (Note that the query will also select records with dates that lie in the future.) Functions that expect date values usually will accept datetime values and ignore the time part. Functions that expect time values usually will accept datetime values and ignore the date part. Functions that return the current date or time each are evaluated only once per query at the start of query execution. This means that multiple references to a function such as NOW() within a single query will always produce the same result. This principle also applies to CURDATE(), CURTIME(), UTC_DATE(), UTC_TIME(), UTC_TIMESTAMP(), and any of their synonyms. The return value ranges in the following function descriptions apply for complete dates. If a date is a ``zero'' value or an incomplete date such as '2001-11-00', functions that extract a part of a date may return 0. For example, DAYOFMONTH('2001-11-00') returns 0. ADDDATE(date,INTERVAL expr type) ADDDATE(expr,days) When invoked with the INTERVAL form of the second argument, ADDDATE() is a synonym for DATE_ADD(). The related function SUBDATE() is a synonym for DATE_SUB(). mysql> SELECT DATE_ADD('1998-01-02', INTERVAL 31 DAY); -> '1998-02-02' mysql> SELECT ADDDATE('1998-01-02', INTERVAL 31 DAY); -> '1998-02-02' As of MySQL 4.1.1, the second syntax is allowed, where expr is a date or datetime expression and days is the number of days to be added to expr. mysql> SELECT ADDDATE('1998-01-02', 31); -> '1998-02-02' ADDTIME(expr,expr2) ADDTIME() adds expr2 to expr and returns the result. expr is a date or datetime expression, and expr2 is a time expression. mysql> SELECT ADDTIME("1997-12-31 23:59:59.999999", "1 1:1:1.000002"); -> '1998-01-02 01:01:01.000001' mysql> SELECT ADDTIME("01:00:00.999999", "02:00:00.999998"); -> '03:00:01.999997' ADDTIME() was added in MySQL 4.1.1. CURDATE() Returns the current date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context: mysql> SELECT CURDATE(); -> '1997-12-15' mysql> SELECT CURDATE() + 0; -> 19971215 CURRENT_DATE CURRENT_DATE() CURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE(). CURTIME() Returns the current time as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT CURTIME(); -> '23:50:26' mysql> SELECT CURTIME() + 0; -> 235026 CURRENT_TIME CURRENT_TIME() CURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME(). CURRENT_TIMESTAMP CURRENT_TIMESTAMP() CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). DATE(expr) Extracts the date part of the date or datetime expression expr. mysql> SELECT DATE('2003-12-31 01:02:03'); -> '2003-12-31' DATE() is available as of MySQL 4.1.1. DATEDIFF(expr,expr2) DATEDIFF() returns the number of days between the start date expr and the end date expr2. expr and expr2 are date or date-and-time expressions. Only the date parts of the values are used in the calculation. mysql> SELECT DATEDIFF('1997-12-31 23:59:59','1997-12-30'); -> 1 mysql> SELECT DATEDIFF('1997-11-31 23:59:59','1997-12-31'); -> -30 DATEDIFF() was added in MySQL 4.1.1. DATE_ADD(date,INTERVAL expr type) DATE_SUB(date,INTERVAL expr type) These functions perform date arithmetic. As of MySQL Version 3.23, INTERVAL expr type is allowed on either side of the + operator if the expression on the other side is a date or datetime value. For the - operator, INTERVAL expr type is allowed only on the right side, because it makes no sense to subtract a date or datetime value from an interval. (See examples below.) date is a DATETIME or DATE value specifying the starting date. expr is an expression specifying the interval value to be added or subtracted from the starting date. expr is a string; it may start with a `-' for negative intervals. type is a keyword indicating how the expression should be interpreted. The following table shows how the type and expr arguments are related: type Value Expected expr Format SECOND SECONDS MINUTE MINUTES HOUR HOURS DAY DAYS MONTH MONTHS YEAR YEARS MINUTE_SECOND 'MINUTES:SECONDS' HOUR_MINUTE 'HOURS:MINUTES' DAY_HOUR 'DAYS HOURS' YEAR_MONTH 'YEARS-MONTHS' HOUR_SECOND 'HOURS:MINUTES:SECONDS' DAY_MINUTE 'DAYS HOURS:MINUTES' DAY_SECOND 'DAYS HOURS:MINUTES:SECONDS' DAY_MICROSECOND 'DAYS.MICROSECONDS' HOUR_MICROSECOND 'HOURS.MICROSECONDS' MINUTE_MICROSECOND 'MINUTES.MICROSECONDS' SECOND_MICROSECOND 'SECONDS.MICROSECONDS' MICROSECOND 'MICROSECONDS' The type values DAY_MICROSECOND, HOUR_MICROSECOND, MINUTE_MICROSECOND, SECOND_MICROSECOND, and MICROSECOND are allowed as of MySQL 4.1.1. MySQL allows any punctuation delimiter in the expr format. Those shown in the table are the suggested delimiters. If the date argument is a DATE value and your calculations involve only YEAR, MONTH, and DAY parts (that is, no time parts), the result is a DATE value. Otherwise, the result is a DATETIME value: mysql> SELECT '1997-12-31 23:59:59' + INTERVAL 1 SECOND; -> '1998-01-01 00:00:00' mysql> SELECT INTERVAL 1 DAY + '1997-12-31'; -> '1998-01-01' mysql> SELECT '1998-01-01' - INTERVAL 1 SECOND; -> '1997-12-31 23:59:59' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL 1 SECOND); -> '1998-01-01 00:00:00' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL 1 DAY); -> '1998-01-01 23:59:59' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL '1:1' MINUTE_SECOND); -> '1998-01-01 00:01:00' mysql> SELECT DATE_SUB('1998-01-01 00:00:00', -> INTERVAL '1 1:1:1' DAY_SECOND); -> '1997-12-30 22:58:59' mysql> SELECT DATE_ADD('1998-01-01 00:00:00', -> INTERVAL '-1 10' DAY_HOUR); -> '1997-12-30 14:00:00' mysql> SELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' mysql> SELECT DATE_ADD('1992-12-31 23:59:59.000002', -> INTERVAL '1.999999' SECOND_MICROSECOND); -> '1993-01-01 00:00:01.000001' If you specify an interval value that is too short (does not include all the interval parts that would be expected from the type keyword), MySQL assumes you have left out the leftmost parts of the interval value. For example, if you specify a type of DAY_SECOND, the value of expr is expected to have days, hours, minutes, and seconds parts. If you specify a value like '1:10', MySQL assumes that the days and hours parts are missing and the value represents minutes and seconds. In other words, '1:10' DAY_SECOND is interpreted in such a way that it is equivalent to '1:10' MINUTE_SECOND. This is analogous to the way that MySQL interprets TIME values as representing elapsed time rather than as time of day. Note that if you add to or subtract from a date value something that contains a time part, the result is automatically converted to a datetime value: mysql> SELECT DATE_ADD('1999-01-01', INTERVAL 1 DAY); -> '1999-01-02' mysql> SELECT DATE_ADD('1999-01-01', INTERVAL 1 HOUR); -> '1999-01-01 01:00:00' If you use really malformed dates, the result is NULL. If you add MONTH, YEAR_MONTH, or YEAR and the resulting date has a day that is larger than the maximum day for the new month, the day is adjusted to the maximum days in the new month: mysql> SELECT DATE_ADD('1998-01-30', interval 1 month); -> '1998-02-28' Note from the preceding example that the keyword INTERVAL and the type specifier are not case-sensitive. DATE_FORMAT(date,format) Formats the date value according to the format string. The following specifiers may be used in the format string: Specifier Description %M Month name (January..December) %W Weekday name (Sunday..Saturday) %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, etc.) %Y Year, numeric, 4 digits %y Year, numeric, 2 digits %X Year for the week where Sunday is the first day of the week, numeric, 4 digits; used with %V %x Year for the week, where Monday is the first day of the week, numeric, 4 digits; used with %v %a Abbreviated weekday name (Sun..Sat) %d Day of the month, numeric (00..31) %e Day of the month, numeric (0..31) %m Month, numeric (00..12) %c Month, numeric (0..12) %b Abbreviated month name (Jan..Dec) %j Day of year (001..366) %H Hour (00..23) %k Hour (0..23) %h Hour (01..12) %I Hour (01..12) %l Hour (1..12) %i Minutes, numeric (00..59) %r Time, 12-hour (hh:mm:ss followed by AM or PM) %T Time, 24-hour (hh:mm:ss) %S Seconds (00..59) %s Seconds (00..59) %f Microseconds (000000..999999) %p AM or PM %w Day of the week (0=Sunday..6=Saturday) %U Week (00..53), where Sunday is the first day of the week %u Week (00..53), where Monday is the first day of the week %V Week (01..53), where Sunday is the first day of the week; used with %X %v Week (01..53), where Monday is the first day of the week; used with %x %% A literal `%'. All other characters are just copied to the result without interpretation. The %f format specifier is available as of MySQL 4.1.1. As of MySQL Version 3.23, the `%' character is required before format specifier characters. In earlier versions of MySQL, `%' was optional. The reason the ranges for the month and day specifiers begin with zero is that MySQL allows incomplete dates such as '2004-00-00' to be stored as of MySQL 3.23. mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%W %M %Y'); -> 'Saturday October 1997' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%H:%i:%s'); -> '22:23:00' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%D %y %a %d %m %b %j'); -> '4th 97 Sat 04 10 Oct 277' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%H %k %I %r %T %S %w'); -> '22 22 10 10:23:00 PM 22:23:00 00 6' mysql> SELECT DATE_FORMAT('1999-01-01', '%X %V'); -> '1998 52' DAY(date) DAY() is a synonym for DAYOFMONTH(). It is available as of MySQL 4.1.1. DAYNAME(date) Returns the name of the weekday for date: mysql> SELECT DAYNAME('1998-02-05'); -> 'Thursday' DAYOFMONTH(date) Returns the day of the month for date, in the range 1 to 31: mysql> SELECT DAYOFMONTH('1998-02-03'); -> 3 DAYOFWEEK(date) Returns the weekday index for date (1 = Sunday, 2 = Monday, ... 7 = Saturday). These index values correspond to the ODBC standard. mysql> SELECT DAYOFWEEK('1998-02-03'); -> 3 DAYOFYEAR(date) Returns the day of the year for date, in the range 1 to 366: mysql> SELECT DAYOFYEAR('1998-02-03'); -> 34 EXTRACT(type FROM date) The EXTRACT() function uses the same kinds of interval type specifiers as DATE_ADD() or DATE_SUB(), but extracts parts from the date rather than performing date arithmetic. mysql> SELECT EXTRACT(YEAR FROM "1999-07-02"); -> 1999 mysql> SELECT EXTRACT(YEAR_MONTH FROM "1999-07-02 01:02:03"); -> 199907 mysql> SELECT EXTRACT(DAY_MINUTE FROM "1999-07-02 01:02:03"); -> 20102 mysql> SELECT EXTRACT(MICROSECOND FROM "2003-01-02 10:30:00.00123"); -> 123 FROM_DAYS(N) Given a daynumber N, returns a DATE value: mysql> SELECT FROM_DAYS(729669); -> '1997-10-07' FROM_DAYS() is not intended for use with values that precede the advent of the Gregorian calendar (1582), because it doesn't take into account the days that were lost when the calendar was changed. FROM_UNIXTIME(unix_timestamp) FROM_UNIXTIME(unix_timestamp,format) Returns a representation of the unix_timestamp argument as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT FROM_UNIXTIME(875996580); -> '1997-10-04 22:23:00' mysql> SELECT FROM_UNIXTIME(875996580) + 0; -> 19971004222300 If format is given, the result is formatted according to the format string. format may contain the same specifiers as those listed in the entry for the DATE_FORMAT() function: mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(), -> '%Y %D %M %h:%i:%s %x'); -> '2003 6th August 06:22:58 2003' GET_FORMAT(DATE | TIME | TIMESTAMP, 'EUR' | 'USA' | 'JIS' | 'ISO' | 'INTERNAL') Returns a format string. This function is useful in combination with the DATE_FORMAT() and the STR_TO_DATE() functions, and when setting the server variables DATE_FORMAT, TIME_FORMAT, and DATETIME_FORMAT. The three possible values for the first argument and the five possible values for the second argument result in 15 possible format strings (for the specifiers used, see the table in the DATE_FORMAT() function description): Function call Result GET_FORMAT(DATE,'USA') '%m.%d.%Y' GET_FORMAT(DATE,'JIS') '%Y-%m-%d' GET_FORMAT(DATE,'ISO') '%Y-%m-%d' GET_FORMAT(DATE,'EUR') '%d.%m.%Y' GET_FORMAT(DATE,'INTERNAL') '%Y%m%d' GET_FORMAT(TIMESTAMP,'USA') '%Y-%m-%d-%H.%i.%s' GET_FORMAT(TIMESTAMP,'JIS') '%Y-%m-%d %H:%i:%s' GET_FORMAT(TIMESTAMP,'ISO') '%Y-%m-%d %H:%i:%s' GET_FORMAT(TIMESTAMP,'EUR') '%Y-%m-%d-%H.%i.%s' GET_FORMAT(TIMESTAMP,'INTERNAL') '%Y%m%d%H%i%s' GET_FORMAT(TIME,'USA') '%h:%i:%s %p' GET_FORMAT(TIME,'JIS') '%H:%i:%s' GET_FORMAT(TIME,'ISO') '%H:%i:%s' GET_FORMAT(TIME,'EUR') '%H.%i.%S' GET_FORMAT(TIME,'INTERNAL') '%H%i%s' ISO format is ISO 9075, not ISO 8601. mysql> SELECT DATE_FORMAT('2003-10-03', GET_FORMAT(DATE, 'EUR') -> '03.10.2003' mysql> SELECT STR_TO_DATE('10.31.2003', GET_FORMAT(DATE, 'USA')) -> 2003-10-31 mysql> SET DATE_FORMAT=GET_FORMAT(DATE, 'USA'); SELECT '2003-10-31'; -> 10-31-2003 GET_FORMAT() is available as of MySQL 4.1.1. See See section 5.5.6 SET Syntax. HOUR(time) Returns the hour for time. The range of the return value will be 0 to 23 for time-of-day values: mysql> SELECT HOUR('10:05:03'); -> 10 However, the range of TIME values actually is much larger, so HOUR can return values greater than 23: mysql> SELECT HOUR('272:59:59'); -> 272 LAST_DAY(date) Takes a date or datetime value and returns the corresponding value for the last day of the month. Returns NULL if the argument is invalid. mysql> SELECT LAST_DAY('2003-02-05'), LAST_DAY('2004-02-05'); -> '2003-02-28', '2004-02-29' mysql> SELECT LAST_DAY('2004-01-01 01:01:01'); -> '2004-01-31' mysql> SELECT LAST_DAY('2003-03-32'); -> NULL LAST_DAY() is available as of MySQL 4.1.1. LOCALTIME LOCALTIME() LOCALTIME and LOCALTIME() are synonyms for NOW(). LOCALTIMESTAMP LOCALTIMESTAMP() LOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW(). MAKEDATE(year,dayofyear) Returns a date, given year and day-of-year values. dayofyear must be greater than 0 or the result will NULL. mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32); -> '2001-01-31', '2001-02-01' mysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365); -> '2001-12-31', '2004-12-30' mysql> SELECT MAKEDATE(2001,0); -> NULL MAKEDATE() is available as of MySQL 4.1.1. MAKETIME(hour,minute,second) Returns a time value calculated from the hour, minute, and second arguments. mysql> SELECT MAKETIME(12,15,30); -> '12:15:30' MAKETIME() is available as of MySQL 4.1.1. MICROSECOND(expr) Returns the microseconds from the time or datetime expression expr as a number in the range from 0 to 999999. mysql> SELECT MICROSECOND('12:00:00.123456'); -> 123456 mysql> SELECT MICROSECOND('1997-12-31 23:59:59.000010'); -> 10 MICROSECOND() is available as of MySQL 4.1.1. MINUTE(time) Returns the minute for time, in the range 0 to 59: mysql> SELECT MINUTE('98-02-03 10:05:03'); -> 5 MONTH(date) Returns the month for date, in the range 1 to 12: mysql> SELECT MONTH('1998-02-03'); -> 2 MONTHNAME(date) Returns the name of the month for date: mysql> SELECT MONTHNAME('1998-02-05'); -> 'February' NOW() Returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT NOW(); -> '1997-12-15 23:50:26' mysql> SELECT NOW() + 0; -> 19971215235026 PERIOD_ADD(P,N) Adds N months to period P (in the format YYMM or YYYYMM). Returns a value in the format YYYYMM. Note that the period argument P is not a date value: mysql> SELECT PERIOD_ADD(9801,2); -> 199803 PERIOD_DIFF(P1,P2) Returns the number of months between periods P1 and P2. P1 and P2 should be in the format YYMM or YYYYMM. Note that the period arguments P1 and P2 are not date values: mysql> SELECT PERIOD_DIFF(9802,199703); -> 11 QUARTER(date) Returns the quarter of the year for date, in the range 1 to 4: mysql> SELECT QUARTER('98-04-01'); -> 2 SECOND(time) Returns the second for time, in the range 0 to 59: mysql> SELECT SECOND('10:05:03'); -> 3 SEC_TO_TIME(seconds) Returns the seconds argument, converted to hours, minutes, and seconds, as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT SEC_TO_TIME(2378); -> '00:39:38' mysql> SELECT SEC_TO_TIME(2378) + 0; -> 3938 STR_TO_DATE(str,format) This is the reverse function of the DATE_FORMAT() function. It takes a string str, and a format string format, and returns a DATETIME value. The date, time, or datetime values contained in str should be given in the format indicated by format. For the specifiers that can be used in format, see the table in the DATE_FORMAT() function description. All other characters are just taken verbatim, thus not being interpreted. If str contains an illegal date, time, or datetime value, STR_TO_DATE() returns NULL. mysql> SELECT STR_TO_DATE('03.10.2003 09.20', '%d.%m.%Y %H.%i') -> 2003-10-03 09:20:00 mysql> SELECT STR_TO_DATE('10rap', '%crap') -> 0000-10-00 00:00:00 mysql> SELECT STR_TO_DATE('2003-15-10 00:00:00', '%Y-%m-%d %H:%i:%s') -> NULL STR_TO_DATE() is available as of MySQL 4.1.1. SUBDATE(date,INTERVAL expr type) SUBDATE(expr,days) When invoked with the INTERVAL form of the second argument, SUBDATE() is a synonym for DATE_SUB(). mysql> SELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' mysql> SELECT SUBDATE('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' As of MySQL 4.1.1, the second syntax is allowed, where expr is a date or datetime expression and days is the number of days to be subtracted from expr. mysql> SELECT SUBDATE('1998-01-02 12:00:00', 31); -> '1997-12-02 12:00:00' SUBTIME(expr,expr2) SUBTIME() subtracts expr2 from expr and returns the result. expr is a date or datetime expression, and expr2 is a time expression. mysql> SELECT SUBTIME("1997-12-31 23:59:59.999999", "1 1:1:1.000002"); -> '1997-12-30 22:58:58.999997' mysql> SELECT SUBTIME("01:00:00.999999", "02:00:00.999998"); -> '-00:59:59.999999' SUBTIME() was added in MySQL 4.1.1. SYSDATE() SYSDATE() is a synonym for NOW(). TIME(expr) Extracts the time part of the time or datetime expression expr. mysql> SELECT TIME('2003-12-31 01:02:03'); -> '01:02:03' mysql> SELECT TIME('2003-12-31 01:02:03.000123'); -> '01:02:03.000123' TIME() is available as of MySQL 4.1.1. TIMEDIFF(expr,expr2) TIMEDIFF() returns the time between the start time expr and the end time expr2. expr and expr2 are time or date-and-time expressions, but both must be of the same type. mysql> SELECT TIMEDIFF('2000:01:01 00:00:00', '2000:01:01 00:00:00.000001'); -> '-00:00:00.000001' mysql> SELECT TIMEDIFF('1997-12-31 23:59:59.000001','1997-12-30 01:01:01.000002'); -> '46:58:57.999999' TIMEDIFF() was added in MySQL 4.1.1. TIMESTAMP(expr) TIMESTAMP(expr,expr2) With one argument, returns the date or datetime expression expr as a datetime value. With two arguments, adds the time expression expr2 to the date or datetime expression expr and returns a datetime value. mysql> SELECT TIMESTAMP('2003-12-31'); -> '2003-12-31 00:00:00' mysql> SELECT TIMESTAMP('2003-12-31 12:00:00','12:00:00'); -> '2004-01-01 00:00:00' TIMESTAMP() is available as of MySQL 4.1.1. TIME_FORMAT(time,format) This is used like the DATE_FORMAT() function, but the format string may contain only those format specifiers that handle hours, minutes, and seconds. Other specifiers produce a NULL value or 0. If the time value contains an hour part that is greater than 23, the %H and %k hour format specifiers produce a value larger than the usual range of 0..23. The other hour format specifiers produce the hour value modulo 12: mysql> SELECT TIME_FORMAT('100:00:00', '%H %k %h %I %l'); -> '100 100 04 04 4' TIME_TO_SEC(time) Returns the time argument, converted to seconds: mysql> SELECT TIME_TO_SEC('22:23:00'); -> 80580 mysql> SELECT TIME_TO_SEC('00:39:38'); -> 2378 TO_DAYS(date) Given a date date, returns a daynumber (the number of days since year 0): mysql> SELECT TO_DAYS(950501); -> 728779 mysql> SELECT TO_DAYS('1997-10-07'); -> 729669 TO_DAYS() is not intended for use with values that precede the advent of the Gregorian calendar (1582), because it doesn't take into account the days that were lost when the calendar was changed. UNIX_TIMESTAMP() UNIX_TIMESTAMP(date) If called with no argument, returns a Unix timestamp (seconds since '1970-01-01 00:00:00' GMT) as an unsigned integer. If UNIX_TIMESTAMP() is called with a date argument, it returns the value of the argument as seconds since '1970-01-01 00:00:00' GMT. date may be a DATE string, a DATETIME string, a TIMESTAMP, or a number in the format YYMMDD or YYYYMMDD in local time: mysql> SELECT UNIX_TIMESTAMP(); -> 882226357 mysql> SELECT UNIX_TIMESTAMP('1997-10-04 22:23:00'); -> 875996580 When UNIX_TIMESTAMP is used on a TIMESTAMP column, the function returns the internal timestamp value directly, with no implicit ``string-to-Unix-timestamp'' conversion. If you pass an out-of-range date to UNIX_TIMESTAMP() it returns 0, but please note that only basic checking is performed (year 1970-2037, month 01-12, day 01-31). If you want to subtract UNIX_TIMESTAMP() columns, you may want to cast the result to signed integers. See section 6.3.5 Cast Functions. UTC_DATE UTC_DATE() Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_DATE(), UTC_DATE() + 0; -> '2003-08-14', 20030814 UTC_DATE() is available as of MySQL 4.1.1. UTC_TIME UTC_TIME() Returns the current UTC time as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_TIME(), UTC_TIME() + 0; -> '18:07:53', 180753 UTC_TIME() is available as of MySQL 4.1.1. UTC_TIMESTAMP UTC_TIMESTAMP() Returns the current UTC date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0; -> '2003-08-14 18:08:04', 20030814180804 UTC_TIMESTAMP() is available as of MySQL 4.1.1. WEEK(date [,mode]) The function returns the week number for date. The two-argument form of WEEK() allows you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range 0-53 or 1-52. When mode argument is omitted the value of a default_week_format server variable (or 0 in MySQL 4.0 or earlier) is assumed. See section 5.5.6 SET Syntax. The following table demonstrates how the mode argument works: Value Meaning 0 Week starts on Sunday; return value range is 0 to 53; week 1 is the first week that starts in this year 1 Week starts on Monday; return value range is 0 to 53; week 1 is the first week that has more than 3 days in this year 2 Week starts on Sunday; return value range is 1 to 53; week 1 is the first week that starts in this year 3 Week starts on Monday; return value range is 1 to 53; week 1 is the first week that has more than 3 days in this year 4 Week starts on Sunday; return value range is 0 to 53; week 1 is the first week that has more than 3 days in this year 5 Week starts on Monday; return value range is 0 to 53; week 1 is the first week that starts in this year 6 Week starts on Sunday; return value range is 1 to 53; week 1 is the first week that has more than 3 days in this year 7 Week starts on Monday; return value range is 1 to 53; week 1 is the first week that starts in this year The mode value of 3 can be used as of MySQL 4.0.5. The mode value of 4 and above can be used as of MySQL 4.0.17. mysql> SELECT WEEK('1998-02-20'); -> 7 mysql> SELECT WEEK('1998-02-20',0); -> 7 mysql> SELECT WEEK('1998-02-20',1); -> 8 mysql> SELECT WEEK('1998-12-31',1); -> 53 Note: In Version 4.0, WEEK(date,0) was changed to match the calendar in the USA. Before that, WEEK() was calculated incorrectly for dates in USA. (In effect, WEEK(date) and WEEK(date,0) was incorrect for all cases.) Note that if a date falls in the last week of the previous year, MySQL will return 0 if you don't use 2, 3, 6, or 7 as the optional mode argument: mysql> SELECT YEAR('2000-01-01'), WEEK('2000-01-01',0); -> 2000, 0 One might argue that MySQL should return 52 for the WEEK() function, because the given date actually occurs in the 52nd week of 1999. We decided to return 0 instead as we want the function to return ``the week number in the given year.'' This makes the usage of the WEEK() function reliable when combined with other functions that extract a date part from a date. If you would prefer the result to be evaluated with respect to the year that contains the first day of the week for the given date, you should use 2, 3, 6, or 7 as the optional mode argument. mysql> SELECT WEEK('2000-01-01',2); -> 52 Alternatively, use the YEARWEEK() function: mysql> SELECT YEARWEEK('2000-01-01'); -> 199952 mysql> SELECT MID(YEARWEEK('2000-01-01'),5,2); -> '52' WEEKDAY(date) Returns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 = Sunday): mysql> SELECT WEEKDAY('1998-02-03 22:23:00'); -> 1 mysql> SELECT WEEKDAY('1997-11-05'); -> 2 WEEKOFYEAR(date) Returns the calendar week of the date as a number in the range from 1 to 53. mysql> SELECT WEEKOFYEAR('1998-02-20'); -> 8 WEEKOFYEAR() is available as of MySQL 4.1.1. YEAR(date) Returns the year for date, in the range 1000 to 9999: mysql> SELECT YEAR('98-02-03'); -> 1998 YEARWEEK(date) YEARWEEK(date,start) Returns year and week for a date. The start argument works exactly like the start argument to WEEK(). Note that the year in the result may be different from the year in the date argument for the first and the last week of the year: mysql> SELECT YEARWEEK('1987-01-01'); -> 198653 Note that the week number is different from what the WEEK() function would return (0) for optional arguments 0 or 1, as WEEK() then returns the week in the context of the given year. Mysql 3 02/15/2024 Mysql Database Alter Table change table alter table [Add More Fields] ALTER TABLE warehouse ADD fire_protection tinyint(4) NOT NULL default '0' AFTER interstate, ADD fire_water tinyint(4) NOT NULL default '0' AFTER fire_protection, ADD fire_inertgas tinyint(4) NOT NULL default '0' AFTER fire_water, ADD fire_CO2 tinyint(4) NOT NULL default '0' AFTER fire_inertgas; [rename fields] ALTER TABLE `warehouse` CHANGE `AMPERAGE` `amperage` SMALLINT(6) DEFAULT '0' NOT NULL RENAME TABLE current_db.tbl_name TO other_db.tbl_name; ALTER TABLE orders ADD `responsecode` tinyint(4) NOT NULL default '0', ADD `responsesubcode` tinyint(4) NOT NULL default '0', ADD `reasoncode` tinyint(4) NOT NULL default '0', ADD `reasontext` varchar(255) NOT NULL default '', ADD `authcode` varchar(20) NOT NULL default '', ADD `avscode` varchar(5) NOT NULL default '', ADD `transid` tinyint(4) NOT NULL default '0'; [EMPTY TABLE] TRUNCATE TABLE table Mysql 2 09/09/2023 Mysql Query Alter Tables add field delete alter table rename update table auto increment engine collation [Collation] To change the default character set and collation of a table including those of existing columns (note the convert to clause): alter table convert to character set utf8mb4 collate utf8mb4_unicode_ci; [Reset auto increment to the lowest possible value] ALTER TABLE tablename AUTO_INCREMENT = 1 [rename Engine] ALTER TABLE tablename ENGINE = INNODB; [Single Add] ALTER TABLE `equipment` ADD `hp` SMALLINT NOT NULL AFTER `price`; [Add Multiple Fields] ' the field before this was interstate. ALTER TABLE warehouse ADD fire_protection tinyint(4) NOT NULL default '0' AFTER interstate, ADD fire_water tinyint(4) NOT NULL default '0' AFTER fire_protection, ADD fire_inertgas tinyint(4) NOT NULL default '0' AFTER fire_water, ADD fire_CO2 tinyint(4) NOT NULL default '0' AFTER fire_inertgas; [rename fields] Example: To rename a column named prod_name to product_full_name while keeping its data type as VARCHAR(100) and NOT NULL constraint: ALTER TABLE lastbackup CHANGE COLUMN table_folder source VARCHAR(75) NOT NULL; ALTER TABLE lastbackup CHANGE COLUMN database_name source_from VARCHAR(30) NOT NULL; ALTER TABLE `eqMaintenance` CHANGE `filter2id` `filter_options` varchar(60) RENAME TABLE current_db.tbl_name TO other_db.tbl_name; ALTER TABLE orders ADD `responsecode` tinyint(4) NOT NULL default '0', ADD `responsesubcode` tinyint(4) NOT NULL default '0', ADD `reasoncode` tinyint(4) NOT NULL default '0', ADD `reasontext` varchar(255) NOT NULL default '', ADD `authcode` varchar(20) NOT NULL default '', ADD `avscode` varchar(5) NOT NULL default '', ADD `transid` tinyint(4) NOT NULL default '0'; [EMPTY TABLE] TRUNCATE TABLE table Mysql 1770 09/09/2023 Javascript String Array Information length array size count Array Object Properties Property Description constructor Returns the function that created the Array object's prototype length Sets or returns the number of elements in an array prototype Allows you to add properties and methods to an Array object Array Object Methods Method Description concat() Joins two or more arrays, and returns a copy of the joined arrays indexOf() Search the array for an element and returns it's position join() Joins all elements of an array into a string lastIndexOf() Search the array for an element, starting at the end, and returns it's position pop() Removes the last element of an array, and returns that element push() Adds new elements to the end of an array, and returns the new length reverse() Reverses the order of the elements in an array shift() Removes the first element of an array, and returns that element slice() Selects a part of an array, and returns the new array sort() Sorts the elements of an array splice() Adds/Removes elements from an array toString() Converts an array to a string, and returns the result unshift() Adds new elements to the beginning of an array, and returns the new length valueOf() Returns the primitive value of an array Javascript 1296 09/09/2023 Css Formatting Background Changes background css fixed url background- hand property for: background-color body {background-color: coral;} background-image body {  background-image: url("paper.gif");  background-color: #cccccc; } background-position body {   background-image: url('w3css.gif'); background-repeat: no-repeat;   background-attachment: fixed;   background-position: center; } background-size #example1 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: auto; } #example2 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: 300px 100px; } background-repeat body { background-image: url("paper.gif"); background-repeat: repeat-y; } background-origin #example1 {   border: 10px dashed black;   padding: 25px;   background: url(paper.gif); background-repeat: no-repeat; background-origin: content-box; } background-clip Specify how far the background should extend within an element: div {   border: 10px dotted black; padding: 15px; background: lightblue; background-clip: padding-box; } background-attachment A background-image that will not scroll with the page (fixed): body { background-image: url("img_tree.gif");   background-repeat: no-repeat; background-attachment: fixed; } How to position a background-image on x-axis: div {   background-image: url('w3css.gif'); background-repeat: no-repeat;   background-position-x: center; } How to position a background-image on y-axis: div {   background-image: url('w3css.gif'); background-repeat: no-repeat;   background-position-y: center; } <table> <tr> <th>Value</th> <th>Description</th> <th>CSS</th> </tr> <tr> <td> <i> background-color </i> </td> <td>Specifies the background color to be used</td> <td>body { background-color:yellow; } h1 { background-color:#00ff00; } p { background-color:rgb(255,0,255); } </td> </tr> <tr> <td> <i> background-position</i> </td> <td>Specifies the position of the background images</td> <td>body { background-image:url('smiley.gif'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; } </td> </tr> <tr> <td> <i> background-size</i> </td> <td>Specifies the size of the background images</td> <td> div { background:url(img_flwr.gif); background-size:80px 60px; background-repeat:no-repeat; } </td> </tr> <tr> <td> <i> background-repeat </i> </td> <td>Specifies how to repeat the background images</td> <td>body { background-image:url('paper.gif'); background-repeat:repeat-y; } </td> </tr> <tr> <td> <i> background-origin </i> </td> <td>Specifies the positioning area of the background images</td> <td>div { background-image:url('smiley.gif'); background-repeat:no-repeat; background-position:left; background-origin:content-box; } </td> </tr> <tr> <td> <i> background-clip </i> </td> <td>Specifies the painting area of the background images</td> <td>div { background-color:yellow; background-clip:content-box; } </td> </tr> <tr> <td> <i> background-attachment </i> </td> <td>Specifies whether the background images are fixed or scrolls with the rest of the page</td> <td>body { background-image:url('w3css.gif'); background-repeat:no-repeat; background-attachment:fixed; } </td> </tr> <tr> <td> <i> background-image </i> </td> <td>Specifies ONE or MORE background images to be used</td> <td>body { background-image:url('paper.gif'); background-color:#cccccc; } </td> </tr> </table> body { background-image: url(../images/backg.gif); background-repeat: no-repeat; background-position: top center; background-attachment: fixed } background-color:white;opacity:.5;filter:alpha(opacity=50); // for firefox and IE background-color: transparent; color: orange; Css 1621 09/09/2023 Javascript Function Bearing Bearing heading latitude longitude GPS function bearing(startLat, startLng, destLat, destLng){ startLat = toRadians(startLat); startLng = toRadians(startLng); destLat = toRadians(destLat); destLng = toRadians(destLng); y = Math.sin(destLng - startLng) * Math.cos(destLat); x = Math.cos(startLat) * Math.sin(destLat) - Math.sin(startLat) * Math.cos(destLat) * Math.cos(destLng - startLng); brng = Math.atan2(y, x); brng = toDegrees(brng); return (brng + 360) % 360; } Javascript 2 09/09/2023 Css Formatting Bullets And Numbering bullets li ul ol 5.6.3 'list-style-type' Value: disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none Initial: disc Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property is used to determine the appearance of the list-item marker if 'list-style-image' is 'none' or if the image pointed to by the URL cannot be displayed. OL { list-style-type: decimal } /* 1 2 3 4 5 etc. */ OL { list-style-type: lower-alpha } /* a b c d e etc. */ OL { list-style-type: lower-roman } /* i ii iii iv v etc. */ 5.6.4 'list-style-image' Value: | none Initial: none Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property sets the image that will be used as the list-item marker. When the image is available it will replace the marker set with the 'list-style-type' marker. UL { list-style-image: url(http://png.com/ellipse.png) } 5.6.5 'list-style-position' Value: inside | outside Initial: outside Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The value of 'list-style-position' determines how the list-item marker is drawn with regard to the content. For a formatting example see section 4.1.3. 5.6.6 'list-style' Value: [disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none] || [inside | outside] || [ | none] Initial: not defined for shorthand properties Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The 'list-style' property is a shorthand notation for setting the three properties 'list-style-type', 'list-style-image' and 'list-style-position' at the same place in the style sheet. UL { list-style: upper-roman inside } UL UL { list-style: circle outside } LI.square { list-style: square } Setting 'list-style' directly on 'LI' elements can have unexpected results. Consider: level 1 level 2 Since the specificity (as defined in the cascading order) is higher for the first rule in the style sheet in the example above, it will override the second rule on all 'LI' elements and only 'lower-alpha' list styles will be used. It is therefore recommended to set 'list-style' only on the list type elements: OL.alpha { list-style: lower-alpha } UL { list-style: disc } In the above example, inheritance will transfer the 'list-style' values from 'OL' and 'UL' elements to 'LI' elements. A URL value can be combined with any other value: UL { list-style: url(http://png.com/ellipse.png) disc } In the example above, the 'disc' will be used when the image is unavailable. Css 2134 09/09/2023 Microsoft Excel Form Button To Go To A Certain Sheet button sheet Solution 1 Alternately, if you are using a Macro Enabled workbook: Add any control at all from the Developer -> Insert (Probably a button) When it asks what Macro to assign, choose New. For the code for the generated module enter something like: Thisworkbook.Sheets("Sheet Name").Activate Microsoft Excel 2 09/09/2023 Css Formatting Centering A Table center table The old way to center a table was easy: ... The "align" attribute has been deprecated, however, in favor of CSS (Cascading Style Sheets), and this is a good thing. However, it's not so obvious how to center a table using CSS. The obvious way might appear to use the CSS "text-align: center;" somewhere, maybe like one of these: OR ... OR, if you get really desperate, ... None of these will work. The table itself will be left-aligned, but all the content in the table cells will be centered. Why? Because "text-align" applies to inline content, not to a block-level element like "table". Method 1 To center a table, you need to set the margins, like this: table.center {margin-left:auto; margin-right:auto;} And then do this: ... At this point, Mozilla and Opera will center your table. Internet Explorer 5.5 and up, however, needs you to add this to your CSS as well: body {text-align:center;} Method 2 If you want your table to be a certain percentage width, you can do this: table#table1 {width:70%; margin-left:15%; margin-right:15%;} And then in your HTML/XHTML, you would do this: ... Note that I was using an id to describe the table. You can only use an id once on a page. If you had many tables on a page that you wanted to be the same width and centered, you would do this in your CSS: table.center {width:70%; margin-left:15%; margin-right:15%;} And this in your HTML: ... ... Method 3 If you want your table to be of fixed width, define your CSS like this: div.container {width:98%; margin:1%;} table#table1 {text-align:center; margin-left:auto; margin-right:auto; width:100px;} tr,td {text-align:left;} Set "width:100px" to whatever width you need. "text-align: center" is there for Internet Explorer, which won't work without it. Unfortunately, "text-align: center" will center all the text inside your table cells, but we counter that by setting "tr" and "td" to align left. In your HTML, you would then do this: ... Once again, I'm using an id. If you need to center several tables the same way, use a class instead of an id. Css 1744 09/09/2023 WP Customizing Change Footer Credits On WordPress footer credits add_filter Many WordPress website and blog themes come with design credits in the footer area at the bottom of each Web page. If you commissioned a designer to create a custom theme for your WordPress business site, you can simply ask him to change the footer credits, but for an "off the shelf" free or premium template, you will need to edit the footer section of the template to alter the credits. Although this might sound complicated, the process is straightforward and even a novice with limited WordPress knowledge should be able to accomplish this task. Ads by Google 10 Keys for Mktg Success This free guide shows the metrics and the tactics you need to improve vocus.com?/?Marketing Step 1 Log in to WordPress from the homepage of your business blog or website. Step 2 Click the website's name on the left side of the top WordPress navigation menu. Step 3 Select "Themes" from the drop-down menu to open the Themes page in the Appearance settings section. Step 4 Click "Editor" under the Appearance tab in the left menu. Step 5 Click "Footer (footer.php)" in the Templates section on the right side of the page to open the footer template file in the Edit Themes pane. If you can't find the footer.php file, look for another PHP file with "foot" or "footer" in the filename. Step 6 Scroll to the credit line of code, which will look similar to this: Content © . WordPress Theme by Example WordPress Theme Step 7 Highlight and delete the elements of the footer credits that you want to change. For example, to remove just the theme designer's credit but retain your website's name and copyright line, delete the following: Theme by Example WordPress Theme To retain the designer's credit but remove the link to her website, remove "" and "" but leave the other text in place. Alternatively, you can add text or links to the footer credits by using the same format. Step 8 Scroll to the bottom of the page and click the blue "Update File" button to save and implement your changes. Under the genesis framework, I used the following above the do_actions in the Genesis footer.php to replace there results. add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' ); function custom_footer_creds_text() { echo '[div class="creds"][p]'; echo 'Copyright © '; echo date('Y'); echo ' · [a href="http://www.softwarewebdesign.com"]Software Web Design[/a] · Built by Software Web Design'; echo '[/p][/div]'; } WP 1622 09/09/2023 Browsers Customizing Change The Default Download Location In Firefox download firefox Firefox to change the default download location in Firefox, open the menu (three horizontal lines) in the top-right corner, select Settings, and scroll down to the Downloads section under the General panel. Click "Browse" next to "Save files to" to choose a new folder, or select "Always ask me where to save files". Steps to Change Download Location: Access Settings: Click the menu button (equiv ) in the top right and select Settings.Locate Downloads: Scroll down to the Files and Applications section and find the Downloads option.Change Folder: Click Browse (or "Choose") to select a new folder for downloads.Alternative Option: Select "Always ask me where to save files" to choose a destination every time a download starts. Important Notes: You can set Firefox to save to custom locations, including desktop or specific folders.If you select "Always ask me where to save files," you will be prompted for a location with each download.Changes are saved automatically. Browsers 0 02/08/2026 _Misc Software Setup Check Gmail In Outlook Manually gmail Outlook Setup To check your Gmail in Outlook manually, you'll need to configure a manual IMAP setup. This process involves adding your Gmail account to Outlook using specific server settings and potentially an app password if you have two-factor authentication enabled. Here's a step-by-step guide: 1. Enable IMAP in Gmail: Go to your Gmail settings (gear icon in the upper right corner). Select "See all settings". Click on the "Forwarding and POP/IMAP" tab. Under IMAP access, select "Enable IMAP" and save changes. 2. Set up Gmail in Outlook (Manually): Open Outlook and go to "File" > "Add Account". Select "Manual setup or additional server types" and click "Next". Choose "IMAP" and click "Next". Enter your Gmail address. Fill in the IMAP and SMTP server settings: Incoming mail server: imap.gmail.com. Outgoing mail server: smtp.gmail.com. Username: Your full Gmail email address. Password: Your Gmail password (or an app password if using two-factor authentication). Click "More Settings" and then "Outgoing Server". Check the box "My outgoing server (SMTP) requires authentication". Go to "Advanced" and set the following port numbers: Incoming server (IMAP): 993. Outgoing server (SMTP): 465 or 587. Select "Use the following type of encrypted connection: SSL" for both incoming and outgoing servers. Click "OK" and then "Next". Click "Finish" to complete the process. 3. Outlook should now be able to access your Gmail inbox. _Misc Software 0 04/25/2025 Vb.net Keyboard Clipboard clipboard html text If Clipboard.ContainsText() And TXJoin1.Text = "" Then TXJoin1.Paste() End If Private Sub btClipDir_Click(sender As Object, e As EventArgs) Handles btClipDir.Click Dim FL1 As String, ALLFile As String = "" FL1 = Dir(Path.TREE2 + "") ALLFile = PrintDirectory(Path.TREE2) If ALLFile <> "" Then Clipboard.SetText(ALLFile, TextDataFormat.UnicodeText) End Sub Clear Removes all data from the Clipboard. Public methodStatic member ContainsAudio Indicates whether there is data on the Clipboard in the WaveAudio format. Public methodStatic member ContainsData Indicates whether there is data on the Clipboard that is in the specified format or can be converted to that format. Public methodStatic member ContainsFileDropList Indicates whether there is data on the Clipboard that is in the FileDrop format or can be converted to that format. Public methodStatic member ContainsImage Indicates whether there is data on the Clipboard that is in the Bitmap format or can be converted to that format. Public methodStatic member ContainsText() Indicates whether there is data on the Clipboard in the Text or UnicodeText format, depending on the operating system. Public methodStatic member ContainsText(TextDataFormat) Indicates whether there is text data on the Clipboard in the format indicated by the specified TextDataFormat value. Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.) Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) Public methodStatic member GetAudioStream Retrieves an audio stream from the Clipboard. Public methodStatic member GetData Retrieves data from the Clipboard in the specified format. Public methodStatic member GetDataObject Retrieves the data that is currently on the system Clipboard. Public methodStatic member GetFileDropList Retrieves a collection of file names from the Clipboard. Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.) Public methodStatic member GetImage Retrieves an image from the Clipboard. Public methodStatic member GetText() Retrieves text data from the Clipboard in the Text or UnicodeText format, depending on the operating system. Public methodStatic member GetText(TextDataFormat) Retrieves text data from the Clipboard in the format indicated by the specified TextDataFormat value. Public method GetType Gets the Type of the current instance. (Inherited from Object.) Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.) Public methodStatic member SetAudio(Byte[]) Clears the Clipboard and then adds a Byte array in the WaveAudio format after converting it to a Stream. Public methodStatic member SetAudio(Stream) Clears the Clipboard and then adds a Stream in the WaveAudio format. Public methodStatic member SetData Clears the Clipboard and then adds data in the specified format. Public methodStatic member SetDataObject(Object) Clears the Clipboard and then places nonpersistent data on it. Public methodStatic member SetDataObject(Object, Boolean) Clears the Clipboard and then places data on it and specifies whether the data should remain after the application exits. Public methodStatic member SetDataObject(Object, Boolean, Int32, Int32) Clears the Clipboard and then attempts to place data on it the specified number of times and with the specified delay between attempts, optionally leaving the data on the Clipboard after the application exits. Public methodStatic member SetFileDropList Clears the Clipboard and then adds a collection of file names in the FileDrop format. Public methodStatic member SetImage Clears the Clipboard and then adds an Image in the Bitmap format. Public methodStatic member SetText(String) Clears the Clipboard and then adds text data in the Text or UnicodeText format, depending on the operating system. Public methodStatic member SetText(String, TextDataFormat) Clears the Clipboard and then adds text data in the format indicated by the specified TextDataFormat value. Public method ToString Returns a string that represents the current object. (Inherited from Object.) Vb.net 1205 08/05/2024 Windows >=10 Query Cmd Ftype|clip cmd ftype Access.ACCDAExtension.16=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP "%1" Access.ACCDCFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.ACCDEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ACCDRFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /RUNTIME "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ACCDTFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.ADEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.Application.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.BlankDatabaseTemplate.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /NEWDB "%1" Access.BlankProjectTemplate.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /NEWDB "%1" Access.Extension.16=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP "%1" Access.MDBFile="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.MDEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.Project.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ShortCut.DataAccessPage.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenDataAccessPage "%1"] Access.ShortCut.Diagram.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenDiagram "%1"] Access.ShortCut.Form.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenForm "%1"] Access.Shortcut.Function.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /SHELLSYSTEM [OpenFunction "%1"] Access.ShortCut.Macro.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [ShellOpenMacro "%1"] Access.ShortCut.Module.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenModule "%1"] Access.ShortCut.Query.1=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP /SHELLSYSTEM [OpenQuery "%1"] Access.ShortCut.Report.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenReport "%1", 2] Access.ShortCut.StoredProcedure.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenStoredProcedure "%1"] Access.ShortCut.Table.1=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP /SHELLSYSTEM [OpenTable "%1"] Access.ShortCut.View.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenView "%1"] Access.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" Access.WebApplicationReference.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.WizardDataFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.WizardUserDataFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.Workgroup.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" accesshtmlfile="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" accessthmltemplate="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" acrobat="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" Acrobat.aaui="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.acrobatsecuritysettings.1="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.Document.DC="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.FDFDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.pdfxml.1="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.RMFFile="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.XDPDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.XFDFDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" acrobat2018="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2019="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2021.oauth2="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2024="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" AcrobatBPDXFileType="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcrobatPDXFileType="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcroExch.Document="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcroExch.Document.7="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Application.Manifest="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32dfshim.dll",ShOpenVerbApplication %1 Application.Reference="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32dfshim.dll",ShOpenVerbShortcut %1|%2 ArchiveFolder=%SystemRoot%Explorer.exe /idlist,%I,%L batfile="%1" %* BlackmagicRaw.Clip="C:Program Files (x86)Blackmagic DesignBlackmagic RAWBlackmagic RAW PlayerBlackmagicRAWPlayer.exe" "%1" Blend.sln.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEblend.exe" "%1" Blend.slnf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEblend.exe" "%1" bootstrap.vsto.1=rundll32.exe "c:Program Files (x86)Common FilesMicrosoft SharedVSTOvstoee.dll",InstallVstoSolution %1 brmFile="PrintBrmUI.exe" /import /file:"%1" CABFolder=%SystemRoot%Explorer.exe /idlist,%I,%L CATFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCAT %1 CERFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCER %1 CertificateStoreFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenSTR %1 certificate_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /certificate "%1" chm.file="%SystemRoot%hh.exe" %1 cmdfile="%1" %* comfile="%1" %* CompressedFolder=%SystemRoot%Explorer.exe /idlist,%I,%L contact_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /contact "%1" CRLFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCRL %1 desktopthemepackfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 Diagnostic.Cabinet=%SystemRoot%system32msdt.exe /cab "%1" Diagnostic.Config=%SystemRoot%system32msdt.exe /path "%1" Diagnostic.Document=%SystemRoot%system32msdt.exe /path "%1" Diagnostic.Perfmon.Config=%SystemRoot%system32perfmon /sys /load "%1" Diagnostic.Perfmon.Document=%SystemRoot%system32perfmon /sys /open "%1" Diagnostic.Resmon.Config=%SystemRoot%system32perfmon /res /load "%1" DLNA-PLAYSINGLE="%ProgramFiles(x86)%Windows Media Playerwmplayer.exe" "%L" dqyfile=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" dropbox-client="C:Program Files (x86)DropboxClientDropbox.exe" "custom-url+%1" Dropbox.Backup="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Binder="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.ExternalBackupLocation="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Paper="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.PaperT="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Passwords="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Shortcut="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* evtfile=%SystemRoot%system32eventvwr.exe /l:"%1" evtxfile=%SystemRoot%system32eventvwr.exe /l:"%1" Excel.Addin="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.AddInMacroEnabled="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Backup="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Chart=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" Excel.Chart.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.CSV="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Macrosheet="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.OpenDocumentSpreadsheet.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Sheet.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Sheet.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SheetBinaryMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SheetMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SLK="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Template="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Template.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.TemplateMacroEnabled="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" Excel.Workspace="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.XLL="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" -xlls "%1" Excelhtmlfile="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" Excelhtmltemplate="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" exefile="%1" %* Explorer.AssocActionId.BurnSelection=%SystemRoot%explorer.exe Explorer.AssocActionId.EraseDisc=%SystemRoot%explorer.exe Explorer.AssocActionId.ZipSelection=%SystemRoot%explorer.exe Explorer.AssocProtocol.search-ms=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L Expression.Blend.csproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.jsproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.sln.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.vbproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.vcxproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" FaxCover.Document=C:WindowsSystem32fxscover.exe "%1" feed="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" feeds="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" FirefoxHTML-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" FirefoxPDF-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" FirefoxURL-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" Folder=%SystemRoot%Explorer.exe FormsCentral.fcdt="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" GoogleEarth.kmlfile="C:Program FilesGoogleGoogle Earth Proclientgoogleearth.exe" "%1" GoogleEarth.kmzfile="C:Program FilesGoogleGoogle Earth Proclientgoogleearth.exe" "%1" group_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /Group "%1" hlpfile=%SystemRoot%winhlp32.exe %1 htafile=C:WindowsSysWOW64mshta.exe "%1" {1E460BD7-F1C3-4B2E-88BF-4E770A288AF5}%U{1E460BD7-F1C3-4B2E-88BF-4E770A288AF5} %* htmlfile="C:Program FilesInternet Exploreriexplore.exe" %1 http="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" https="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" IE.AssocFile.HTM="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.MHT="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.PARTIAL="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.SVG="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.URL="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32ieframe.dll",OpenURL %l IE.AssocFile.WEBSITE="C:Program FilesInternet Exploreriexplore.exe" -w "%l" %* IE.AssocFile.XHT="C:Program FilesInternet Exploreriexplore.exe" %1 IE.FTP="C:Program FilesInternet Exploreriexplore.exe" %1 IE.HTTP="C:Program FilesInternet Exploreriexplore.exe" %1 IE.HTTPS="C:Program FilesInternet Exploreriexplore.exe" %1 IMEDictionaryCompiler="%WINDIR%system32IMESHAREDimewdbld.exe" "%1" %* imesxfile="%WINDIR%system32IMESHAREDimesearch.exe" "%1" Intel.GraphicsControlPanel.igp.1=C:WINDOWSSystem32DriverStoreFileRepositorycui_dch.inf_amd64_03c6376789dc6e23GfxUIExN.exe %1 InternetShortcut="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32ieframe.dll",OpenURL %l iqyfile=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" IrfanView="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.aif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ani="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.asf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.au="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.avi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.b3d="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.bmp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.clp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cr2="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cr3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.crw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cur="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dcm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dcx="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dds="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.djvu="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dxf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ecw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.emf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.eps="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.exr="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.flv="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.g3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.gif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.hdp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.heic="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ico="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.iff="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jls="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jng="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jp2="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jpg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jpm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jxl="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mid="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mng="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mov="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mp3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mpe="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mpg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ogg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pbm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pcd="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pcx="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pgm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.png="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ppm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.psd="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.psp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.qoi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ras="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.raw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.rle="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.rmi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sff="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sgi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sid="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.swf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.tga="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.tif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ttf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wav="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wbmp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.webp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wma="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wmf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wmv="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.xbm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.xpm="C:Program FilesIrfanViewi_view64.exe" "%1" JSEFile=C:WindowsSystem32WScript.exe "%1" %* JSFile=C:WindowsSystem32WScript.exe "%1" %* launchreader="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" LDAP="%ProgramFiles%Windows Mailwab.exe" "/ldap:%1" mailto="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" -c IPM.Note /mailto "%1" malwarebytes="C:Program FilesMalwarebytesAnti-Malwareassistant.exe" -uri "%1" mhtmlfile="C:Program FilesInternet Exploreriexplore.exe" %1 microsoft-edge="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" Microsoft.PowerShellConsole.1="C:WindowsSystem32WindowsPowerShellv1.0powershell.exe" -p "%1" Microsoft.ProvTool.Provisioning.1="%SystemRoot%System32provtool.exe" "%1" /source ShellOpen Microsoft.System.Update.1="%systemroot%system32wusa.exe" "%1" %* Microsoft.Website="C:Program FilesInternet Exploreriexplore.exe" -w "%l" %* Microsoft.Workfolders=C:WindowsSystem32control.exe /name Microsoft.WorkFolders MMS="%ProgramFiles(x86)%Windows Media Playerwmplayer.exe" "%L" ms-access=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-availablenetworks="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-controlcenter=%SystemRoot%system32ShellHost.exe url=%1 ms-excel=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-mmsys=%SystemRoot%System32rundll32.exe %SystemRoot%System32shell32.dll,Control_RunDLL %SystemRoot%System32mmsys.cpl %1 ms-msdt="%SystemRoot%system32msdt.exe" %1 ms-msime-imepad=C:WindowsSystem32IMESHAREDIMEPADSV.EXE %1 ms-msime-imjpdct=C:WindowsSystem32IMEIMEJPIMJPDCT.EXE %1 ms-office-ai=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-office-storage-host=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-olk-oauth="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /huboauth "%1" ms-olk-recall="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /select "%1" ms-personacard=%SystemRoot%system32ShellHost.exe UXFrameHost 0x0 Popup com.microsoft.windows.extensions.xaml.personacardmanager PersonaCardManager PersonaCardManagerControl SingleInstance true UseWinUI3 yes uri %1 Personality AnchoredPopup AnchorPointType TopLeft VerticalSizingStrategy ManuallySpecified HorizontalSizingStrategy ManuallySpecified Prelaunch true ms-powerpoint=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-publisher=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-rdx-document=%SystemRoot%system32rundll32.exe %SystemRoot%system32RDXService,OpenRDXDocument %1 ms-settings-connectabledevices="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-settings-displays-topology="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-shellhost=%SystemRoot%system32ShellHost.exe uri %1 ms-snaplaunch="%SystemRoot%SystemAppsMicrosoftWindows.Client.Core_cw5n1h2txyewysnaplauncherprotocol.exe" "%1" ms-virtualtouchpad="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-woah=%SystemRoot%system32ShellHost.exe loadcomponent WindowsOobeAppHost --stringProperties Uri %1 WindowingBehavior DebugWindow ms-word=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" mscfile=%SystemRoot%system32mmc.exe "%1" %* MSDASC=Rundll32.exe "%CommonProgramFiles%SystemOLE DBoledb32.dll",OpenDSLFile %1 MSEdgeHTM="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 MSEdgeMHT="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 MSEdgePDF="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 Msi.Package="%SystemRoot%System32msiexec.exe" /i "%1" %* Msi.Patch="%SystemRoot%System32msiexec.exe" /p "%1" %* MSInfoFile=%SystemRoot%system32msinfo32.exe "%1" MSStorageSense=explorer ms-settings:storagesense msstylesfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32shell32.dll,Control_RunDLL %SystemRoot%system32desk.cpl desk,@Appearance /Action:OpenMSTheme /file:"%1" nView.Profile=rundll32.exe "C:Program FilesNVIDIA CorporationnViewnView64.dll",nViewCmd loadprofile "%1" OfficeListShortcut="C:Program FilesMicrosoft OfficeRootOffice16MSPUB.EXE" %1 OfficeTheme.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" OneNote="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" onenote-cmd="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" onenote-cmd.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Folder.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Notebook.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Package="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.ProtectedSection="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Section.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.TableOfContents="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /navigate "%1" OneNote.TableOfContents.12="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /navigate "%1" OneNote.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" OneNoteDesktop="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" OneNoteDesktop.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" opensearchdescription=%SystemRoot%explorer.exe OrgPlusWOPX.4="C:Program FilesMicrosoft OfficeRootOffice16ORGCHART.EXE" %1 Outlook.File.eml.15=C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE /eml "%1" Outlook.File.hol.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /hol "%1" Outlook.File.ics.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /ical "%1" Outlook.File.msg.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /f "%1" Outlook.File.oft.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /t "%1" Outlook.File.pst.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /pst "%1" Outlook.File.vcf.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /v "%1" Outlook.File.vcs.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /vcal "%1" Outlook.URL.feed.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" Outlook.URL.mailto.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" -c IPM.Note /mailto "%1" Outlook.URL.ms-olk-oauth.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /huboauth "%1" Outlook.URL.ms-olk-recall.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /select "%1" Outlook.URL.stssync.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" Outlook.URL.webcal.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" P7RFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenP7R %1 P7SFile=%SystemRoot%system32\rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 pbkfile=%SystemRoot%system32rasphone.exe -f "%1" PerfFile=%SystemRoot%system32mmc.exe %systemroot%system32perfmon.msc /F "%1" PFXFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenPFX %1 PhotoViewer.FileAssoc.Tiff=%SystemRoot%System32rundll32.exe "%ProgramFiles%Windows Photo ViewerPhotoViewer.dll", ImageView_Fullscreen %1 piffile="%1" %* PowerDirector21.0cdadjfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dlpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dz3dtfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzafile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzblfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzepfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzlfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzmfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzsfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dztfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dztrfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzvcfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0pdlcpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0pdlfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerDirector21.0pdmfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerDirector21.0pdsfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerPoint.Addin.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Addin.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" PowerPoint.OpenDocumentPresentation.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Show.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Show.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.ShowMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Slide.12=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.Slide.8=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.SlideMacroEnabled.12=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.SlideShow.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.SlideShow.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.SlideShowMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.Template.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Template.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.TemplateMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" PowerPoint.Wizard.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" powerpointhtmlfile="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" powerpointhtmltemplate="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" powerpointxmlfile="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" prffile="%SystemRoot%System32rundll32.exe" "%SystemRoot%System32msrating.dll",ClickedOnPRF %1 Publisher.Document.16="C:Program FilesMicrosoft OfficeRootOffice16MSPUB.EXE" /ou "%u" "%1" Publisher.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ratfile="%SystemRoot%System32rundll32.exe" "%SystemRoot%System32msrating.dll",ClickedOnRAT %1 RDP.File="%systemroot%system32mstsc.exe" "%1" regedit=regedit.exe "%1" regfile=regedit.exe "%1" RemoteAssistance.1="%systemRoot%system32msra.exe" -openfile "%1" ResolveBinFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveDBKeyFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveDrpFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveTemplateBundle="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveTimelineFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" rlogin="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l SavedDsQuery=%SystemRoot%system32rundll32.exe %SystemRoot%system32dsquery.dll,OpenSavedDsQuery %1 scrfile="%1" /S scriptletfile="C:WindowsSystem32NOTEPAD.EXE" "%1" search=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L search-ms=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L SHCmdFile=%SystemRoot%explorer.exe SPCFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 stssync="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" svgfile="C:Program FilesInternet Exploreriexplore.exe" %1 telnet="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l tfs=C:Program FilesCommon FilesMicrosoft SharedTeam Foundation Server11.0TfsProtocolHandler.exe "%1" themefile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 themepackfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 TIFImage.Document=%SystemRoot%System32rundll32.exe "%ProgramFiles%Windows Photo ViewerPhotoViewer.dll", ImageView_Fullscreen %1 tn3270="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l Undecided=%SystemRoot%system32OpenWith.exe "%1" Unknown=%SystemRoot%system32OpenWith.exe "%1" VBEFile="%SystemRoot%System32WScript.exe" "%1" %* VBSFile="%SystemRoot%System32WScript.exe" "%1" %* vcard_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /vcard "%1" VCU.AutoPlay="C:Program Files (x86)AimersoftVideo Converter UltimateVideoConverterUltimate.exe" "3" "%1" VisioViewer.Viewer="%ProgramFiles% (x86)MicrosoftEdgeApplicationmsedge.exe" -ie-mode-file-url -- "%1" VisualStudio.accessor.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.accessor.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.AddIn.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.androidproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.appxmanifest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.appxmanifest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.asa.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asa.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asax.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asax.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ascx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ascx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ashx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ashx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asm.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asmx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asmx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.aspx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.aspx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.AtlTraceTool.TraceFile="C:Program Files (x86)Microsoft Visual Studio 11.0Common7ToolsAtlTraceTool8.exe" /dde VisualStudio.bdcm.10.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bdcr.10.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.c.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.c.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cjs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cod.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cod.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.coffee.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.coffee.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.config.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.config.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ContentInstaller.vscontent="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSContentInstaller.exe" "%1" VisualStudio.ContentInstaller.vsi="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSContentInstaller.exe" "%1" VisualStudio.coverage.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.coverage.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.coveragexml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cpp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cpp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cppm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.csh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cshtml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cshtml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.csproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.csproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.css.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.css.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cur.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cur.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cxx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cxx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dds.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.def.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.def.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dgml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.dgsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.diagsession.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.disco.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.disco.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.dsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dsp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dsw.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dtd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.dtd.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.edmx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fbx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsi.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.fsscript.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.generictest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.gsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.gshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.h.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.h.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hdmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.hdmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.hh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hlsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hlsl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hlsli.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hlsli.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hpp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hpp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hta.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hta.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.htm.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.htm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.html.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.html.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hxx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hxx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.i.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.i.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ico.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ico.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.idl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.idl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.inc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.inc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.inl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.inl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ipp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.itrace.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.ixx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.js.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.js.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.json.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.jsonld.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.jsproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.jsproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.jsx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.Launcher.csproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.csproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.fsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.jsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.ls3proj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.lsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.shproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.sln="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.slnf="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.sqlproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.Launcher.vbproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vbproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcproj.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxitems.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxproj.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vsix="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.less.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.less.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ls3proj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.lsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.lst.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.lst.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mak.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mak.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.map.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.map.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.master.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.master.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mdmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mdmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.mdp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mfcribbon-ms.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.mfcribbon-ms.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mjs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mk.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mk.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.mts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mtx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.natvis.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.odh.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.odh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.odl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.odl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.orderedtest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.orderedtest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ORDesigner.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgdef.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgdef.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pkgundef.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgundef.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.props.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.psess.8.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde "%1" VisualStudio.psh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.publishproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.publishproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pubxml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pubxml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.razor.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rc2.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rc2.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rct.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rct.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rdlc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.res.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.res.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.resjson.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rgs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rgs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ruleset.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ruleset.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.s.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.s.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.scss.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sdl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sdl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.shproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sitemap.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sitemap.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.skin.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.skin.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sln.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.sln.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.slnf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.snippet.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.snippet.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sqlproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sqlproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.srf.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.srf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.StvProj.10="C:Program Files (x86)Microsoft SDKsWindowsv10.0AbinNETFX 4.8 ToolsSvcTraceViewer.exe" "%1" VisualStudio.svc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.svc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.SvcLog.10="C:Program Files (x86)Microsoft SDKsWindowsv10.0AbinNETFX 4.8 ToolsSvcTraceViewer.exe" "%1" VisualStudio.targets.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.testrunconfig.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.testrunconfig.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.testsettings.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.testsettings.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.TextTemplating.11.0="%VsInstallDir%devenv.exe" /dde "%1" VisualStudio.tlh.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.tlh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tli.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.tli.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.trx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.trx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tsx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tt.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.txt.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.uitest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vb.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vb.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vbhtml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vbhtml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vbproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vbproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcw.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcxitems.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcxproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcxproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcxproj.filters.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vcxproj.filters.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsct.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsct.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsglog.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsixlangpack.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsixlangpack.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsixmanifest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsixmanifest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsls.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /JoinWorkspace "%1" VisualStudio.vsmdi.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsmdi.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vsprops.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vsps.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vstemplate.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vstemplate.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vstfs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEVSWebLauncher.exe" /openTfsLinkAsIs "%1" VisualStudio.vsweb.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEVSWebLauncher.exe" /openuri "%1" VisualStudio.wiq.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDE\devenv.exe" /dde "%1" VisualStudio.wsdl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.wsdl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.wsf.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.wsf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xamlx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xdr.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xdr.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xoml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.xproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.xsd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xsd.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xsl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xslt.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xslt.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde vstfs="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSWebLauncher.exe" /openTfsLinkAsIs "%1" vsweb+diag="C:Program Files (x86)Microsoft Visual StudioSharedVsWebProtocolSelectorMicrosoft.VisualStudio.VsWebProtocolSelector.exe" "%1" vsweb+githubsi="C:Program Files (x86)Microsoft Visual StudioSharedGitHubProtocolHandlerMicrosoft.VisualStudio.GitHubProtocolHandler.exe" "%1" vsweb+teamstoolkit="C:Program Files (x86)Microsoft Visual StudioSharedVsWebProtocolSelectorMicrosoft.VisualStudio.VsWebProtocolSelector.exe" "%1" WAB.AssocProtocol.LDAP="%ProgramFiles%Windows Mailwab.exe" "/ldap:%1 Windows >=10 0 12/02/2025 _Misc Software Query Cmd Prompt cmd Windows IP Configuration Host Name . . . . . . . . . . . . : SWDWin11 Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . . . . . : Hybrid IP Routing Enabled. . . . . . . . : No WINS Proxy Enabled. . . . . . . . : No Ethernet adapter Ethernet: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Intel(R) Ethernet Connection (14) I219-LM Physical Address. . . . . . . . . : 00-BE-43-92-F1-B8 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Link-local IPv6 Address . . . . . : fe80::d3d4:2c32:399d:fd94%13(Preferred) IPv4 Address. . . . . . . . . . . : 192.168.0.206(Preferred) Subnet Mask . . . . . . . . . . . : 255.255.255.0 Lease Obtained. . . . . . . . . . : Tuesday, December 2, 2025 3:52:35 PM Lease Expires . . . . . . . . . . : Tuesday, December 2, 2025 6:52:34 PM Default Gateway . . . . . . . . . : 192.168.0.1 DHCP Server . . . . . . . . . . . : 192.168.0.1 DHCPv6 IAID . . . . . . . . . . . : 201375299 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2A-B9-2E-D4-00-BE-43-92-F1-B8 DNS Servers . . . . . . . . . . . : 192.168.0.1 NetBIOS over Tcpip. . . . . . . . : Enabled Wireless LAN adapter Wi-Fi: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Intel(R) Wi-Fi 6E AX210 160MHz Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B5 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Wireless LAN adapter Local Area Connection* 1: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B6 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Wireless LAN adapter Local Area Connection* 2: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2 Physical Address. . . . . . . . . : F6-CE-23-B4-C7-B5 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Ethernet adapter Bluetooth Network Connection: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B9 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Module Name Display Name Driver Type Link Date ============ ====================== ============= ====================== 1394ohci 1394 OHCI Compliant Ho Kernel 3ware 3ware Kernel 5/18/2015 4:28:03 PM ACPI Microsoft ACPI Driver Kernel AcpiAudioCom ACPI Audio Compositor Kernel AcpiDev ACPI Devices driver Kernel acpiex Microsoft ACPIEx Drive Kernel acpipagr ACPI Processor Aggrega Kernel AcpiPmi ACPI Power Meter Drive Kernel acpitime ACPI Wake Alarm Driver Kernel Acx01000 Acx01000 Kernel ADP80XX ADP80XX Kernel 4/9/2015 2:49:48 PM AFD Ancillary Function Dri Kernel afunix afunix Kernel ahcache Application Compatibil Kernel amdgpio2 AMD GPIO Client Driver Kernel 2/7/2019 2:32:20 AM amdi2c AMD I2C Controller Ser Kernel 3/19/2019 10:57:33 PM AmdK8 AMD K8 Processor Drive Kernel AmdPPM AMD Processor Driver Kernel amdsata amdsata Kernel 5/14/2015 6:14:52 AM amdsbs amdsbs Kernel 12/11/2012 2:21:44 PM amdwps AMD Workload Profiling Kernel amdxata amdxata Kernel 4/30/2015 6:55:35 PM AppID AppID Driver Kernel AppleSSD Apple Solid State Driv Kernel 11/11/2019 2:24:17 PM applockerflt Smartlocker Filter Dri Kernel AppvStrm AppvStrm File System AppvVemgr AppvVemgr File System AppvVfs AppvVfs File System arcsas Adaptec SAS/SATA-II RA Kernel 4/9/2015 1:12:07 PM AsyncMac RAS Asynchronous Media Kernel atapi IDE Channel Kernel b06bdrv QLogic Network Adapter Kernel 5/25/2016 1:03:08 AM bam Background Activity Mo Kernel BasicDisplay BasicDisplay Kernel BasicRender BasicRender Kernel bcmfn2 bcmfn2 Service Kernel 10/31/2016 8:09:15 PM Beep Beep Kernel bfs Brokering File System File System bindflt Windows Bind Filter Dr File System bowser Browser File System BthA2dp Microsoft Bluetooth A2 Kernel BthEnum Bluetooth Enumerator S Kernel BthHFEnum Microsoft Bluetooth Ha Kernel BthLEEnum Bluetooth Low Energy D Kernel BthMini Bluetooth Radio Driver Kernel BTHMODEM Bluetooth Modem Commun Kernel BthPan Bluetooth Device (Pers Kernel BTHPORT Bluetooth Port Driver Kernel BTHUSB Bluetooth Radio USB Dr Kernel bttflt Microsoft Hyper-V VHDP Kernel buttonconver Service for Portable D Kernel CAD Charge Arbitration Dri Kernel CDD Canonical Display Driv Kernel cdfs CD/DVD File System Rea File System cdrom CD-ROM Driver Kernel cht4iscsi cht4iscsi Kernel 2/5/2019 6:51:31 AM cht4vbd Chelsio Virtual Bus Dr Kernel 2/5/2019 6:47:51 AM CimFS CimFS File System circlass Consumer IR Devices Kernel CldFlt Windows Cloud Files Fi File System CLFS Common Log (CLFS) Kernel CmBatt Microsoft ACPI Control Kernel CNG CNG Kernel cnghwassist CNG Hardware Assist al Kernel CompositeBus Composite Bus Enumerat Kernel condrv Console Driver Kernel CSC Offline Files Driver Kernel dam Desktop Activity Moder Kernel dbx dbx File System 2/11/2019 9:39:19 AM DellInstrume DellInstrumentation Se Kernel 9/19/2024 12:53:04 AM devmap Usermode Device Mapper Kernel Dfsc DFS Namespace Client D File System disk Disk Driver Kernel DisplayMux Microsoft DisplayMux Kernel dmvsc dmvsc Kernel drmkaud Microsoft Trusted Audi Kernel DXGKrnl LDDM Graphics Subsyste Kernel e1dexpress Intel(R) PRO/1000 PCI Kernel 2/19/2025 3:10:08 AM ebdrv QLogic 10 Gigabit Ethe Kernel 11/15/2020 3:12:10 AM ebdrv0 QLogic Legacy Ethernet Kernel 11/7/2020 3:07:41 AM EhStorClass Enhanced Storage Filte Kernel EhStorTcgDrv Microsoft driver for s Kernel ErrDev Microsoft Hardware Err Kernel ExecutionCon CPU Scheduler for High Kernel exfat exFAT File System Driv File System ExpCoSvc ExpCoSvc Kernel 1/4/2022 2:00:18 PM fastfat FAT12/16/32 File Syste File System fdc Floppy Disk Controller Kernel FileCrypt FileCrypt File System FileInfo File Information FS Mi File System Filetrace Filetrace File System flpydisk Floppy Disk Driver Kernel FltMgr FltMgr File System FsDepends File System Dependency File System fse Flow steering engine Kernel fvevol BitLocker Drive Encryp Kernel gencounter Microsoft Hyper-V Gene Kernel genericusbfn Generic USB Function C Kernel GenPass Microsoft GenPass Driv Kernel GPIOClx0101 Microsoft GPIO Class E Kernel GSCAuxDriver Intel(R) Graphics Syst Kernel 3/3/2021 5:13:06 AM GSCx64 Intel(R) Graphics Syst Kernel 4/26/2021 7:49:50 AM HdAudAddServ Microsoft 1.1 UAA Func Kernel HDAudBus Microsoft UAA Bus Driv Kernel HidBatt HID UPS Battery Driver Kernel HidBth Microsoft Bluetooth HI Kernel hidi2c Microsoft I2C HID Mini Kernel hidinterrupt Common Driver for HID Kernel HidIr Microsoft Infrared HID Kernel hidspi Microsoft SPI HID Mini Kernel HidSpiCx HidSpi KMDF Class Exte Kernel HidUsb Microsoft HID Class Dr Kernel hnswfpdriver HNS WFP Driver Kernel HpSAMD HpSAMD Kernel 3/26/2013 3:36:54 PM Hsp Microsoft Pluton Servi Kernel HTTP HTTP Service Kernel hvcrash hvcrash Kernel hvservice Microsoft Hypervisor S Kernel hvsocketcont hvsocketcontrol Kernel HwNClx0101 Microsoft Hardware Not Kernel hwpolicy Hardware Policy Driver Kernel hyperkbd hyperkbd Kernel HyperVideo HyperVideo Kernel I3CHost I3C Host Controller Se Kernel i8042prt i8042 Keyboard and PS/ Kernel iagpio Intel Serial IO GPIO C Kernel 7/23/2018 3:04:46 AM iai2c Intel(R) Serial IO I2C Kernel 7/23/2018 3:04:39 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/19/2018 1:53:24 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/17/2018 3:25:15 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/17/2018 1:07:03 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 5/15/2018 11:46:36 PM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 4/19/2018 1:52:58 AM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 4/17/2018 3:24:40 AM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 7/14/2019 11:12:12 PM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 5/15/2018 11:46:02 PM iaLPSS2_GPIO Intel(R) Serial IO GPI Kernel 1/18/2021 6:17:15 PM iaLPSS2_I2C_ Intel(R) Serial IO I2C Kernel 1/18/2021 6:16:45 PM iaLPSS2_SPI_ Intel(R) Serial IO SPI Kernel 1/18/2021 6:17:31 PM iaLPSS2_UART Intel(R) Serial IO UAR Kernel 1/18/2021 6:17:05 PM iaLPSSi_GPIO Intel(R) Serial IO GPI Kernel 2/2/2015 2:00:09 AM iaLPSSi_I2C Intel(R) Serial IO I2C Kernel 2/24/2015 8:52:07 AM iaStorAC Intel(R) Chipset SATA/ Kernel 9/19/2022 8:43:23 AM iaStorAfs iaStorAfs File System 9/19/2022 8:42:25 AM iaStorAVC Intel Chipset SATA RAI Kernel 9/5/2019 6:07:32 AM iaStorV Intel RAID Controller Kernel 4/11/2011 12:48:16 PM ibbus Mellanox InfiniBand Bu Kernel 6/19/2019 7:20:09 AM ibtusb Intel(R) Wireless Blue Kernel 7/20/2025 12:22:16 PM igfxn igfxn Kernel 8/18/2025 11:42:26 PM IndirectKmd Indirect Displays Kern Kernel IntcAudioBus Intel(R) Smart Sound T Kernel 3/25/2021 1:52:51 PM IntcAzAudAdd Service for Realtek HD Kernel 12/27/2024 2:16:18 AM IntcOED Intel(R) Smart Sound T Kernel 3/25/2021 1:54:48 PM intelide intelide Kernel intelpep Intel(R) Power Engine Kernel intelpmax Intel(R) Dynamic Devic Kernel IntelPMT Intel(R) Platform Moni Kernel intelppm Intel Processor Driver Kernel iorate Disk I/O Rate Filter D Kernel IpFilterDriv IP Traffic Filter Driv Kernel IPMIDRV IPMIDRV Kernel IPNAT IP Network Address Tra Kernel IPT IPT Kernel isapnp isapnp Kernel iScsiPrt iScsiPort Driver Kernel ItSas35i ItSas35i Kernel 3/1/2021 3:15:20 AM kbdclass Keyboard Class Driver Kernel kbdhid Keyboard HID Driver Kernel kbldfltr kbldfltr Kernel kdnic Microsoft Kernel Debug Kernel kdnic_legacy Microsoft Kernel Debug Kernel KSecDD KSecDD Kernel KSecPkg KSecPkg Kernel KslD KslD Kernel ksthunk Kernel Streaming Thunk Kernel l1vhlwf Nested Network Virtual Kernel l2bridge Bridge Driver Kernel lltdio Link-Layer Topology Di Kernel LSI_SAS LSI_SAS Kernel 3/25/2015 1:36:48 PM LSI_SAS2i LSI_SAS2i Kernel 8/2/2017 7:29:59 AM LSI_SAS3i LSI_SAS3i Kernel 8/21/2020 1:33:28 AM luafv UAC File Virtualizatio File System mausbhost MA-USB Host Controller Kernel mausbip MA-USB IP Filter Drive Kernel mbamchameleo mbamchameleon File System 9/22/2025 6:07:46 AM MbamElam MbamElam Kernel 1/31/2025 3:27:36 PM MBAMFarflt MBAMFarflt File System 10/6/2025 11:58:18 AM MBAMSwissArm MBAMSwissArmy Kernel 8/28/2025 9:11:10 AM MbbCx MBB Network Adapter Cl Kernel megasas2i megasas2i Kernel 1/22/2020 2:57:48 AM megasas35i megasas35i Kernel 1/12/2021 12:59:10 AM megasr megasr Kernel 6/3/2013 4:02:39 PM MEIx64 Intel(R) Management En Kernel 8/15/2024 12:36:31 AM Microsoft_Bl Microsoft Bluetooth Av Kernel mlx4_bus Mellanox ConnectX Bus Kernel 6/19/2019 7:21:08 AM MMCSS Multimedia Class Sched Kernel Modem Modem Kernel monitor Microsoft Monitor Clas Kernel mouclass Mouse Class Driver Kernel mouhid Mouse HID Driver Kernel mountmgr Mount Point Manager Kernel mpi3drvi mpi3drvi Kernel 11/16/2021 3:22:38 PM mpsdrv Windows Defender Firew Kernel MRxDAV WebDav Client Redirect File System mrxsmb SMB MiniRedirector Wra File System mrxsmb20 SMB 2.0 MiniRedirector File System MsBridge Microsoft MAC Bridge Kernel Msfs Msfs File System msgpiowin32 Common Driver for Butt Kernel mshidkmdf Pass-through HID to KM Kernel mshidumdf Pass-through HID to UM Kernel msisadrv msisadrv Kernel MSKSSRV Microsoft Streaming Se Kernel MsLldp Microsoft Link-Layer D Kernel MSPCLOCK Microsoft Streaming Cl Kernel MSPQM Microsoft Streaming Qu Kernel MsQuic MsQuic Kernel MsQuicPrev MSQUIC Kernel MsRPC MsRPC Kernel MsSecCore Microsoft Security Cor Kernel MsSecFlt Microsoft Security Eve Kernel MsSecWfp Microsoft Security WFP Kernel mssmbios Microsoft System Manag Kernel MSTEE Microsoft Streaming Te Kernel MTConfig Microsoft Input Config Kernel Mup Mup File System mvumis mvumis Kernel 5/23/2014 2:39:04 PM NativeWifiP NativeWiFi Filter Kernel ndfltr NetworkDirect Service Kernel 6/19/2019 7:18:42 AM NDIS NDIS System Driver Kernel NdisCap Microsoft NDIS Capture Kernel NdisImPlatfo Microsoft Network Adap Kernel NdisTapi Remote Access NDIS TAP Kernel Ndisuio NDIS Usermode I/O Prot Kernel NdisVirtualB Microsoft Virtual Netw Kernel NdisWan Remote Access NDIS WAN Kernel ndiswanlegac Remote Access LEGACY N Kernel NDKPerf NDKPerf Driver Kernel NDKPing NDKPing Driver Kernel ndproxy NDIS Proxy Driver Kernel Ndu Windows Network Data U Kernel NetAdapterCx Network Adapter WDF Cl Kernel NetBIOS NetBIOS Interface File System NetBT NetBT Kernel netvsc netvsc Kernel NetworkPriva Microsoft Network Priv Kernel Netwtw14 ___ Intel(R) Wireless Kernel 7/5/2025 1:15:36 PM Npfs Npfs File System npsvctrig Named pipe service tri Kernel nsiproxy NSI Proxy Service Driv Kernel Ntfs Ntfs File System Null Null Kernel nvdimm Microsoft NVDIMM devic Kernel NVHDA Service for NVIDIA Hig Kernel 9/29/2024 11:37:46 PM nvlddmkm nvlddmkm Kernel 6/17/2025 2:04:53 AM nvmedisk Microsoft NVMe disk dr Kernel nvraid nvraid Kernel 4/21/2014 12:28:42 PM nvstor nvstor Kernel 4/21/2014 12:34:03 PM P9Rdr Plan 9 Redirector Driv Kernel Parport Parallel port driver Kernel partmgr Partition driver Kernel passthrupars PassthroughParser Kernel pci PCI Bus Driver Kernel pciide pciide Kernel pcmcia pcmcia Kernel pcw Performance Counters f Kernel pdc pdc Kernel PEAUTH PEAUTH Kernel percsas2i percsas2i Kernel 3/14/2016 6:50:11 PM percsas3i percsas3i Kernel 6/1/2018 3:47:02 PM PktMon Packet Monitor Driver Kernel PktMonApi Packet Monitor Export Kernel PlutonHeci Microsoft Pluton Secur Kernel PlutonHsp2 Microsoft Pluton Servi Kernel pmem Microsoft persistent m Kernel PNPMEM Microsoft Memory Modul Kernel portcfg portcfg Kernel PptpMiniport WAN Miniport (PPTP) Kernel PRM Microsoft PRM Driver Kernel Processor Processor Driver Kernel Psched QoS Packet Scheduler Kernel pvhdparser pvhdparser Kernel pvscsi pvscsi Storage Control Kernel 5/19/2021 9:55:26 PM QWAVEdrv QWAVE driver Kernel Ramdisk Windows RAM Disk Drive Kernel RasAcd Remote Access Auto Con Kernel RasAgileVpn WAN Miniport (IKEv2) Kernel Rasl2tp WAN Miniport (L2TP) Kernel RasPppoe Remote Access PPPOE Dr Kernel RasSstp WAN Miniport (SSTP) Kernel rdbss Redirected Buffering S File System rdpbus Remote Desktop Device Kernel RDPDR Remote Desktop Device Kernel rdyboost ReadyBoost Kernel ReFS ReFS File System ReFSv1 ReFSv1 File System RFCOMM Bluetooth Device (RFCO Kernel rhproxy Resource Hub proxy dri Kernel RoutePolicy Microsoft Route Policy Kernel rspndr Link-Layer Topology Di Kernel RTSUER Realtek USB Card Reade Kernel 12/7/2023 2:54:26 AM s3cap s3cap Kernel sbp2port SBP-2 Transport/Protoc Kernel scfilter Smart card PnP Class F Kernel scmbus Microsoft Storage Clas Kernel sdbus sdbus Kernel SdcaHidInbox SoundWire HID Driver Kernel SdcaMfdInbox SoundWire Audio Multif Kernel sdstor SD Storage Port Driver Kernel SensorsSimul UMDF Reflector service Kernel SerCx Serial UART Support Li Kernel SerCx2 Serial UART Support Li Kernel Serenum Serenum Filter Driver Kernel Serial Serial port driver Kernel sermouse Serial Mouse Driver Kernel sfloppy High-Capacity Floppy D Kernel SiSRaid2 SiSRaid2 Kernel 9/24/2008 12:28:20 PM SiSRaid4 SiSRaid4 Kernel 10/1/2008 3:56:04 PM SmartSAMD SmartSAMD Kernel 2/21/2019 10:54:44 AM smbdirect smbdirect File System spaceparser spaceparser Kernel spaceport Storage Spaces Driver Kernel SpbCx Simple Peripheral Bus Kernel srv2 Server SMB 2.xxx Drive File System srvnet srvnet File System stexstor stexstor Kernel 11/26/2012 5:02:51 PM storahci Microsoft Standard SAT Kernel storflt Microsoft Hyper-V Stor Kernel stornvme Microsoft Standard NVM Kernel storqosflt Storage QoS Filter Dri File System storufs Microsoft Universal Fl Kernel storvsc storvsc Kernel storvsp storvsp Kernel swenum Software Bus Driver Kernel Tcpip TCP/IP Protocol Driver Kernel Tcpip6 @todo.dll,-100;Microso Kernel tcpipreg @%SystemRoot%System32 Kernel tdx NetIO Legacy TDI Suppo Kernel terminpt Microsoft Remote Deskt Kernel ThermalFilte Microsoft Thermal Filt Kernel TPM TPM Kernel TsUsbFlt Remote Desktop USB Hub Kernel TsUsbGD Remote Desktop Generic Kernel tsusbhub Remote Desktop USB Hub Kernel tunnel Microsoft Tunnel Minip Kernel UASPStor USB Attached SCSI (UAS Kernel UcmCx0101 USB Connector Manager Kernel UcmTcpciCx01 UCM-TCPCI KMDF Class E Kernel UcmUcsiAcpiC UCM-UCSI ACPI Client Kernel UcmUcsiCx010 UCM-UCSI KMDF Class Ex Kernel UCPD UCPD File System Ucx01000 USB Host Support Libra Kernel UdeCx USB Device Emulation S Kernel udfs udfs File System UEFI Microsoft UEFI Driver Kernel UevAgentDriv UevAgentDriver File System Ufx01000 USB Function Class Ext Kernel UfxChipidea USB Chipidea Controlle Kernel ufxsynopsys USB Synopsys Controlle Kernel uiomap Microsoft UIO Mapper D Kernel umbus UMBus Enumerator Drive Kernel UmPass Microsoft UMPass Drive Kernel UnionFS UnionFS File System UrsChipidea Chipidea USB Role-Swit Kernel UrsCx01000 USB Role-Switch Suppor Kernel UrsSynopsys Synopsys USB Role-Swit Kernel usb-platform Usb Platform Detection Kernel Usb4DeviceRo USB4 Device Router Ser Kernel Usb4HostRout USB4 Host Router Servi Kernel usbaudio USB Audio Driver (WDM) Kernel usbaudio2 USB Audio 2.0 Service Kernel usbccgp Microsoft USB Generic Kernel usbcir eHome Infrared Receive Kernel usbehci Microsoft USB 2.0 Enha Kernel usbhub Microsoft USB Standard Kernel USBHUB3 SuperSpeed Hub Kernel usbohci Microsoft USB Open Hos Kernel usbprint Microsoft USB PRINTER Kernel usbser Microsoft USB Serial D Kernel USBSTOR USB Mass Storage Drive Kernel usbuhci Microsoft USB Universa Kernel USBXHCI USB xHCI Compliant Hos Kernel vdrvroot Microsoft Virtual Driv Kernel VerifierExt Driver Verifier Extens Kernel VfpExt Microsoft Azure VFP Sw Kernel vhdmp vhdmp Kernel vhdparser vhdparser Kernel vhf Virtual HID Framework Kernel Vid Vid Kernel VirtualRende VirtualRender Kernel vmbus Virtual Machine Bus Kernel VMBusHID VMBusHID Kernel vmbusproxy vmbusproxy Kernel vmbusr Virtual Machine Bus Pr Kernel vmgid Microsoft Hyper-V Gues Kernel VMSNPXY VmSwitch NIC Proxy Dri Kernel VMSP VmSwitch Protocol Driv Kernel VmsProxy VmSwitch Proxy Driver Kernel VMSVSF VmSwitch Extensibility Kernel VMSVSP VmSwitch Extensibility Kernel volmgr Volume Manager Driver Kernel volmgrx Dynamic Volume Manager Kernel volsnap Volume Shadow Copy dri Kernel volume Volume driver Kernel vpci Microsoft Hyper-V Virt Kernel vpcivsp Microsoft Hyper-V PCI Kernel vsmraid vsmraid Kernel 4/22/2014 1:21:41 PM VSPerfDrv110 Performance Tools Driv Kernel 7/1/2012 9:25:47 PM VSTXRAID VIA StorX Storage RAID Kernel 1/21/2013 12:00:28 PM vwifibus Virtual Wireless Bus D Kernel vwififlt Virtual WiFi Filter Dr Kernel vwifimp Virtual WiFi Miniport Kernel WacomPen Wacom Serial Pen HID D Kernel wanarp Remote Access IP ARP D Kernel wanarpv6 Remote Access IPv6 ARP Kernel wcifs Windows Container Isol File System WdBoot Microsoft Defender Ant Kernel Wdf01000 Kernel Mode Driver Fra Kernel WdFilter Microsoft Defender Ant File System wdiwifi WDI Driver Framework Kernel WdmCompanion WdmCompanionFilter Kernel WdNisDrv Microsoft Defender Ant Kernel WFPLWFS Microsoft Windows Filt Kernel Wificx Wifi Network Adapter C Kernel WiManH WiMan Service Kernel 8/12/2024 6:39:11 AM WIMMount WIMMount File System WinAccelCx01 Microsoft Accelerator Kernel WindowsTrust Windows Trusted Execut Kernel WindowsTrust Microsoft Windows Trus Kernel wini3ctarget Generic driver for I3C Kernel WinMad WinMad Service Kernel 6/19/2019 7:18:11 AM WinNat Windows NAT Driver Kernel WINUSB WinUsb Driver Kernel WinVerbs WinVerbs Service Kernel 6/19/2019 7:18:12 AM WmiAcpi Microsoft Windows Mana Kernel Wof Windows Overlay File S File System WpdUpFltr WPD Upper Class Filter Kernel ws2ifsl Winsock IFS Driver Kernel wtd wtd Kernel WudfPf User Mode Driver Frame Kernel WUDFRd Windows Driver Foundat Kernel WUDFWpdFs WPD File System driver Kernel xboxgip Xbox Game Input Protoc Kernel xinputhid XINPUT HID Filter Driv Kernel ZTDNS ZTDNS Kernel MBAMWebProte MBAMWebProtection Kernel 5/28/2025 7:42:56 AM ESProtection Malwarebytes Anti-Expl Kernel 6/3/2025 2:41:04 AM MBAMProtecti MBAMProtection Kernel 7/18/2025 9:07:12 AM OS Name: Microsoft Windows 11 Pro OS Version: 10.0.26100 N/A Build 26100 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Workstation OS Build Type: Multiprocessor Free Active Connections Proto Local Address Foreign Address State PID TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 1696 RpcEptMapper [svchost.exe] TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 0.0.0.0:2869 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 0.0.0.0:5040 0.0.0.0:0 LISTENING 12236 CDPSvc [svchost.exe] TCP 0.0.0.0:17500 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 0.0.0.0:20321 0.0.0.0:0 LISTENING 18816 [Resolve.exe] TCP 0.0.0.0:49152 0.0.0.0:0 LISTENING 18816 [Resolve.exe] TCP 0.0.0.0:49664 0.0.0.0:0 LISTENING 1384 Can not obtain ownership information TCP 0.0.0.0:49665 0.0.0.0:0 LISTENING 1208 Can not obtain ownership information TCP 0.0.0.0:49666 0.0.0.0:0 LISTENING 2152 Schedule [svchost.exe] TCP 0.0.0.0:49667 0.0.0.0:0 LISTENING 3540 SessionEnv [svchost.exe] TCP 0.0.0.0:49668 0.0.0.0:0 LISTENING 3640 EventLog [svchost.exe] TCP 0.0.0.0:49669 0.0.0.0:0 LISTENING 4580 [spoolsv.exe] TCP 0.0.0.0:49674 0.0.0.0:0 LISTENING 1332 Can not obtain ownership information TCP 127.0.0.1:843 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 127.0.0.1:8884 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 127.0.0.1:17600 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 127.0.0.1:20321 127.0.0.1:64108 ESTABLISHED 18816 [Resolve.exe] TCP 127.0.0.1:43227 0.0.0.0:0 LISTENING 5544 Can not obtain ownership information TCP 127.0.0.1:60000 127.0.0.1:62832 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62830 127.0.0.1:62831 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62831 127.0.0.1:62830 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62832 127.0.0.1:60000 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63972 127.0.0.1:63973 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63973 127.0.0.1:63972 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63974 127.0.0.1:63975 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63975 127.0.0.1:63974 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:64108 127.0.0.1:20321 ESTABLISHED 18816 [Resolve.exe] TCP 192.168.0.206:139 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 192.168.0.206:49675 20.59.87.227:443 ESTABLISHED 5736 WpnService [svchost.exe] TCP 192.168.0.206:49706 52.96.64.226:443 ESTABLISHED 14392 [Microsoft.Notes.exe] TCP 192.168.0.206:49707 52.96.64.226:443 ESTABLISHED 14392 [Microsoft.Notes.exe] TCP 192.168.0.206:51068 23.217.9.11:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:52918 23.217.9.12:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:53685 13.71.196.234:8883 ESTABLISHED 18212 [SupportAssistAgent.exe] TCP 192.168.0.206:56912 74.179.65.112:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:58348 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:58900 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:60031 20.9.155.153:443 ESTABLISHED 19620 [MicrosoftSecurityApp.exe] TCP 192.168.0.206:60032 162.125.40.1:443 ESTABLISHED 20244 [Dropbox.exe] TCP 192.168.0.206:60033 162.125.40.2:443 ESTABLISHED 20244 [Dropbox.exe] TCP 192.168.0.206:62716 54.163.113.199:443 CLOSE_WAIT 5544 Can not obtain ownership information TCP 192.168.0.206:63915 23.217.9.12:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63916 23.217.9.16:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63917 23.217.9.16:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63918 23.211.124.141:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63919 23.211.124.141:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63935 20.59.87.227:443 ESTABLISHED 7400 [OneDrive.exe] TCP 192.168.0.206:64498 23.217.9.21:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:64505 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP [::]:135 [::]:0 LISTENING 1696 RpcEptMapper [svchost.exe] TCP [::]:445 [::]:0 LISTENING 4 Can not obtain ownership information TCP [::]:2869 [::]:0 LISTENING 4 Can not obtain ownership information TCP [::]:17500 [::]:0 LISTENING 20244 [Dropbox.exe] TCP [::]:49664 [::]:0 LISTENING 1384 Can not obtain ownership information TCP [::]:49665 [::]:0 LISTENING 1208 Can not obtain ownership information TCP [::]:49666 [::]:0 LISTENING 2152 Schedule [svchost.exe] TCP [::]:49667 [::]:0 LISTENING 3540 SessionEnv [svchost.exe] TCP [::]:49668 [::]:0 LISTENING 3640 EventLog [svchost.exe] TCP [::]:49669 [::]:0 LISTENING 4580 [spoolsv.exe] TCP [::]:49674 [::]:0 LISTENING 1332 Can not obtain ownership information TCP [::1]:42050 [::]:0 LISTENING 7592 [OneDrive.Sync.Service.exe] TCP [::1]:49670 [::]:0 LISTENING 5464 [jhi_service.exe] UDP 0.0.0.0:123 *:* 25476 W32Time [svchost.exe] UDP 0.0.0.0:5050 *:* 12236 CDPSvc [svchost.exe] UDP 0.0.0.0:5353 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:5353 *:* 20836 [msedge.exe] UDP 0.0.0.0:5353 *:* 20836 [msedge.exe] UDP 0.0.0.0:5353 *:* 21072 [msedge.exe] UDP 0.0.0.0:5353 *:* 21072 [msedge.exe] UDP 0.0.0.0:5355 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:17500 *:* 20244 [Dropbox.exe] UDP 0.0.0.0:54760 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:64176 *:* 18816 [Resolve.exe] UDP 0.0.0.0:64840 *:* 3096 Dnscache [svchost.exe] UDP 127.0.0.1:1900 *:* 4988 SSDPSRV [svchost.exe] UDP 127.0.0.1:49918 127.0.0.1:49918 4856 iphlpsvc [svchost.exe] UDP 127.0.0.1:53190 *:* 4988 SSDPSRV [svchost.exe] UDP 192.168.0.206:137 *:* 4 Can not obtain ownership information UDP 192.168.0.206:138 *:* 4 Can not obtain ownership information UDP 192.168.0.206:1900 *:* 4988 SSDPSRV [svchost.exe] UDP 192.168.0.206:5353 *:* 18816 [Resolve.exe] UDP 192.168.0.206:53189 *:* 4988 SSDPSRV [svchost.exe] UDP [::]:123 *:* 25476 W32Time [svchost.exe] UDP [::]:5353 *:* 21072 [msedge.exe] UDP [::]:5353 *:* 3096 Dnscache [svchost.exe] UDP [::]:5353 *:* 20836 [msedge.exe] UDP [::]:5355 *:* 3096 Dnscache [svchost.exe] UDP [::]:54760 *:* 3096 Dnscache [svchost.exe] UDP [::]:64177 *:* 18816 [Resolve.exe] UDP [::]:64840 *:* 3096 Dnscache [svchost.exe] UDP [::1]:1900 *:* 4988 SSDPSRV [svchost.exe] UDP [::1]:5353 *:* 18816 [Resolve.exe] UDP [::1]:53188 *:* 4988 SSDPSRV [svchost.exe] UDP [fe80::d3d4:2c32:399d:fd94%13]:1900 *:* 4988 SSDPSRV [svchost.exe] UDP [fe80::d3d4:2c32:399d:fd94%13]:53187 *:* 4988 SSDPSRV [svchost.exe] _Misc Software 0 12/02/2025 WP Function Code That Displays Errors error Error Traping ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL & ~E_WARNING & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false); define('WP_DEBUG_LOG', true); // Still logs critical errors to debug.log function wp_debug_mode() { /** * Filters whether to allow the debug mode check to occur. * * This filter runs before it can be used by plugins. It is designed for * non-web runtimes. Returning false causes the `WP_DEBUG` and related * constants to not be checked and the default PHP values for errors * will be used unless you take care to update them yourself. * * To use this filter you must define a `$wp_filter` global before * WordPress loads, usually in `wp-config.php`. * * Example: * * $GLOBALS['wp_filter'] = array( * 'enable_wp_debug_mode_checks' => array( * 10 => array( * array( * 'accepted_args' => 0, * 'function' => function() { * return false; * }, * ), * ), * ), * ); * * @since 4.6.0 * * @param bool $enable_debug_mode Whether to enable debug mode checks to occur. Default true. */ if ( ! apply_filters( 'enable_wp_debug_mode_checks', true ) ) { return; } if ( WP_DEBUG ) { error_reporting( E_ALL ); if ( WP_DEBUG_DISPLAY ) { ini_set( 'display_errors', 1 ); } elseif ( null !== WP_DEBUG_DISPLAY ) { ini_set( 'display_errors', 0 ); } if ( in_array( strtolower( (string) WP_DEBUG_LOG ), array( 'true', '1' ), true ) ) { $log_path = WP_CONTENT_DIR . '/debug.log'; } elseif ( is_string( WP_DEBUG_LOG ) ) { $log_path = WP_DEBUG_LOG; } else { $log_path = false; } if ( $log_path ) { ini_set( 'log_errors', 1 ); ini_set( 'error_log', $log_path ); } } else { error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } /* * The 'REST_REQUEST' check here is optimistic as the constant is most * likely not set at this point even if it is in fact a REST request. */ if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || defined( 'MS_FILES_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() || wp_is_json_request() ) { ini_set( 'display_errors', 0 ); } } WP 1 01/08/2026 Php Archive Code Zoom Backup Code zoom format html_entity_decode Codezoom.php <?php //compiled version: 7.2022.912.1815 $REPORT_builder.="<script> function Clipboard(txt) { var copyText = document.getElementById(txt); copyText.select(); copyText.setSelectionRange(0, 99999); navigator.clipboard.writeText(copyText.value); }</script>"; $pageLevel=3; $title="code View"; // `Startup Config` embed point $appid="638069743707776546";$appidLast=""; error_reporting( error_reporting() & ~E_NOTICE ); require_once("mystuff.php"); require_once("functions.php"); $r=new mysqli_swd(); //if(file_exists("header_global.php")) require_once("header_global.php"); //if(file_exists("header.php")){ include("header.php"); }else{ echo $REPORT_builder; } $codeid=$_GET["PID"]; //$codeid = ereg_replace('[^0-9]', '', $codeid); $sql="SELECT code,viewed,viewed_date,show_html FROM code WHERE codeid = '$codeid'"; $r->dbsql($sql); $code=html_entity_decode(stripslashes($r->data1[0])); $sql="UPDATE `code` SET `viewed`='".($r->data1[1]+1)."',`viewed_date`='".date("Y-m-d")."' WHERE codeid = '$codeid'";$r->dbsql($sql); $REPORT_builder.="<div class='div1'><textarea id='code' name='code' style=min-height:500px;width:100%;>$code</textarea></div> <input type='button' name='keywords_clipboard' style='margin-top:25px;' value='Save Code' onclick="Clipboard('code');"> <input type=button onclick="location.href='codeView.php?BACK=1#$codeid';" value='R E T U R N'> </body></html>"; echo $REPORT_builder; ?> Php 0 12/28/2022 Php Archive Color Change Script color convert javascript step Home Page div {float:left;} ---------------- ---------------- -------------------- ---Test---- R: G: B: Try it yourself: R: G: B:Transfer RGB Color Values Color Hex Code Color Hex Code Color Hex Code Alice blue #F0F8FF Antique white #FAEBD7 Aqua #00FFFF Aquamarine #7FFFD4 Azure #F0FFFF Beige #F5F5DC Bisque #FFE4C4 Black #000000 Blanche dalmond #FFEBCD Blue #0000FF Blue violet #8A2BE2 Brown #A52A2A Burlywood #DEB887 Cadet blue #5F9EA0 Chartreuse #7FFF00 Chocolate #D2691E Coral #FF7F50 Cornflower blue #6495ED Cornsilk #FFF8DC Crimson #DC143C Cyan #00FFFF Dark blue #00008B Dark cyan #008B8B Dark goldenrod #B8860B Dark gray #A9A9A9 Dark green #006400 Dark khaki #BDB76B Dark magenta #8B008B Dark olive green #556B2F Dark orange #FF8C00 Dark orchid #9932CC Dark red #8B0000 Dark salmon #E9967A Dark seagreen #8DBC8F Dark slate blue #483D8B Dark slate gray #2F4F4F Dark turquoise #00DED1 Dark violet #9400D3 Deep pink #FF1493 Deep sky blue #00BFFF Dim gray #696969 Dodger blue #1E90FF Firebrick #B22222 Floral white #FFFAF0 Forest green #228B22 Fuchsia #FF00FF Gainsboro #DCDCDC Ghost white #F8F8FF Gold #FFD700 Goldenrod #DAA520 Gray #808080 Green #008000 Green yellow #ADFF2F Honeydew #F0FFF0 Hot pink #FF69B4 Indian red #CD5C5C Indigo #4B0082 Ivory #FFFFF0 Khaki #F0E68C Lavender #E6E6FA Lavender blush #FFF0F5 Lawngreen #7CFC00 Lemon chiffon #FFFACD Light blue #ADD8E6 Light coral #F08080 Light cyan #E0FFFF Light goldenrod yellow #FAFAD2 Light green #90EE90 Light grey #D3D3D3 Light pink #FFB6C1 Light salmon #FFA07A Light seagreen #20B2AA Light sky blue #87CEFA Light slate gray #778899 Light steel blue #B0C4DE Light yellow #FFFFE0 Lime #00FF00 Lime green #32CD32 Linen #FAF0E6 Magenta #FF00FF Maroon #800000 Medium aquamarine #66CDAA Medium blue #0000CD Medium orchid #BA55D3 Medium purple #9370DB Medium sea green #3CB371 Medium slate blue #7B68EE Medium spring green #00FA9A Medium turquoise #48D1CC Medium violet red #C71585 Midnight blue #191970 Mint cream #F5FFFA Misty rose #FFE4E1 Moccasin #FFE4B5 Navajo white #FFDEAD Navy #000080 Old lace #FDF5E6 Olive drab #6B8E23 Orange #FFA500 Orange red #FF4500 Orchid #DA70D6 Pale goldenrod #EEE8AA Pale green #98FB98 Pale turquoise #AFEEEE Pale violet red #DB7093 Papaya whip #FFEFD5 Peach puff #FFDAB9 Peru #CD853F Pink #FFC8CB Plum #DDA0DD Powder blue #B0E0E6 Purple #800080 Red #FF0000 Rosy brown #BC8F8F Royal blue #4169E1 Saddle brown #8B4513 Salmon #FA8072 Sandy brown #F4A460 Sea green #2E8B57 Sea shell #FFF5EE Sienna #A0522D Silver #C0C0C0 Sky blue #87CEEB Slate blue #6A5ACD Snow #FFFAFA Spring green #00FF7F Steelblue #4682B4 Tan #D2B48C Teal #008080 Thistle #D8BFD8 Tomato #FF6347 Turquoise #40E0D0 Violet #EE82EE Wheat #F5DEB3 White #FFFFFF Whitesmoke #F5F5F5 Yellow #FFFF00 Yellow green #9ACD32 "; Php 7 12/28/2022 Vb.net Controls Combo Box Control combo value archive example txMultiAction.Items.Clear() txMultiAction.ValueMember = "replaceid" txMultiAction.DisplayMember = "title" txMultiAction.DataSource = ds.Tables(Table_) 'created from query. See create recordset txMultiAction.SelectedValue 'read database value ================================================== Private Sub txMultiAction_SelectedIndexChanged(sender As Object, e As EventArgs) Handles txMultiAction.SelectedIndexChanged Dim B1 As String = GetIni("Setup", "cloud", Path.TREE + "MenuJS.ini") If B1 = "" Then B1 = Path.TREE Dim Table_ As String = "mulitreplace WHERE replaceid=" + Str(txMultiAction.SelectedValue) Dim query As String = "SELECT * FROM " & Table_ Dim MDBConnString_ As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=webtools1.mdb;" Dim ds As New DataSet Dim cnn As OleDbConnection = New OleDbConnection(MDBConnString_) cnn.Open() Dim cmd As New OleDbCommand(query, cnn) Dim da As New OleDbDataAdapter(cmd) da.Fill(ds, Table_) cnn.Close() Dim t1 As DataTable = ds.Tables(Table_) 'txMultiAction.Items.Clear() 'txMultiAction.ValueMember = "replaceid" 'txMultiAction.DisplayMember = "title" 'txMultiAction.DataSource = ds.Tables(Table_) Dim row As DataRow Dim Item(2) As String For Each row In t1.Rows Item(0) = row(0) Item(1) = row(1) Item(2) = row(2) MsgBox(Item(2)) 'Dim NextListItem As New ListViewItem(Item) 'ListView1.Items.Add(NextListItem) Next End Sub +++++++++++++++++++++++++++++++++++++++++++++++++ Private Sub btMultiAction_Click(sender As Object, e As EventArgs) Handles btMultiAction.Click Dim fileReader As System.IO.StreamReader, B As String = txText.Text, Action1 As Boolean = False, B1 As String = "" Dim P$(3), POS%(5) Dim A As String = "", A2 As String = "", Action0(-1) As String Dim L10 As Integer = 10, L13 As Integer = 13, Index As Integer = coReplace.SelectedIndex, C1Length As Integer = 0, LOOPOFF As Boolean = False Dim TMPstart As String = "", TMPend As String = "", J As Integer = 0 B1 = GetIni("Setup", "cloud", Path.TREE + "MenuJS.ini") If B1 = "" Then B1 = Path.TREE fileReader = My.Computer.FileSystem.OpenTextFileReader(B1 + "multiaction.txt") Dim stringReader As String ' MsgBox("The first line of the file is " & stringReader) Do Until fileReader.EndOfStream stringReader = fileReader.ReadLine() If stringReader <> "" Then If stringReader.Substring(0, 2) = "[{" Then Action1 = False 'FOUND THE NEXT SECTION. TIME TO STOP READING ON If stringReader = "[{" + txMultiAction.Text + "}]" Then Action1 = True : Continue Do If Action1 = True Then If InStr(stringReader, "?") = 0 Then MsgBox("Invalid Format. A ? needs to be between the search for and replace term", MsgBoxStyle.AbortRetryIgnore) : fileReader.Close() : Exit Sub Action0 = Split(stringReader, "?") : A = Action0(0) : A2 = Action0(1) : If A2 = "NULL" Then A2 = "" 'CREATE LOOKUP STRING AND IDENTIFY REPLACEMENT STRIN Select Case A Case "bof" 'BEGIN OF FILE B = A2 + B Case "eof" 'END OF FILE B = B + A2 Case Is = "lf" 'remove double CrLf B = Replace(B, Chr(10) + Chr(32), Chr(10)) 'remove spaces after feeds 'If InStr(B, Chr(13) + Chr(10)) > InStr(B, Chr(10) + Chr(13)) Then L10 = 13 : L13 = 10:B = Replace(B, Chr(L13) + Chr(L10) + Chr(L13) + Chr(L10), Chr(13) + Chr(10)):B = Replace(B, Chr(13) + Chr(13), Chr(13)) B = Replace(B, Chr(10) + Chr(10), Chr(10)) 'Double feeds to single Case Is = "td" 'Replace tabs with dash B = Replace(B, Chr(9), " - ") Case Is = "ts" 'tab to spaces B = Replace(B, Chr(9), Chr(32)) : B = Replace(B, Chr(32) + Chr(32), Chr(32)) Case Is = "tc" 'tab to comma B = Replace(B, Chr(9), ", ") : B = Replace(B, Chr(32) + ",", ",") Case Is = "lfc" 'replace line feeds with commas B = Replace(B, Chr(10), ", ") B = Replace(B, Chr(10), ", ") : B = Replace(B, ",,", ",") : B = Replace(B, Chr(9), Chr(32)) Case Is = "lb-" 'Replace line breaks with - B = Replace(B, Chr(10), " - ") : B = Replace(B, Chr(9), Chr(32)) : B = Replace(B, Chr(32) + Chr(32), Chr(32)) Case Is = "{GET}" 'EXTRACT BETWEEN { } Dim POS1(3) As Integer POS1(3) = 1 : A2 = "" Do POS1(0) = InStr(POS1(3), B, "{") : POS1(3) = POS1(0) + 1 : POS1(1) = InStr(POS1(3), B, "}") If POS1(0) = 0 Or POS1(1) = 0 Then Exit Do A2 = A2 + B.Substring(POS1(0), POS1(1) - POS1(0) - 1) + vbCrLf Loop If A2 <> "" Then B = A2 Case Is = "{DEL}" 'Delete BETWEEN { } Dim POS1(3) As Integer POS1(3) = 1 Do POS1(0) = InStr(POS1(3), B, "{") If POS1(0) = 0 Then Exit Do POS1(3) = POS1(0) : POS1(1) = InStr(POS1(3), B, "}") : A2 = "" If POS1(0) > 1 Then A2 = B.Substring(0, POS1(0) - 1) B = A2 + B.Substring(POS1(1), B.Length - POS1(1)) 'Build string without first {} Loop Case Else If chAppendCRLF.Checked = True Then A = Replace(A, "|", Chr(10)) : A2 = Replace(A2, "|", Chr(10)) 'REPLACE LINE BREAKS IF IDENTIFIED End If If chAciiConversion.Checked = True Then 'THIS DOES ASCII SOMETHING L10 = InStr(A, "~") If L10 > 0 Then L13 = InStr(L10 + 1, A, "~") End If If L10 > 0 And L13 > 0 Then If L10 > 1 Then TMPstart = A.Substring(0, L10 - 1) If L13 < A.Length Then TMPend = A.Substring(L13, A.Length - L13) A = Chr(Val(A.Substring(L10, L13 - L10 - 1))) End If A = TMPstart + A + TMPend : TMPstart = "" : TMPend = "" 'MsgBox(A) L10 = 0 : L13 = 0 : L10 = InStr(A2, "~") If L10 > 0 Then L13 = InStr(L10 + 1, A2, "~") End If If L10 > 0 And L13 > 0 Then If L10 > 0 And L13 > 0 Then If L10 > 1 Then TMPstart = A2.Substring(0, L10 - 1) If L13 < A2.Length Then TMPend = A2.Substring(L13, A2.Length - L13) A2 = Chr(Val(A2.Substring(L10, L13 - L10 - 1))) End If A2 = TMPstart + A2 + TMPend : TMPstart = "" : TMPend = "" End If End If B = Replace(B, A, A2) End Select End If Loop fileReader.Close() : txText.Text = B End Sub Vb.net 4 07/27/2025 Php Database Concat - Combine Fields Or Text add join concat APENDING data before and after a field. UPDATE `iwspackage` SET iwspackageimg=CONCAT('package',packageid,'.jpg'); UPDATE ads SET img1=CONCAT(adid,'a.jpg'), img2=CONCAT(adid,'b.jpg') , img3=CONCAT(adid,'c.jpg') , img4=CONCAT(adid,'d.jpg'), pdf=CONCAT(adid,'.pdf') WHERE adid>7; Php 2 09/09/2023 Javascript Function Confirm() yes no cancel message box JavaScript Confirm Example Below is an example of how you would use a confirm dialogue box to warn users about something, giving them the option to either continue on or stay put. HTML & JavaScript Code: Display: Note the part in red. This is where all the magic happens. We call the confirm function with the message, "Leave Tizag?". JavaScript then makes a popup window with two choices and will return a value to our script code depending on which button the user clicks. If the user clicks OK, a value of 1 is returned. If a user clicks cancel, a value of 0 is returned.. We store this value in answer by setting it equal to the confirm function call. After answer has stored the value, we then use answer as a conditional statement. If answer is anything but zero, then we will send the user away from Tizag.com. If answer is equal to zero, we will keep the user at Tizag.com because they clicked the Cancel button. In either case, we have a JavaScript alert box that appears to inform the user on what is going to happen. It will say, "Bye bye!" if they choose to leave and, "Thanks for sticking around!" if they choose to stay. Javascript 2000 09/09/2023 Php Files Create Directory File List After Database Backup file list database backup example Backup Sites %s', escapeshellarg($host), escapeshellarg($user), escapeshellarg($pass), escapeshellarg($dbname), escapeshellarg($filename) ); $output = []; $result_code = 0; // Execute the command exec($command, $output, $result_code); if ($result_code === 0) { return "Database dump successful."; } else { return "Error creating database dump. Command output: " . implode("n", $output); } } // Configuration variables //$server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accounting'; $DBHOST = $server; $DBUSER = $user; $DBPASS = $password; $DBNAME = $database; $BACKUP_FILE = 'backup_'.$database. date('Y-m-d_H-i-s') . '.sql'; // Run the backup function $message = backup_mysql_database($DBHOST, $DBUSER, $DBPASS, $DBNAME, $BACKUP_FILE); echo $message; $newname=str_replace(".sql",".txt",$BACKUP_FILE); rename($BACKUP_FILE, $newname); $current_dir="./"; $dir = opendir($current_dir); echo "directory=".$current_dir; while ($file = readdir($dir)){ $fullpath=$current_dir.$file; $filedate=date('Y-m-j', filemtime($fullpath)); $fsize=filesize($fullpath)/1000; $fsize=(int)$fsize;$fsize=$fsize/1000; $bulletin[]=$file."@".$fsize."@".$filedate; } closedir($dir); $count1=count($bulletin); sort($bulletin); reset($bulletin); //if($DI=='')ECHO "?DI="; $dis.="Files(by Name)"; //while (list ($key, $val) = each ($bulletin)){ foreach($bulletin as $key=>$val) { //} while (list ($key, $val) = each ($bulletin)){ $mark=explode('@',$val); $count+=1; if($mark[0]=="index.php")continue; if(strpos($mark[0],".")==0) $dis.="".$mark[0]."Directory"; else $dis.="".$mark[0]."(".$mark[1].") MB ".$mark[2].""; //if($count==(int)($count1/2)) echo " "; } $dis.=""; echo $dis; ?> Php 0 12/19/2025 Php Function Create Lionks Backup links $PDS_ Developer function CreateLinks($inx,$num,$range){ global $ALPHA; global $VIEW;global $txWhere;global $PDS_; $SubCat="&PDS_=";if($PDS_>0)$SubCat="&PDS_=".$PDS_; echo "ododo=".$PDS_; $ratio=(int)($num/$range);$start=1;$maxlinks=30; if($ratio<$num/$range)$ratio+=1; $end=$ratio; if($ratio>$maxlinks){ $start=$inx/$range-$maxlinks/2; if($start<1)$start=1; $end=$start+$maxlinks; if($end>$ratio){ $end=$ratio;$start=$end-$maxlinks; } } for($i=$start;$i<=$end;$i++){ switch($VIEW){ case 2: $submenu.="$i|"; break; default: $submenu.="$i|"; } } $dis1.=$submenu; return $dis1; } Php 0 08/21/2024 Vb.net Database Create Read Only Recordset create recordset error list box LISTBOX Imports System.Data.Oledb Solution Beta1 'Grabs data from a table and posts it into a ListView Dim Table_ As String = "mulitreplace ORDER BY title" Dim query As String = "SELECT * FROM " & Table_ Dim MDBConnString_ As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=webtools1.mdb;" Dim ds As New DataSet Dim cnn As OleDbConnection = New OleDbConnection(MDBConnString_) cnn.Open() Dim cmd As New OleDbCommand(query, cnn) Dim da As New OleDbDataAdapter(cmd) da.Fill(ds, Table_) cnn.Close() Dim t1 As DataTable = ds.Tables(Table_) txMultiAction.Items.Clear() txMultiAction.ValueMember = "replaceid" txMultiAction.DisplayMember = "title" txMultiAction.DataSource = ds.Tables(Table_) Dim row As DataRow Dim Item(2) As String For Each row In t1.Rows Item(0) = row(0) Item(1) = row(1) Item(2) = row(2) 'MsgBox(Item(1)) 'Dim NextListItem As New ListViewItem(Item) 'ListView1.Items.Add(NextListItem) Next 'end Beta Dim con As New OledbConnection("Provider=microsoft.Jet.oledb.4.0DataSource=D:mydata.mdb;") Dim cmd As New OledbCommand Public var1 As String Public Sub New() con.Open() cmd.Connection = con cmd.CommandText = "SELECT * FROM table1" End Sub Public Sub creates() cmd.CommandText = "INSERT INTO table1(Neyms) VALUES('" + var1 + "')" cmd.ExecuteNonQuery() End Sub Permalink Posted 16-Jan-13 22:39pm vinodkumarnie Solution 2 Grabs data from a table and posts it into a ListView Dim Table_ As String = "Table1" Dim query As String = "SELECT * FROM " & Table_ Dim MDBConnString_ As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=TestDatabase.mdb;" Dim ds As New DataSet Dim cnn As OleDbConnection = New OleDbConnection(MDBConnString_) cnn.Open() Dim cmd As New OleDbCommand(query, cnn) Dim da As New OleDbDataAdapter(cmd) da.Fill(ds, Table_) cnn.Close() Dim t1 As DataTable = ds.Tables(Table_) Dim row As DataRow Dim Item(2) As String For Each row In t1.Rows Item(0) = row(0) Item(1) = row(1) Dim NextListItem As New ListViewItem(Item) ListView1.Items.Add(NextListItem) Next Vb.net 2 09/09/2023 _Misc Software Ini Creating A .user.ini File For Linux user ini Developer ; cPanel-generated php ini directives, do not edit ; Manual editing of this file may result in unexpected behavior. ; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) ; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) [PHP] display_errors = Off max_execution_time = 600 max_input_time = 600 max_input_vars = 5000 memory_limit = 512M post_max_size = 516M session.gc_maxlifetime = 1440 session.save_path = "/var/cpanel/php/sessions/ea-php81" upload_max_filesize = 512M zlib.output_compression = Off _Misc Software 0 05/04/2025 Css Formatting Creating And Styling Borders border property color size Web border border-block border-block-color border-block-end-color border-block-end-style border-block-end-width border-block-start-color border-block-start-style border-block-start-width border-block-style border-block-width border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-end-end-radius border-end-start-radius border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-inline border-inline-color border-inline-end-color border-inline-end-style border-inline-end-width border-inline-start-color border-inline-start-style border-inline-start-width border-inline-style border-inline-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-start-end-radius border-start-start-radius border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width Hello, I want to display a box around a div, and I want it's size to adjust to the text width. In Firefox, this code works as I want. In IE6/IE7, the box is as big as possible. I want to make this work for IE6 and IE7 (I actually care less about FF, because it's for an intranet). I tried different values for display and width (which only has one value anyway), but none does what I need. Here's the relevant CSS code: /* Div acting like a box */ div.box { border: solid 1px #CCCCCC; background-color: #f9f9f9; display: table; padding: 4px; margin: 4px 4px 0px 4px; } My DOCTYPE is: ============================================== ***double **** Box properties treat all block-level formatting elements like a virtual 'box'. The height and width of the box is determined by (going from inner-most dimension outward) the height and width of the contained elements (text and/or images) plus heights and widths for space around the element ('padding'), plus the height and widths created by added borders ('border'), along with exterior margin values ('margin') relative to elements exterior to the virtual box. The border properties allow borders to be defined (of course) for any element. These properties give a much wider array of display options for creating line effects around elements than has previously been possible in HTML. If a border is rendered for an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Selector { border: [width] [line-style] [color] } Example Ext/Doc: blockquote { border: medium dashed #ff0000 } In-Line: this is a beautiful blockquote test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B4 Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N4B4 Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N4B4 Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-top [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the top border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-top: [width] [line-style] [color] } Example Ext/Doc: div.out { border-top: 10px outset #ffffff } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-right [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the right border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-right: [width] [line-style] [color] } Example Ext/Doc: em { border-right: thick double yellow } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-bottom [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the bottom border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-bottom: [width] [line-style] [color] } Example Ext/Doc: span { border-bottom: solid green } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-left [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the left border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-left: [width] [line-style] [color] } Example Ext/Doc: strong { border-left: thin groove blue } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This property controls the thickness for one to four border sides. If multiple borders are specified, they are given as a space separated list of width values. Value assignments: 1 value present: All four borders are set to that value. 2 values present: Top and bottom borders receive first value while right and left borders are set to the second value. 3 values present: Top - first value, right&left - second value, bottom - third value. 4 values present: Top, right, bottom and left respectively. Usage: Selector { border-width: [width] } Example Ext/Doc: strong { border-width: thick } In-Line: this is a beautiful test -------------------------------------------------------------------------------- thin | medium | thick explicit IE | N4B3 These values set the weight (thickness) of the line used to draw the borders. The browser will determine what thicknesses these keywords shall hold. 'medium' is the default value. [length] calculated IE | N4B3 This is an explicit or relative size measurement of the thickness of the border. Consult the Units Page for acceptable length unit systems. -------------------------------------------------------------------------------- border-top-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the top border. Usage: Selector { border-top-width: [width] } Example Ext/Doc: strong { border-top-width: thin } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-right-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the right border. Usage: Selector { border-right-width: [width] } Example Ext/Doc: strong { border-right-width: 10px } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-bottom-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the bottom border. Usage: Selector { border-bottom-width: [width] } Example Ext/Doc: strong { border-bottom-width: medium } In-Line: this is a beautiful test Browser Notes - Netscape 4 Beta 3 Rendering of border properties on single sides (in contrast to using the shorthand 'border-width' property) cuts in to the rendering of adjacent elements. -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-style [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: none What Is It? This property controls the type of line used for the border of the current element. It uses from one to four space separated values which are bound to the four borders as illustrated in the "What Is It?" section of the 'border-width' attribute. Usage: Selector { border-style: [line-style] } Example Ext/Doc: strong { border-style: groove } In-Line: this is a beautiful test none explicit IE | N4B3 Default value. No border is rendered, regardless of any 'border-width' present. dotted explicit IE | N A dotted line drawn on top of the background of the element. dashed explicit IE | N A dashed line drawn on top of the background of the element. solid explicit IE | N4B3 A solid line. groove explicit IE | N4B3 A 3-D groove is drawn based upon the [color] value. ridge explicit IE | N4B3 A 3-D ridge is rendered based upon the [color] value. inset explicit IE | N4B3 A 3-D inset is rendered based upon the [color] value. outset explicit IE | N4B3 A 3-D outset is rendered based upon the [color] value. double explicit IE | N4B3 A double line drawn on top of the background of the element. The two lines with the space between adds up to the 'border-width' properties. -------------------------------------------------------------------------------- border-color [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: The value of the 'color' property. What Is It? This property controls the color for one to four border sides. It uses from one to four space separated values which are bound to the four borders as illustrated in the "What Is It?" section of the 'border-width' attribute. If no color is specified, this value will be taken from the 'color' property. Usage: Selector { border-color: [color] } Example Ext/Doc: strong { border-color: blue } In-Line: this is a beautiful test [color] explicit IE | N4B3 This value specifies the color to use in creating the border. Please see the section on Color Units for more details. -------------------------------------------------------------------------------- Value Description none No border. dotted Dotted line drawn over the top of the element. dashed Dashed line drawn over the top of the element. solid Solid line. double Double line drawn over the top of the element; the width of the two lines and the space between them equals the border-width value. groove 3-D groove drawn in colors based upon color. ridge 3-D ridge drawn in colors based upon color. inset 3-D inset drawn in colors based upon color. outset 3-D outset drawn in colors based upon color. border-top-width Css 3 09/09/2023 Html Formatting Creating Page Breaks print break Printing CSS and Printing By Joe Burns Use these to jump around or read it all... [Page Break] [The Format] [Setting A Specific Page Break] I get a lot of questions asking if there are ways to "force" people's browsers to do certain things. The events most often asked for are to force a browser to bookmark the page, to set user preferences, and this one: How can I force a person's browser to print my page? The short and truthful answer is that you can't. There's no command or tag, to my knowledge, that produces a print when your page loads. There are just too many factors involved. Is the user's printer turned on? Can the Web page fit nicely in the print space set by the viewer? And most importantly: Does the viewer want to print your page? It would cheese me if I logged into your page and all of a sudden my printer was humming. Update! As of 10/99 there is still no way to force a printer to print a page; however, you can initiate a print request. See the tutorial. You can take some control when the user decides he or she does want to print your page. Through the magic of Style Sheets, you can now make a point of indicating where the pages will break during the print process. As of 12/21/98, this CSS2 command is supported only by Internet Explorer browsers version 4 and above. -------------------------------------------------------------------------------- Page Break There are two commands you're worried about here: page-break-after page-break-before You can pretty much pick out what each does. The first sets the printing page break just before the element, the second sets the page break just after. Each command has, in theory anyway, four attributes: always | auto | left | right always tells the browser to break the print page after this element always. auto is the default. You're telling the browser to do what it would do anyway: Page break where the page ends. left is not supported by any browser yet. It is used if your printer will print both sides of a page, like a manuscript. If the page is a left-facing page, use this attribute. right is what you use if it's a right-facing page. -------------------------------------------------------------------------------- The Format Here's what it looks like in your page's tags: That format will produce a print page break before each H2 on the page. Would you like to try it out? This page has four H2 headings. Go ahead and print the page. Each H2 will use a new page and will act as the Header for the printed page. Remember, though, that you have to be using Internet Explorer 4 or better. -------------------------------------------------------------------------------- Setting A Specific Page Break Maybe it's better not to have every H2 break the page. Maybe you'd like a page break at a specific point to keep a particular look. You do that by setting up a class of page breaks. You can set up the class on any HTML command, but I think the best method is to set up the class within a or command. That way there's some white space where the page can break. Here's a look at the format (this will sit between your tags): This then will be the activator for the page break: You can set up as many different classes as you'd like as long as you keep following the same format as above. -------------------------------------------------------------------------------- And That's That... This is another one of those commands that I would use if there's a need for it, regardless of the type of browser the viewer is running. Those that understand the command get the effect, and those that don't just get a straight page print. Either way, the user gets a nice print of the page. It's just that in one of the prints, you're able to set a few parameters. Html 2 09/09/2023 Windows <=8 Customizing Creating Your Own Menu Using The Windows Toolbar toolbar too bar desktop desk top right click folder task bar Even though it is cool using the bricks in the start menu I still like putting my favorite apps on the windows task bar without pinning. It takes up a lot less space. To do this: Right click on the desk top and create a new folder. Give it a Short name so it does not take up much space on the tool bar I like my desk top clean so I just dragged and dumped everything I use a lot on this folder. You will need to copy and paste if you want an icon to stay on the desk top. Leave the folder on your desktop. Right click on the task bar and click on toolbars-new toolbar. From the dialogue box select the Desktop. Select the file folder that you named. You now have all your favorites on the task bar. After you reboot the will be list by alpha. Windows <=8 1296 09/09/2023 Php Date Current Date today $now=date('Y-m-j'); echo date("Y-m-d h:i:sa"); mysql MySQL FORMAT (yyyy-mm-dd) Php 2 09/09/2023 Css Formatting Customizing Formats For Mircrosoft IE ONLY !ie IE firefox browser css I had a table that would format for either FireFox or IE but not both. I used the border-collapse property with "!ie" at the end which IE recognizes but other browswers do Not. Try it with other styling in your css Specify a border collapse for ie #directory table{border-color:#000000; border-collapse:separate; border-collapse:collapse !ie; border-spacing:0px;} #event td{padding:10px 10px 10px 10px;} Css 1276 09/09/2023 WP Database Database Access database WP 2 09/09/2023 Mysql Dumps Archive Database: `softwax3_codeSaver` code language operation Backup -- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Jan 25, 2023 at 11:57 AM -- Server version: 5.7.23-23 -- PHP Version: 7.4.33 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; -- -- Database: `softwax3_codeSaver` -- -- -------------------------------------------------------- -- -- Table structure for table `code` -- CREATE TABLE `code` ( `codeid` mediumint(9) NOT NULL, `code` text NOT NULL, `title` varchar(70) NOT NULL, `keywords` varchar(100) NOT NULL, `application` varchar(35) NOT NULL, `languageid` tinyint(4) NOT NULL, `operationid` mediumint(9) NOT NULL, `show_html` tinyint(4) NOT NULL, `show_iframe` tinyint(4) NOT NULL, `make_public` tinyint(4) NOT NULL, `viewed` mediumint(9) NOT NULL, `viewed_date` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `contact_us` -- CREATE TABLE `contact_us` ( `contactid` mediumint(9) NOT NULL, `Subject` varchar(100) NOT NULL, `Body` text NOT NULL, `EmailReply` tinyint(4) NOT NULL, `Email` varchar(80) NOT NULL, `PhoneReply` tinyint(4) NOT NULL, `Phone` varchar(20) NOT NULL, `MailReply` tinyint(4) NOT NULL, `Name` varchar(50) NOT NULL, `Address` varchar(50) NOT NULL, `City` varchar(20) NOT NULL, `State` varchar(20) NOT NULL, `Zip` varchar(20) NOT NULL, `dateof` date NOT NULL, `ipaddress` varchar(19) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `language` -- CREATE TABLE `language` ( `languageid` tinyint(6) NOT NULL, `language` varchar(25) NOT NULL, `menu_column` tinyint(4) NOT NULL, `menu_row` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `operation` -- CREATE TABLE `operation` ( `operationid` smallint(6) NOT NULL, `operation` varchar(25) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `settingid` smallint(6) NOT NULL, `title` varchar(30) NOT NULL, `value` varchar(70) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `settings_Large` -- CREATE TABLE `settings_Large` ( `settingid` smallint(6) NOT NULL, `title` varchar(30) NOT NULL, `value` varchar(1000) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `useradmin` -- CREATE TABLE `useradmin` ( `userid` mediumint(9) NOT NULL, `lastname` varchar(30) NOT NULL DEFAULT '', `firstname` varchar(30) NOT NULL DEFAULT '', `email` varchar(70) NOT NULL DEFAULT '', `username` varchar(20) NOT NULL DEFAULT '', `password` varchar(20) NOT NULL DEFAULT '', `level` tinyint(4) NOT NULL DEFAULT '0', `logintimes` mediumint(9) NOT NULL DEFAULT '0', `lastlogin` date NOT NULL DEFAULT '0000-00-00', `accesspages` varchar(255) NOT NULL DEFAULT '', `ipaddress` varchar(19) NOT NULL, `locked` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `websites` -- CREATE TABLE `websites` ( `siteid` smallint(6) NOT NULL, `url` varchar(100) NOT NULL, `title` varchar(50) NOT NULL, `comment` text NOT NULL, `year` smallint(6) NOT NULL, `personal` tinyint(4) NOT NULL, `ecommerce` tinyint(4) NOT NULL, `event_register` tinyint(4) NOT NULL, `email_news` tinyint(4) NOT NULL, `calendar` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `code` -- ALTER TABLE `code` ADD PRIMARY KEY (`codeid`), ADD KEY `languageid` (`languageid`), ADD KEY `operationid` (`operationid`), ADD KEY `application` (`application`); -- -- Indexes for table `contact_us` -- ALTER TABLE `contact_us` ADD PRIMARY KEY (`contactid`); -- -- Indexes for table `language` -- ALTER TABLE `language` ADD PRIMARY KEY (`languageid`); -- -- Indexes for table `operation` -- ALTER TABLE `operation` ADD PRIMARY KEY (`operationid`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`settingid`); -- -- Indexes for table `settings_Large` -- ALTER TABLE `settings_Large` ADD PRIMARY KEY (`settingid`); -- -- Indexes for table `useradmin` -- ALTER TABLE `useradmin` ADD PRIMARY KEY (`userid`), ADD KEY `lastname` (`lastname`,`firstname`); -- -- Indexes for table `websites` -- ALTER TABLE `websites` ADD PRIMARY KEY (`siteid`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `code` -- ALTER TABLE `code` MODIFY `codeid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contact_us` -- ALTER TABLE `contact_us` MODIFY `contactid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `language` -- ALTER TABLE `language` MODIFY `languageid` tinyint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `operation` -- ALTER TABLE `operation` MODIFY `operationid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `settingid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `settings_Large` -- ALTER TABLE `settings_Large` MODIFY `settingid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `useradmin` -- ALTER TABLE `useradmin` MODIFY `userid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `websites` -- ALTER TABLE `websites` MODIFY `siteid` smallint(6) NOT NULL AUTO_INCREMENT; COMMIT; Mysql Dumps 3 09/09/2023 Mysql Dumps Archive Database: `softwax3_myfiles file contact -- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Jan 25, 2023 at 11:46 AM -- Server version: 5.7.23-23 -- PHP Version: 7.4.33 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; -- -- Database: `softwax3_myfiles` -- -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `contactid` smallint(6) NOT NULL, `last_name` varchar(25) NOT NULL, `first_name` varchar(25) NOT NULL, `phone` varchar(12) NOT NULL, `email` varchar(50) NOT NULL, `additional_info` varchar(300) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `file` -- CREATE TABLE `file` ( `fileid` mediumint(9) NOT NULL, `categoryid` tinyint(4) NOT NULL, `file` varchar(100) NOT NULL, `description` text NOT NULL, `computer_used` varchar(10) NOT NULL, `date_created` date NOT NULL, `date_modified` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `fileCategory` -- CREATE TABLE `fileCategory` ( `categoryid` tinyint(4) NOT NULL, `category` varchar(25) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `fileUpdates` -- CREATE TABLE `fileUpdates` ( `fileid` smallint(6) NOT NULL, `session` int(11) NOT NULL, `title` varchar(50) NOT NULL, `version` varchar(19) NOT NULL, `description` text NOT NULL, `file_exe` varchar(50) NOT NULL, `file_ini` varchar(50) NOT NULL, `file_other` varchar(50) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `folderCategory` -- CREATE TABLE `folderCategory` ( `categoryid` tinyint(4) NOT NULL, `category` varchar(25) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `folders` -- CREATE TABLE `folders` ( `folderid` smallint(6) NOT NULL, `categoryid` smallint(6) NOT NULL, `folder_num` smallint(6) NOT NULL, `description` varchar(40) NOT NULL, `keywords` tinytext NOT NULL, `archive` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `government` -- CREATE TABLE `government` ( `movieid` smallint(6) NOT NULL, `title` varchar(100) NOT NULL, `comment` varchar(400) NOT NULL, `file` varchar(100) NOT NULL, `image` varchar(10) NOT NULL, `viewed` smallint(6) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `iphistory` -- CREATE TABLE `iphistory` ( `historyid` mediumint(9) NOT NULL, `date` date NOT NULL, `ipaddress` varchar(19) NOT NULL, `counter` smallint(6) NOT NULL, `blocking` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `movie` -- CREATE TABLE `movie` ( `movieid` mediumint(9) NOT NULL, `title` varchar(50) NOT NULL, `star5` tinyint(4) NOT NULL, `coverImage` varchar(9) NOT NULL, `rating` tinyint(4) NOT NULL, `genere` varchar(60) NOT NULL, `description` text NOT NULL, `year` smallint(6) NOT NULL, `download` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `projects` -- CREATE TABLE `projects` ( `projectid` smallint(6) NOT NULL, `project` varchar(20) NOT NULL, `date_modified` date NOT NULL, `table_name` varchar(25) NOT NULL, `fields` text NOT NULL, `date_fields` varchar(25) NOT NULL, `txx` text NOT NULL, `date_txx` varchar(25) NOT NULL, `txtFileName` varchar(25) NOT NULL, `txxFileName` varchar(25) NOT NULL, `txxPath` varchar(50) NOT NULL, `computer` varchar(100) NOT NULL, `list_report` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `storage` -- CREATE TABLE `storage` ( `storageid` tinyint(4) NOT NULL, `date_stored` date NOT NULL, `stored` varchar(250) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `useradmin` -- CREATE TABLE `useradmin` ( `userid` mediumint(9) NOT NULL, `lastname` varchar(30) NOT NULL DEFAULT '', `firstname` varchar(30) NOT NULL DEFAULT '', `email` varchar(70) NOT NULL DEFAULT '', `username` varchar(20) NOT NULL DEFAULT '', `password` varchar(20) NOT NULL DEFAULT '', `level` tinyint(4) NOT NULL DEFAULT '0', `logintimes` mediumint(9) NOT NULL DEFAULT '0', `lastlogin` date NOT NULL DEFAULT '0000-00-00', `accesspages` varchar(255) NOT NULL DEFAULT '', `ipaddress` varchar(19) NOT NULL, `locked` tinyint(4) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`contactid`), ADD KEY `last_name` (`last_name`,`first_name`); -- -- Indexes for table `file` -- ALTER TABLE `file` ADD PRIMARY KEY (`fileid`), ADD KEY `categoryid` (`categoryid`); -- -- Indexes for table `fileCategory` -- ALTER TABLE `fileCategory` ADD PRIMARY KEY (`categoryid`); -- -- Indexes for table `fileUpdates` -- ALTER TABLE `fileUpdates` ADD PRIMARY KEY (`fileid`); -- -- Indexes for table `folderCategory` -- ALTER TABLE `folderCategory` ADD PRIMARY KEY (`categoryid`); -- -- Indexes for table `folders` -- ALTER TABLE `folders` ADD PRIMARY KEY (`folderid`); -- -- Indexes for table `government` -- ALTER TABLE `government` ADD PRIMARY KEY (`movieid`); -- -- Indexes for table `iphistory` -- ALTER TABLE `iphistory` ADD PRIMARY KEY (`historyid`); -- -- Indexes for table `movie` -- ALTER TABLE `movie` ADD PRIMARY KEY (`movieid`), ADD KEY `download` (`download`); -- -- Indexes for table `projects` -- ALTER TABLE `projects` ADD PRIMARY KEY (`projectid`); -- -- Indexes for table `useradmin` -- ALTER TABLE `useradmin` ADD PRIMARY KEY (`userid`), ADD KEY `lastname` (`lastname`,`firstname`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `contactid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `file` -- ALTER TABLE `file` MODIFY `fileid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `fileCategory` -- ALTER TABLE `fileCategory` MODIFY `categoryid` tinyint(4) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `fileUpdates` -- ALTER TABLE `fileUpdates` MODIFY `fileid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `folderCategory` -- ALTER TABLE `folderCategory` MODIFY `categoryid` tinyint(4) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `folders` -- ALTER TABLE `folders` MODIFY `folderid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `government` -- ALTER TABLE `government` MODIFY `movieid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `iphistory` -- ALTER TABLE `iphistory` MODIFY `historyid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `movie` -- ALTER TABLE `movie` MODIFY `movieid` mediumint(9) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `projects` -- ALTER TABLE `projects` MODIFY `projectid` smallint(6) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `useradmin` -- ALTER TABLE `useradmin` MODIFY `userid` mediumint(9) NOT NULL AUTO_INCREMENT; COMMIT; Mysql Dumps 3 09/09/2023 Javascript Function Date And Time date time JavaScript Date and Time Object The Date object is useful when you want to display a date or use a timestamp in some sort of calculation. In Java, you can either make a Date object by supplying the date of your choice, or you can let JavaScript create a Date object based on your visitor's system clock. It is usually best to let JavaScript simply use the system clock. Advertise on Tizag.com When creating a Date object based on the computer's (not web server's!) internal clock, it is important to note that if someone's clock is off by a few hours or they are in a different time zone, then the Date object will create a different times from the one created on your own computer. JavaScript Date Today (Current) To warm up our JavaScript Date object skills, let's do something easy. If you do not supply any arguments to the Date constructor (this makes the Date object) then it will create a Date object based on the visitor's internal clock. HTML & JavaScript Code: It is now Display: It is now Nothing shows up! That's because we still don't know the methods of the Date object that let us get the information we need (i.e. Day, Month, Hour, etc). Get the JavaScript Time The Date object has been created, and now we have a variable that holds the current date! To get the information we need to print out, we have to utilize some or all of the following functions: •getTime() - Number of milliseconds since 1/1/1970 @ 12:00 AM •getSeconds() - Number of seconds (0-59) •getMinutes() - Number of minutes (0-59) •getHours() - Number of hours (0-23) •getDay() - Day of the week(0-6). 0 = Sunday, ... , 6 = Saturday •getDate() - Day of the month (0-31) •getMonth() - Number of month (0-11) •getFullYear() - The four digit year (1970-9999) Now we can print out the date information. We will be using the getDate, getMonth, and getFullYear methods in this example. HTML & JavaScript Code: It is now Display: It is now 1/8/2011 ! Notice that we added 1 to the month variable to correct the problem with January being 0 and December being 11. After adding 1, January will be 1, and December will be 12. JavaScript Current Time Clock Now, instead of displaying the date we, will display the format you might see on a typical digital clock -- HH:MM AM/PM (H = Hour, M = Minute). HTML & JavaScript Code: It is now Display: It is now 23:09 PM Above, we check to see if either the hours or minutes variable is less than 10. If it is, then we need to add a zero to the beginning of minutes. This is not necessary, but if it is 1:01 AM, our clock would output "1:1 AM", which doesn't look very nice at all! Javascript 1569 09/09/2023 Php Database Delete left join delete orphans // using Left Join to kill orphans DELETE FROM `cart` USING `cart` LEFT JOIN orders ON cart.sessionid=orders.sessionid WHERE orderid IS NULL AND updated<'2006-01-01' Php 2 09/09/2023 Vb.net Database Delete A Record From A DAO Recordset delete recordset Sub DeleteDuplicateShippers() Dim dbsNorthwind As DAO.Database Dim rstShippers As DAO.Recordset Dim strSQL As String Dim strName As String On Error GoTo ErrorHandler Set dbsNorthwind = CurrentDb strSQL = "SELECT * FROM Shippers ORDER BY CompanyName, ShipperID" Set rstShippers = dbsNorthwind.OpenRecordset(strSQL, dbOpenDynaset) ' If no records in Shippers table, exit. If rstShippers.EOF Then Exit Sub strName = rstShippers![CompanyName] rstShippers.MoveNext Do Until rstShippers.EOF If rstShippers![CompanyName] = strName Then rstShippers.Delete Else strName = rstShippers![CompanyName] End If rstShippers.MoveNext Loop Exit Sub ErrorHandler: MsgBox "Error #: " & Err.Number & vbCrLf & vbCrLf & Err.Description End Function Vb.net 0 10/09/2022 Php Function Deletefile.php delete exist file Backup File Info "; switch($AC){ case 1: if(file_exists($upfile))unlink($upfile); $upfile=str_replace("/thm/","/",$upfile); if(file_exists($upfile))unlink($upfile); echo "File is Deleted. Please close this window"; break; default: if(file_exists($upfile)){ if(file_exists($upfile)){ if(mime_content_type($upfile)=="image/jpeg"){ $dimen=sizepicture($upfile,300,400); echo " "; }else{ echo $upfile.""; } echo "If not, just close this window"; } }else echo "This file does not exist. Close this window."; break; } ?> Php 0 05/18/2025 WP Function Directories directory function Available Functions WordPress includes many other functions for determining paths and URLs to files or directories within plugins, themes, and WordPress itself. See the individual Codex pages for each function for complete information on their use. ABSPATH - from wpconfig.php Plugins plugins_url() plugin_dir_url() plugin_dir_path() plugin_basename() Themes get_template_directory_uri() get_stylesheet_uri() get_theme_root_uri() get_theme_root() get_theme_roots() Site Home home_url() WordPress admin_url() site_url() content_url() includes_url() wp_upload_dir() Multisite get_admin_url() get_home_url() get_site_url() network_admin_url() network_site_url() network_home_url() Constants WordPress makes use of the following constants when determining the path to the content and plugin directories. These should not be used directly by plugins or themes, but are listed here for completeness. WP_CONTENT_DIR // no trailing slash, full paths only WP_CONTENT_URL // full url WP_PLUGIN_DIR // full path, no trailing slash WP_PLUGIN_URL // full url, no trailing slash // Available per default in MS, not set in single site install // Can be used in single site installs (as usual: at your own risk) UPLOADS // uploads folder, relative to ABSPATH (for e.g.: /wp-content/uploads) WP 2 09/09/2023 Vb.net Files Directory Files Into A List Box Checking Drive Available delete files directory drive listbox Imports System.IO [DELETE FILE] If File.Exists(TREE3 + FLD(0, 0) + "_header.php") Then File.Delete(TREE3 + FLD(0, 0) + "_header.php") ============== Function DriveAvailable(driveLetter As String) As Boolean Try Dim driveInfo As New DriveInfo(driveLetter) Return driveInfo.IsReady ' Returns True if the drive is ready Catch ex As Exception Return False ' Return False if an exception occurs (e.g., invalid drive) End Try End Function Sub LoadFilesListBox(ByRef coBox As ListBox, ByVal folderPath As String, ByVal Pattern As String) Dim M0 As Integer = 1, fileName1 As String = "", M1 As Integer, M As Integer 'PatternSection As String 'Dim di As New IO.DirectoryInfo(folderPath), diar1 As IO.FileInfo(), dra As IO.FileInfo With coBox .Items.Clear() End With Dim AllowedExtension As String = "*.*" If Not System.IO.Directory.Exists(folderPath) Then MsgBox("This folder seems to have disappeared.") : Exit Sub For Each file As String In IO.Directory.GetFiles(folderPath, "*.*") M1 = file.LastIndexOf("") + 1 : M = file.Length - M1 fileName1 = file.Substring(M1, M) coBox.Items.Add(fileName1) Next End Sub Vb.net 2 09/09/2023 WP Customizing Disable Wordpress Site While Making Changes disable website In the header.php file of wordpress temporarily add WP 975 09/09/2023 WP Customizing Displaying Page Content In Template content function template Sorry, no posts matched your criteria. WP 1529 09/09/2023 Mysql Database Does Field Exit In Table field exists Developer SHOW COLUMNS FROM `table` LIKE 'fieldname'; With PHP it would be something like... $result = mysql_query("SHOW COLUMNS FROM `table` LIKE 'fieldname'"); $exists = (mysql_num_rows($result))?TRUE:FALSE; SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'db_name' AND TABLE_NAME = 'table_name' AND COLUMN_NAME = 'column_name' $chkcol = mysql_query("SELECT * FROM `my_table_name` LIMIT 1"); $mycol = mysql_fetch_array($chkcol); if(!isset($mycol['my_new_column'])) mysql_query("ALTER TABLE `my_table_name` ADD `my_new_column` BOOL NOT NULL DEFAULT '0'"); Mysql 0 12/02/2023 Vb.net Archive Email Remove Sub email move Outlook Mail Cleaner Function EmailCriteria() Dim MV(200, 2) As String, L As Integer Try Dim sqL As String = "SELECT [move_to],[subject_filter],[archive] FROM [move_email] WHERE [archive]>0 ORDER BY [move_to],[subject_filter]" ConnDB() cmd = New OleDbCommand(sqL, conn) dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) Catch ex As Exception LAerrorMessage.Text = "error BTbulkMove DB:" & ex.Message End Try Do While dr.Read MV(L, 0) = dr(0) : MV(L, 1) = dr(1) : MV(L, 2) = dr(2) L = L + 1 Loop Return MV End Function Private Sub BTmoveEmail_Click(sender As Object, e As EventArgs) Handles BTmoveEmail.Click BypassDialog = True BTMoveAll_Click(sender, e) BTtest_Click(sender, e) Me.WindowState = FormWindowState.Minimized 'MessageBox.Show("Email Moving And Deleting completed.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information) BypassDialog = False End Sub Private Sub BTMoveAll_Click(sender As Object, e As EventArgs) Handles BTMoveAll.Click Dim outlookApp As New Outlook.Application() Dim lastFolder As String = "", currentFolder As String = "", currentSubject As String = "", currentType As String = "", currentEmail As String = "" Dim emailsMoved As Int16 = 100, MV(200, 2) As String, L As Integer = 0 Dim namespaceMAPI As Outlook.NameSpace = outlookApp.GetNamespace("MAPI") Dim targetFolder As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") Dim inbox As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") ' Specify the path to the Outlook Data File (PST) Dim pstFilePath As String = GetIni("OutlookDataFile", My.Computer.Name, INI), TMP As String = "" Dim pstDisplayName As String = "receipts" ' Loop through all accounts in Outlook For Each account As Outlook.Account In namespaceMAPI.Accounts 'LOOP THROUGH ACCOUNTS LAcaption.Text = "Moving in account: " & account.DisplayName : Application.DoEvents() emailsMoved = 100 ' Access the Inbox folder of the account Try inbox = namespaceMAPI.Folders(account.DisplayName).Folders("Inbox") Catch ex As Exception LAerrorMessage.Text = "error BTMoveAll:" & ex.Message End Try 'start loop here 'Do While emailsMoved > 0 'LOOP THROUGH FOR MISSED EMAIL emailsMoved = 0 MV = EmailCriteria() For i As Integer = inbox.Items.Count To 1 Step -1 'LOOP THROUGH INBOX backwards LEVEL 2 Try Dim email As Outlook.MailItem = TryCast(inbox.Items(i), Outlook.MailItem) currentEmail = email.SenderName + "--" + email.SenderEmailAddress If email.FlagStatus = Outlook.OlFlagStatus.olFlagMarked Then Continue For End If For L = 0 To MV.GetUpperBound(0) 'MsgBox(fruit) currentFolder = MV(L, 0) : currentSubject = MV(L, 1) : currentType = MV(L, 2) add these lines back If lastFolder <> currentFolder Then lastFolder = currentFolder Try targetFolder = namespaceMAPI.Folders("Outlook Data File").Folders(currentFolder) Catch ex As Exception 'M("Error Outlook Data File: " & ex.Message) 'Continue Do End Try End If Select Case currentType Case "1" 'email If email.SenderEmailAddress.Contains(currentSubject) Then email.Move(targetFolder) : emailsMoved = emailsMoved + 1 Exit For End If Case "2" If email.Subject.Contains(currentSubject) Then email.Move(targetFolder) : emailsMoved = emailsMoved + 1 Exit For End If End Select Next 'NEXT L Catch ex As Exception MsgBox("Error moving: " + currentEmail & ex.Message) End Try Next 'LOOP THROUGH INBOX backwards LEVEL 2 END 'end primary loop 'Loop 'LOOP THROUGH FOR DR 'Loop 'LOOP THROUGH FOR MISSED EMAIL END Next 'LOOP THROUGH ACCOUNTS END If BypassDialog = False Then Me.WindowState = FormWindowState.Minimized 'MessageBox.Show("Email moving process completed.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information) End Sub Private Sub BTtest_Click(sender As Object, e As EventArgs) Handles BTtest.Click Dim outlookApp As New Outlook.Application() Dim currentEmail As String = "" Dim emailsDeleted As Int16 = 100 Dim namespaceMAPI As Outlook.NameSpace = outlookApp.GetNamespace("MAPI") 'Dim targetFolder As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") Dim inbox As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") Dim J As Int16, K As Int16, I As Integer = 0, Subject As String = "", FILTER1(200) As String, emailCount As Integer = 0, sql As String = "", Found As Boolean = False 'Readfilter data from mdb Try sql = "SELECT [email] FROM [filtered_email] WHERE [importance]>0 ORDER BY [importance] DESC,[email]" ConnDB() cmd = New OleDbCommand(sql, conn) dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) J = 0 Do While dr.Read FILTER1(J) = dr(0) J += 1 Loop emailCount = J - 1 Catch ex As Exception LAerrorMessage.Text = "error BTtestDB:" & ex.Message End Try ' Loop through all accounts in Outlook For Each account As Outlook.Account In namespaceMAPI.Accounts LAcaption.Text = "Deleting In account: " & account.DisplayName : Application.DoEvents() emailsDeleted = 100 ' Access the Inbox folder of the account 'Dim pstRootFolder As Outlook.MAPIFolder = namespaceMAPI.Folders(pstDisplayName) Try inbox = namespaceMAPI.Folders(account.DisplayName).Folders("Inbox") Catch ex As Exception LAerrorMessage.Text = "error BTtest account:" & ex.Message End Try 'start loop here Do While emailsDeleted > 0 emailsDeleted = 0 For I = inbox.Items.Count To 1 Step -1 'swd count backwards Try Dim email As Outlook.MailItem = TryCast(inbox.Items(I), Outlook.MailItem) currentEmail = email.SenderName + "--" + email.SenderEmailAddress If email.FlagStatus = Outlook.OlFlagStatus.olFlagMarked Then Continue For End If For K = 0 To emailCount - 1 If email.SenderEmailAddress.Contains(FILTER1(K)) Then Found = True : Exit For Next If Found = False Then email.Delete() emailsDeleted = emailsDeleted + 1 End If Found = False Catch ex As Exception MsgBox(currentEmail & ex.Message) emailsDeleted = emailsDeleted - 1 End Try Next 'end cut A Loop Next If BypassDialog = False Then Me.WindowState = FormWindowState.Minimized 'MessageBox.Show("Email Deleting process completed.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information) End If End Sub ========================== Outdated ================================ Private Sub BTbulkMove_Click(sender As Object, e As EventArgs) Handles BTbulkMove.Click Dim outlookApp As New Outlook.Application() Dim lastFolder As String = "", currentFolder As String = "", currentSubject As String = "", currentType As Byte = 0, currentEmail As String = "" Dim emailsMoved As Int16 = 100 Dim namespaceMAPI As Outlook.NameSpace = outlookApp.GetNamespace("MAPI") Dim targetFolder As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") Dim inbox As Outlook.MAPIFolder = namespaceMAPI.Folders("Outlook Data File").Folders("receipts") ' Specify the path to the Outlook Data File (PST) Dim pstFilePath As String = GetIni("OutlookDataFile", My.Computer.Name, INI) Dim pstDisplayName As String = "receipts" ' Loop through all accounts in Outlook Try sqL = "SELECT [move_to],[subject_filter],[archive] FROM [move_email] WHERE [archive]>0 ORDER BY [move_to],[subject_filter]" ConnDB() cmd = New OleDbCommand(sqL, conn) dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) Catch ex As Exception LAerrorMessage.Text = "error BTbulkMove DB:" & ex.Message End Try For Each account As Outlook.Account In namespaceMAPI.Accounts LAcaption.Text = "Moving in account: " & account.DisplayName : Application.DoEvents() emailsMoved = 100 ' Access the Inbox folder of the account Try inbox = namespaceMAPI.Folders(account.DisplayName).Folders("Inbox") Catch ex As Exception LAerrorMessage.Text = "error BTbulkMoveA:" & ex.Message End Try 'start loop here Do While emailsMoved > 0 emailsMoved = 0 Try sqL = "SELECT [move_to],[subject_filter],[archive] FROM [move_email] WHERE [archive]>0 ORDER BY [move_to],[subject_filter]" ConnDB() cmd = New OleDbCommand(sqL, conn) dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) Catch ex As Exception LAerrorMessage.Text = "error BTbulkMove DB:" & ex.Message End Try Do While dr.Read currentFolder = dr(0) : currentSubject = dr(1) : currentType = dr(2) If lastFolder <> currentFolder Then lastFolder = currentFolder Try targetFolder = namespaceMAPI.Folders("Outlook Data File").Folders(currentFolder) Catch ex As Exception 'M("Error Outlook Data File: " & ex.Message) Continue Do End Try End If For i As Integer = inbox.Items.Count To 1 Step -1 'swd count backwards Try Dim email As Outlook.MailItem = TryCast(inbox.Items(i), Outlook.MailItem) currentEmail = email.SenderName + "--" + email.SenderEmailAddress If email.FlagStatus = Outlook.OlFlagStatus.olFlagMarked Then Continue For End If Select Case currentType Case 1 'email If email.SenderEmailAddress.Contains(currentSubject) Then email.Move(targetFolder) : emailsMoved = emailsMoved + 1 End If Case 2 If email.Subject.Contains(currentSubject) Then email.Move(targetFolder) : emailsMoved = emailsMoved + 1 End If End Select Catch ex As Exception MsgBox("Error moving: " + currentEmail & ex.Message) End Try Next Loop Loop Next If BypassDialog = False Then Me.WindowState = FormWindowState.Minimized 'MessageBox.Show("Email moving process completed.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information) Vb.net 7 02/26/2026 WP Formatting Embed Wordpress Page Into An External Php Page embed wordpress page apply_filters get_pages functions Create a category PageInserts and group your insert pages under this category. the 62 is my page 62 post_content); echo $content; //end load my wordpress page // start my custom code ?> WP 759 09/09/2023 Php Language Empty strip tag Developer <?php $text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($text); echo "n"; // Allow <p> and <a> echo strip_tags($text, '<p><a>'); // as of PHP 7.4.0 the line above can be written as: // echo strip_tags($text, ['p', 'a']); ?> Php 2 09/09/2023 Windows <=8 Server Event Viewer events log In Windows XP, an event is any significant occurrence in the system or in a program that requires users to be notified, or an entry added to a log. The Event Log Service records application, security, and system events in Event Viewer. With the event logs in Event Viewer, you can obtain information about your hardware, software, and system components, and monitor security events on a local or remote computer. Event logs can help you identify and diagnose the source of current system problems, or help you predict potential system problems. Event Log TypesA Windows XP-based computer records events in the following three logs: Application log The application log contains events logged by programs. For example, a database program may record a file error in the application log. Events that are written to the application log are determined by the developers of the software program. Security log The security log records events such as valid and invalid logon attempts, as well as events related to resource use, such as the creating, opening, or deleting of files. For example, when logon auditing is enabled, an event is recorded in the security log each time a user attempts to log on to the computer. You must be logged on as Administrator or as a member of the Administrators group in order to turn on, use, and specify which events are recorded in the security log. System log The system log contains events logged by Windows XP system components. For example, if a driver fails to load during startup, an event is recorded in the system log. Windows XP predetermines the events that are logged by system components. How to View Event LogsTo open Event Viewer, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, click Event Viewer. The Application, Security, and System logs are displayed in the Event Viewer window.How to View Event DetailsTo view the details of an event, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, expand Event Viewer, and then click the log that contains the event that you want to view. In the details pane, double-click the event that you want to view. The Event Properties dialog box containing header information and a description of the event is displayed. To copy the details of the event, click the Copy button, then open a new document in the program in which you want to paste the event (for example, Microsoft Word), and then click Paste on the Edit menu. To view the description of the previous or next event, click the UP ARROW or DOWN ARROW. How to Interpret an EventEach log entry is classified by type, and contains header information, and a description of the event. Event HeaderThe event header contains the following information about the event: Date The date the event occurred. Time The time the event occurred. User The user name of the user that was logged on when the event occurred. Computer The name of the computer where the event occurred. Event ID An event number that identifies the event type. The Event ID can be used by product support representatives to help understand what occurred in the system. Source The source of the event. This can be the name of a program, a system component, or an individual component of a large program. Type The type of event. This can be one of the following five types: Error, Warning, Information, Success Audit, or Failure Audit. Category A classification of the event by the event source. This is primarily used in the security log.Event TypesThe description of each event that is logged depends on the type of event. Each event in a log can be classified into one of the following types: Information An event that describes the successful operation of a task, such as an application, driver, or service. For example, an Information event is logged when a network driver loads successfully. Warning An event that is not necessarily significant, however, may indicate the possible occurrence of a future problem. For example, a Warning message is logged when disk space starts to run low. Error An event that describes a significant problem, such as the failure of a critical task. Error events may involve data loss or loss of functionality. For example, an Error event is logged if a service fails to load during startup. Success Audit (Security log) An event that describes the successful completion of an audited security event. For example, a Success Audit event is logged when a user logs on to the computer. Failure Audit (Security log) An event that describes an audited security event that did not complete successfully. For example, a Failure Audit may be logged when a user cannot access a network drive. How to Find Events in a LogThe default view of event logs is to list all its entries. If you want to find a specific event, or view a subset of events, you can either search the log, or you can apply a filter to the log data. How to Search for a Specific Log EventTo search for a specific log event, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, expand Event Viewer, and then click the log that contains the event that you want to view. On the View menu, click Find. Specify the options for the event that you want to view in the Find dialog box, and then click Find Next.The event that matches your search criteria is highlighted in the details pane. Click Find Next to locate the next occurrence of an event as defined by your search criteria. How to Filter Log EventsTo filter log events, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, expand Event Viewer, and then click the log that contains the event that you want to view. On the View menu, click Filter. Click the Filter tab (if it is not already selected). Specify the filter options that you want, and then click OK.Only events that match your filter criteria are displayed in the details pane. To return the view to display all log entries, click Filter on the View menu, and then click Restore Defaults. How to Manage Log ContentsBy default, the initial maximum of size of a log is set to 512 KB, and when this size is reached, new events overwrite older events as needed. Depending on your requirements, you can change these settings, or clear a log of its contents. How to Set Log Size and Overwrite OptionsTo specify log size and overwrite options, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, expand Event Viewer, and then right-click the log in which you want to set size and overwrite options. Under Log size, type the size that you want in the Maximum log size box. Under When maximum log size is reached, click the overwrite option that you want. If you want to clear the log contents, click Clear Log. Click OK.How to Archive a LogIf you want to save your log data, you can archive event logs in any of the following formats: Log-file format (.evt) Text-file format (.txt) Comma-delimited text-file format (.csv) To archive a log, follow these steps: Click Start, and then click Control Panel. Click Performance and Maintenance, then click Administrative Tools, and then double-click Computer Management. Or, open the MMC containing the Event Viewer snap-in. In the console tree, expand Event Viewer, and then right-click the log in which you want to archive, and then click Save Log File As. Specify a file name and location where you want to save the file. In the Save as type box, click the format that you want, and then click Save.The log file is saved in the format that you specified. Windows <=8 1914 09/09/2023 WP Themes Customizing Executive Pro Theme Html5 article header executive pro Genesis Framework [CSS Changes] // moves content on 2 column article{ width:825px; } //content to navigation separation .content { float: right; width: 900px; padding: 40px 60px 10px; padding: 0.5rem 6rem 0.5rem; } Width of the overall container .site-container { margin: 0 auto; width: 1140px; } I just bloated the rest of css reference to keep from shrinking when resizing window @media only screen and (max-width: 1200px) { .site-container { max-width: 1960px; } @media only screen and (max-width: 1023px) { .site-container { max-width: 1768px; } @media only screen and (max-width: 767px) { .site-container { max-width: 1600px; } WP Themes 1287 09/09/2023