Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. phidji

    Programming Extended Stored Procedure

    Hello, I programmed a function and i want to include it in a stored procedure. string EncryptString(const char *instr, const char *passPhrase); I declared my output data as a string string szOutputData; ... szOutputData = EncryptString((const char*)pbData, pass)...
  2. phidji

    Is there any equivalent in windows for system("perl program.pl");

    I don't understand what do you want exactly, but you can put perl.exe in your c:\windows\ or anywhere in a directory that is define in PATH variable. Then you'll don't need to specifiy the directory for using perl. I hope it help you.
  3. phidji

    installed php and now can't start server?

    It's probably a conflict with apache. To test your configuration do this : apachectl configtest (under root account) Next copy the error messages here and we can help you.
  4. phidji

    xmms and skins?!

    Go in /usr/share cd /usr/share Then try to find a direcotry name skins or xmmms find . -name "*skins*" find . -name "*xmmms*"
  5. phidji

    sysrnj.exe

    I had this virus. If you can't start an .exe chang the extension with .com and u can execute the program. Next, you'll need to change information in the registry. You can find help here : http://www.avp.ch/
  6. phidji

    Using a DLL for crypting data to be reused with delphi

    I need something which can be use on a stored procedure too. If you know a tutorial for using dll in a stored procedure, it help me a lot. Thanks.
  7. phidji

    How can I compare the content of 2 files with perl?

    Yes it will work : foreach $i (0..@lines1) This lines means that the application look every lines of the first file but stop when it will end.
  8. phidji

    hexadecimal conversion

    I used this two function : pack and unpack For exemple : $input = "string"; $var = unpack "H*", $input; print $var;
  9. phidji

    Using a DLL for crypting data to be reused with delphi

    Hello, I'm looking for a DLL to crypt string data which i can reused with a delphi application. Do u know something like that? If you want more explanation, let me know. Thanks.

Part and Inventory Search

Back
Top