Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

  1. Hi, Use the script in below. It uses the WScript.Network object to enumerate all printer connections on the network and check their status using the GetPrinterStatus method. On Error Resume Next ' Create a printer object Set objPrinter = CreateObject("WScript.Network") ' Get a list of all printers oRead more

    Hi,

    Use the script in below. It uses the WScript.Network object to enumerate all printer connections on the network and check their status using the GetPrinterStatus method.

    The status of each printer is  printed to the console.

    Hope this will help.

     

     

    See less
  2. You can use Counter if you want to do multiple count of the list from collections import Counter list = ['Jones','Adams','Frank','John','Lopez','Jones','Smith','Ivan','Julian','Carlos','Adams','Frank','Jones','John','Ivan'] print(Counter(list)) Result: Counter({'Jones': 3, 'Adams': 2, 'Frank': 2, 'JRead more

    You can use Counter if you want to do multiple count of the list

    Result:

     

    See less
  3. This answer was edited.

    Hi, In system variables you can find this variable: $MOR_GRP[1].$ROB_MOVE To share the state of robot is moving you can use a an output in a routine executed in a background logic. For example : DO[100] = $MOR_GRP[1].$ROB_MOVE Run this program in background logic: The output DO[100]  will be updatedRead more

    Hi,

    In system variables you can find this variable:

    $MOR_GRP[1].$ROB_MOVE

    To share the state of robot is moving you can use a an output in a routine executed in a background logic.

    For example :

    DO[100] = $MOR_GRP[1].$ROB_MOVE

    Run this program in background logic:

    The output DO[100]  will be updated and will get the robot motion status.

    I hope this help you.

     

    See less
  4. hello, try this code it will help you: Private Sub CommandButton1_Click() Application.ScreenUpdating = False 'disable screen update for performance Dim i, j As Integer Dim SheetsCount As Integer SheetsCount = Sheets.Count For i = 1 To SheetsCount - 1 For j = i + 1 To SheetsCount If Sheets(j).NameRead more

    hello,

    try this code it will help you:

     

    See less
  5. Hi, to remove duplicates from the list you can add this line before printing the list: my_list = list(dict.fromkeys(my_list)) best regards  

    Hi,

    to remove duplicates from the list you can add this line before printing the list:

    best regards

     

    See less
  6. Follow this example to create a variable outside functions, and use it inside the functions: MyVariable = 99 #this is a global variable def changeAndPrint_GlobalVariable(): global MyVariable #use global variable in this function with "global" keyword print('Global variable "MyVariable" before changeRead more

    Follow this example to create a variable outside functions, and use it inside the functions:

    This code will print:

     

    See less
  7. Hello this code may help you: def flatten_list(original_List): flat_list = [] for sub_list in original_List: for element in sub_list: flat_list.append(element) return flat_list #test original_List=[['a', 'b', 'c', 'd','e'], ['f', 'g', 'h', 'i'], ['j', 'k', 'l'], ['m', 'n', 'o']] print('original listRead more

    Hello

    this code may help you:

     

    See less
  8. Please use this code: $first_date = new DateTime("2022-01-01"); $second_date = new DateTime("2023-02-02"); $difference = $first_date->diff($second_date); echo "<difference> = " . $difference->y . " years, " . $difference->m." months, ".$difference->d." days " . "<difference in dRead more

    Please use this code:

    It works as you expect

    See less
  9. This answer was edited.

    Hi, This is the syntax to concatenate strings: $text1 = "hello"; $text2 = "world"; $text = $text1 . ' ' . $text2; For your code, use this: function UppercaseText($text_list) { $GlobalText = ""; $TableSize = sizeof($text_list);; for ($i = 0; $i < $TableSize; $i++) { $BigText[] = strtoupper($text_lRead more

    Hi,

    This is the syntax to concatenate strings:

    For your code, use this:

    Have a good day

    See less
  10. This answer was edited.

    Hi, I think Yoast SEO removed metakeywords. Please see this aricle : Meta keywords Why we don't use them - and neither should you use this key instead : _yoast_wpseo_focuskw You can update it like any post meta. This is the syntax: //the value of the focus key word $myFocusKeyword = "focus keyword eRead more

    Hi,

    I think Yoast SEO removed metakeywords. Please see this aricle :

    Meta keywords Why we don’t use them – and neither should you

    use this key instead :

    _yoast_wpseo_focuskw

    You can update it like any post meta. This is the syntax:

    I tested it and it works fine.

    regards

    See less