Sorry, you do not have permission to send message.

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.

  • Ask questions get answers!

    We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge. All that you need is create an account. Join our community. Create your feed, follow your desired categories and users and keep updated.Besides gaining reputation with your questions and answers, you receive badges for being especially helpful. Badges appear on your profile page, questions & answers.Use your eared points to cread freely sticky questions and get answers rapidly.

Share & grow the world's knowledge!

We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.

What's your question?

Quereact Latest Questions

Hi,I am  new to VBScript, I am trying to get all the printers status on a network. Is there a script to do that? thank youRead more

  1. This answer was edited.

    here is the code if you need to check if a printer is connected to nework: Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Printer WHERE Name = 'HP DeskJet 2720E'") For Each objItem in colItems If objItem.Network = True Then WScripRead more

    here is the code if you need to check if a printer is connected to nework:
    [crayon-6764253252b4a677133816/]
    This script uses the Windows Management Instrumentation (WMI) service to query for printers with the name “HP DeskJet”. It then checks the value of the Network property for each printer to determine whether it is connected to the network. If the Network property is True, the script outputs a message indicating that the printer is connected to the network. If the Network property is False, the script outputs a message indicating that the printer is not connected to the network.

    I hope this helps!

    See less
0
0
Like1 User
1 User

Hello, Is it possible to change to orientation of an inverted mounting robot. I need to see the robot using 4D graphics in the TeachPendant exactly as it phisically mountend. It’s really helpful to easilly jog the robot. Thank you for your help

  1. Hi, Go to SYSTEM => SYSTEM Variables => CELL_GRP => CELL_GRP_T : you can change the values of XYZ WPR to adjust the mounting in the 4D graphics. It only adjust the view. but please, if you have a inverted mounted robot, You must controlled start => maintenace “mount angle setting” you haRead more

    Hi,

    Go to SYSTEM => SYSTEM Variables => CELL_GRP => CELL_GRP_T :

    you can change the values of XYZ WPR to adjust the mounting in the 4D graphics. It only adjust the view.

    but please, if you have a inverted mounted robot, You must controlled start => maintenace

    “mount angle setting” you have to choose 180 (Upside down)

    Have a nice day

    See less
0
0
Be the first one react

I have an excel files which contains many sheets. for evey sheet, the name is equal to name of student. How Sort worksheets by alphabet using vba Excel? thank you

  1. 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:
    [crayon-6764253252fa2396252759/]
     

    See less
0
0
Be the first one react

Hi I have a variables that is declared outsides fucntions. How can I use and change these variables inside function usign Python? thank you

  1. 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:
    [crayon-6764253253109209023739/]
    This code will print:
    [crayon-676425325310d824319756/]
     

    See less
0
0
Like1 User
1 User

Hi, What is the difference between P_TRING and |P| ladder instruction. and why I should affect a tag below the two instructions? Thanks for replies

  1. Hi, use P_TRIG to monitior everything in the left of this instruction. It turns to ON for one scan when the entire set of logic to the left goes from off to on use -|P| to monitor a single tag. it turns on one scan when the tag goes from off to on. Best regards

    Hi,

    use P_TRIG to monitior everything in the left of this instruction. It turns to ON for one scan when the entire set of logic to the left goes from off to on
    use -|P| to monitor a single tag. it turns on one scan when the tag goes from off to on.

    Best regards

    See less
1
0
HahaLike2 Users
2 Users

Hi everyone, I am new in PHP. I have this function which convert all alphabetic characters to uppercase: Read more

  1. 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:
    [crayon-6764253253296904181341/]
    For your code, use this:
    [crayon-6764253253299877483921/]
    Have a good day

    See less
0
0
Be the first one react

Hello I have two date : Read more

  1. 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:
    [crayon-67642532533d2768031551/]
    It works as you expect

    See less
0
0
Like1 User
1 User