Questions tagged [status]

A status is a summary of the current state of a process, an application, a function or an object, or a response code about the execution of a request or a function (e.g., return code or error code). For status bar, use the tag 'statusbar'. For http-status, use tag 'http-status-codes'

A status is a summary of the current state of a process, an application, a function or an object. It can also be a response code related to the execution of a request or a function, typically a return code, or an error code.

Disambiguation:

  • Do not use for question related status bars, but use instead.
  • For HTTP requests, prefer or the tag http-status-code-xxx where xxx is a numeric response code.

External references:

  • Exit status on Wikipedia for status of a process execution
1447 questions
-1
votes
1 answer

perl code to read firefox window status

I've a custom script on a web server, the script is run by calling a web page from a browser, once the page is opened the script starts and the browser windows is updated with results. I use Firefox ver 22 and when the script is running you can see…
Flx
  • 1
-1
votes
1 answer

How to get all username status in a VB.Net application

I am a bit new to this VB.NET application stuff. I currently try to develop a application using Microsoft Visual Basic. Net with Remote SQL Server 2005. In my application include user login using Username and Password. The application will use from…
Daniel Smith
  • 1,626
  • 3
  • 29
  • 59
-1
votes
2 answers

Online Status Report of a FTP Server?

I want to make a status report of when my FTP server is on and when its off. HTML is the language which I prefer to use. I have never used HTML before, and I need it due to a large request of when my ftp server is off and when its on.
lab12
  • 6,400
  • 21
  • 68
  • 106
-1
votes
2 answers

Java How do I Execute a Batch File when Server Status boolean is false?

Objective: I want to make a java program containing a boolean that checks every 5 minutes to see if my games server (cloudnine1999.no-ip.org:port 43594) Purpose: To restart my game server if it crashes Problem: Not sure how to check if a server is…
Cloudnine1999
  • 93
  • 1
  • 1
  • 5
-1
votes
1 answer

How the changing the app Display Name is affect the app status

My app is submitted and has 'live & listed' status. So, if i change the Display Name field - will this affect the app status and App Center listing?
-1
votes
2 answers

Access to XMLHttpRequest.statusText will cause exception when it fails?

$.ajax(error:function(XMLHttpRequest, textStatus, errorThrown) { XMLHttpRequest.statusText }) Did someone also met this problem? EDIT I'm using Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.2) Gecko/2008091620 Firefox/3.0.2
omg
  • 136,412
  • 142
  • 288
  • 348
-1
votes
2 answers

how can I append the facebook status textbox to my website

Can Any one please help me. I want this textbox to be visible on my website and the users can update their status directly from the website. Thankyou in advance
Nabeel Arshad
  • 45
  • 1
  • 7
-1
votes
1 answer

rich:progressBar and a4j:status

i have an "a4j:status" which indicates ajax activity in my application. On one page i have an "rich:progressBar" which updates once per second. How can i avoid that my a4j:status is shown when the progressbar updates? thanks
wutzebaer
  • 14,365
  • 19
  • 99
  • 170
-1
votes
1 answer

Posting to Event page?

I want include some simple PHP in one of my pages, that when the page is called, it will write a new post (database driven on my end) to a Facebook Event page that I have going. Al the DB stuff is simple , but I cannot seem to find any reference to…
-1
votes
1 answer

I have epson thermal printer model M129H. How to get the status of the printer ? like its on or not and paper roll is finished etc

I have epson thermal printer model M129H. How to get the status of the printer in my c# application ? The status includes: Printer is on or off Paper roll is finished Error in printing Paper roll fitter is open etc.
HotTester
  • 5,620
  • 15
  • 63
  • 97
-2
votes
3 answers

Fetching one's old Facebook status messages

I want to fetch one's old Facebook status. I have written the code for the same but it looks like it is not working for me. The steps that I have followed are as follows: First I use the below API to seek the code from Facebook (by prompting user…
-2
votes
1 answer

VBA - Checking a worbook's status and location to run external macros

Here's the situation (I'll try to make it as cleal as possible) ; for context first : I'm making an Excel file that my team will use as a sort of dashboard, with links to various files, apps, with popups etc. There's also a catalog of display errors…
Eawyne
  • 1
-2
votes
1 answer

How to check the status field in models django and send mail to the user?

I wrote a fullstack django ticketing system for a company. Everything works, login, register, posting a ticket, database, send mail to admin. Only thing that is left is to check the status field of the ticket and if its true send an email to the…
-2
votes
1 answer

I want bank account status in Oracle Apps R12

I want to check bank account status either it is active or inactive by giving bank account name in oracle apps r12 Could anyone please give me the query?
Zagum Raza
  • 15
  • 3
-2
votes
1 answer

How to program windows service app to report the right status?

I know that windows service application in C# provides methods like OnStart() and OnStop(). For example I say that I have written a method in a previous program and i call it in method OnStart() of the service: MyClass.Start(); This method runs a…