Summary: Hi, Am working on a bat file to read lines out of a file and pass them to call1.bat: FOR /F "delims=" %%a in (iplist.log) DO call call1.bat %%a call1...
Summary: How do I pass a variable declared in main to a function that runs when I click a button in Visual Studio .NET 2003? I've tried to make it public.. Wh...
Summary: I recently found this forum and have found it extremely helpful. However, in looking at several postes relating to nested FOR loops, I have not been a...
Summary: I'm having problems passing a socket to a thread. I have been able to pass a CSocket to a thread, but I don't know how to pass a regular socket. See: ...
Summary: I have created a class that need to take a string that is created at run time and pass that to a function that needs to know the strlen. Here is what...
Summary: Hi, im trying to pass a form variable to a php script but could able to get done. here is wat i have... bear with my tag format. .html file: #html# #h...
Summary: Passing parameters from a Vbscripts to a Vbscripts with out writting the values to a file or Environment variables, or registry. Just doing a string c...
Summary: Hello all, I need urgent help please. I have been trying for hours to pass a variable between two for loops in order to compare the strings passed and...
Summary: Your command, xcopy X:\ "%TEMP%" /H /L /S /Y | find "FileName" may find multiple files called "FileName" in different folders. You need to decide whic...
Summary: Another VBS problem! I need a script that can prompt the user for a server name, then pass it onto a batch file. ill include what i have so far: This...
Summary: Hello a click on a thumbnail opens a window with the enlarged pic (window.open). In this window I use a JS-script to click previous and next. I want t...
Summary: Im trying to assing a reg key value to a batch variable however the only way i can think of doing it is by querying the value and using a for statemen...
Summary: Beyond what Ronin pointed out, I think that you've realized that you aren't getting the values out of your prompt functions back to main() so that the...
Summary: hello all, i just recently got started programming in C++ using tutorials on the web and i'm learning how to read and wright to text files however i a...
Summary: Using the PUBLIC declaration takes up more memory than just keeping the variables local. Once used PUBLIC variables remain in memory throughout the l...
Summary: I want to translate a variable and read the output to another variable echo $my_var | tr '0123456789' 'ZZZZZZZZZZ' works as I'd expect, printing the c...
Summary: Hello! CD (or ChDir) fails in my batch files when used with variables. I want my batch files to use variables to navigate the directory structure rela...
Summary: You didn't specify the language, so it's tough to give an example. I'd guess you're learning c++ since most schools are teaching either c++ or Java, ...
Summary: VB passes the value of a variable to a function by default. C++ passes the address by default. Therefor when calling a DLL function from VB, which are...
Summary: You just can't add text to a jpg image. 1 - uncompress the image. 2 - to create the text image. 3 - Overlay text image over jpg image 4 - recompress t...
Summary: To make the discussion easier, let's just discuss the celsius process. The farenheit process has the same problem. The problem is the way that you ar...
Summary: "I've tried making the controls static" Controls are almost never static... Controls are objects that belong to a form, and typically they will need a...
Summary: hi, im trying to pass form variables to a php script but i could'nt able to get it work. i used $HTTP_POST_VARS and $_POST but nuthing seems working. ...