I am beginner of serial communication ... So I have to get records from labaratory instrument. The communication is the same as
http://www.experts-exchange.com/Programming/Languages/Visual_B...
Hi experts,
For some years I was using LeechFTP as my FTP client. I have for the last few months been using FileZilla instead as it's far better. However, I have loads of saved sites in my ...
I am looking for a clear explanation of the difference(s) between using raw sockets vs. the WinPcap driver for packet capture on Windows XP/Vista. What are the pros and cons of each approach?...
Hey All,
I know this may seem like a very simple question but im having a problem running two reg files on system startup. What im looking for is a vbscript that I can use in GP to run one re...
the following line of code
myXL.Sheets.Add(After:=Worksheets(pervsheetIndex)).Name = "Sheet" & sheetIndex
produces the following error -
Method 'worksheets' of object _'Global' failed whe...
I have tried several different methods of creating remote processes using WMI (VBScript, VB.NET, and C#) and am not having any luck in getting them to 'execute' how I would like them to. I can...
Hi. If anyone is familiar with SPSS syntax I wonder if they may be able to fix this.
I want to run the command called TWOSTEP CLUSTER repeatedly but it does not work.
Hi, I need to connect a J2ME client to a C# server to send and receive some data.
I'm using sockets and can correctly connect.
My question is if is there a way I can send a structure between...
I have this InnoScript that I am trying to make work: the net effect is that I don't want to execute the first two lines of the [Run] block if Firebird is not installed. The code that I have...
Hi I have the below code that is attached. It is a .bat file for dropping a database.
It hink when it gets to the mysql drop command, it asks a yes/no question, I need the script to overwri...
Hello,
I need to find computer accounts that have not had their passwords reset in over 60 days and what OUs they are located in. If anyone has a sample VBScript that would accomplish this,...
Chaos!
My problem seems so simple but I've finally not found a solution.
I want my TextBox change it's Align as:
- If input string is in "range of view", that means TextBox can display a...
Hi everybody,
i'm creating an application using an external liberay that creates a control.If you click on this control it reacts on the mouse click, but i want to cancel this. I want to im...
I am try to do some editing for PC out side of the domain, and in some seperate workgroup. But it doesn't work, it is probably because of authentication related. I am not sure how to put a us...
How can I create patch for window application updates using vs.net (2005)?
I want my client should get automated message/update window whenever updates are available and client is connected ...
I want to be able to detect whether a given date falls within Daylight Savings Time for a given time zone. The time zone is not necessarily tied to the regional settings in the control panel. ...
I currently have a .net remoting system running. It is used to allow any of our internal systems to access a single "system of record". This SOR is accessed through traditional API's, so the...
I want to update a column with multiple values return by a select statement
for example-
update employee set empname=(select empname from employee where sal<20000).error comes after run the...
Hello experts,
We have a program (exe) that converts the SID into a user name. I have a list of SIDs (about 1000), so I want help writing a command line or vb script that will loop thru th...
I'm looking for a similar VBS (see linked question) that could be used from within ADUC via the right click context menu - I already know how to add an item to a context menu and point it to t...
Looking for assistance in setting up a continues ping that will display the date and time of the ping.
I'm trying to take a list, and remove only the negative numbers. So far i have this
non_neg([],[]).
non_neg([H|T],S) :- H<0, non_neg(T,S).
non_neg([H|T],S) :- H>=0, non_neg(T,H).
I'm p...
Hi Experts,
I have a solution which loads names of text-files from a directory and loads the file-names into a Listbox. If the file-ame is selected from the listbox, it loads the contents i...
We have a batch script which must run on the console session on several 2003 servers. This script must only run on the console session. We would like to detect in this script if it is runnin...
I'm wroking with VBA in Macola (Flexibility) for a new project and not very experienced with Macola yet.
(Usually work with VS)
Well I try to save some data after the user hits the save but...