Hi !
I have written a program that looks something like this :
int WINAPI WinMain(HINST..............
{
HWND MyWin;
HWND = FindWindow(ar1);
}
ar1 should be the first argument to the program its...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10007807.html
Zones:
C++Date Answered: 04/12/1997 Rating: 6.6 Views: 4
is the cstring.h ' =' operator overloaded so that the following statement would work:
string field;
char array[5] = {'h','e','l','l','o'}
field = array[];
//ie now field will hold the string "...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10014133.html
Zones:
C++Date Answered: 06/12/1997 Rating: 8.2 Views: 0
Dear all,
I need to convert Strings into URLs, so I write the following :
private URL toURL(String s_URL)
{
try
{
m_URL = new URL(s_URL);
}
catch (MalformedURLException e)
{
}
r...
http://www.experts-exchange.com/Programming/Languages/Java/Q_10020976.html
Zones:
JavaDate Answered: 10/11/1997 Rating: 6.6 Views: 0
hi, I created a class Date like following, I want to do more, please give me some suggestion:
class Date{
private:
int month;
int day;
int year;
public:
Date(); //Default constructor
Date(int...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10028230.html
Zones:
C++Date Answered: 11/23/1997 Rating: 6.0 Views: 6
Hi,
I have a button and a TEdit control on a form.
The user can put words separated by spaces into the
TEdit. I have strings in an ini file. Lets say the
ini is called nov.ini and the section is ca...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10030879.html
How do you use the format, Strfmt and Fmtstr functions. I am trying to take a string like this '26000' and convert it to 26,000.
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10041785.html
What I need to do is test to see if the first character in a string is an Integer, how do I do this?
eg 3 F#2 B4 D#3 (is correct)
A F#2 C2 D1 (is wrong)
http://www.experts-exchange.com/Programming/Languages/Java/Q_10042506.html
Zones:
JavaDate Answered: 03/11/1998 Rating: 8.2 Views: 0
I want to write a Password - String down in a untyped file. The Passwords is a String[30]. My Problem is, it is too easy to rip that information. You just neen to view the file with a good editor a...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10046691.html
I have a set of strings (actually pchars)
each is approximately 1100 characters long I wish to search these for a substring of about 20 characters.
what is the most efficient way of doing this,
whi...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10049795.html
Is there a Perl function for getting the date in
a string format? I'm looking for something sort
of like ctime(3) in UNIX.
I know I can get the variables and then print them
myself. I'm just ...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_10068022.html
Zones:
PerlDate Answered: 08/19/1998 Rating: 7.2 Views: 0