Enter Keywords:
1 - 10 of 10998(0.005 seconds)
Sort By:
 
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...
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 "...
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...
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...
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...
Zones: Delphi ProgrammingDate Answered: 12/22/1997 Rating: 7.4 Views: 4
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.
Zones: Delphi ProgrammingDate Answered: 03/06/1998 Rating: 8.0 Views: 0
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)
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...
Zones: Delphi ProgrammingDate Answered: 04/07/1998 Rating: 8.4 Views: 4
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...
Zones: Delphi ProgrammingDate Answered: 04/28/1998 Rating: 6.8 Views: 0
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 ...
Zones: PerlDate Answered: 08/19/1998 Rating: 7.2 Views: 0