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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RahulGade

  1. RahulGade

    Custom Icons

    Hi, there are lots of shareware and freeware software like iconedit. In which you can create your own icons. either new icon or an modified icon from existing bmp,ico or gif files. Rahul Gade
  2. RahulGade

    how to pass user-define data types or classes across two process

    why do u want to pass the class object, there can be different solution for your requirements. you can pass the UDT (user defined data type) ie. structure from one COM to another...u just need to define that structure in .idl file with a guid. and use it anywere in the function. Rahul Gade
  3. RahulGade

    How do I find out what is causing an exception?

    Try to put OutputDebugStrings on the line...and use DebugViewer software to view those outputs, which u can get from sysinternals.com. And about excel exception..i think u r not releasing any resources from excel...that may be causing exception at excel end. Please read about the calls in...
  4. RahulGade

    DLL HELP

    Why you people are discussing over these things, just use ALT-COM wizard in VC++6 to generate a COM Based DLL. Then in your VB application you can add the dll as a reference and used any functionality. Rahul If you think you can't do it,You will never be able to do it.
  5. RahulGade

    can a FILE point to a FTP file?

    I have a fresh windows 95 machine, i have recently installed it. And it doesn't have wininet.dll, that's why my application failed on win 95. Rahul If you think you can't do it,You will never be able to do it.
  6. RahulGade

    can a FILE point to a FTP file?

    I have a fresh windows 95 machine, i have recently installed it. And it doesn't have wininet.dll, that's why my application failed on win 95. If you think you can't do it,You will never be able to do it.
  7. RahulGade

    how to record a sound in visual c++?

    Hi, jani, :) you should go for speech sdk. this is specially for speech related functionality and speech recognition softwares. Microsoft gives you this, with free of cost :> Rahul If you think you can't do it,You will never be able to do it.
  8. RahulGade

    how to record a sound in visual c++?

    Hi, jani, :) you should go for speech sdk. this is specially for speech related functionality and speech recognition softwares. Microsoft gives you this, with free of cost :> If you think you can't do it,You will never be able to do it.
  9. RahulGade

    Integrating an FTP Client

    If you don't wish to use the wininet.dll's function, you should go for implementing ftp protocol which is little difficult task. creating two socket one is data and other is command socket. then follow the ftp standards. ( read rfc) Rahul If you think you can't do it,You will never be able to...
  10. RahulGade

    Hi... I am facing problem in a co

    try using hardware flow control, Please check for proper handshaking between the two modems before starting data send. Verify the baud rate. Rahul If you think you can't do it,You will never be able to do it.
  11. RahulGade

    Hi... I am facing problem in a co

    try using hardware flow control, Please check for proper handshaking between the two modems before starting data send. Verify the baud rate. If you think you can't do it,You will never be able to do it.
  12. RahulGade

    can a FILE point to a FTP file?

    Since the functions like InternetOpen work only where wininet.dll is present which is not included in typical windows installation. This can also be done using sockets, read the rfc for ftp protocol. open the data socket and upload or download the file via data socket. Rahul If you think you...
  13. RahulGade

    PostgreSQL In SQL Server

    Dear coolwater, Have u installed the ODBC driver for PostgreSQL with proper version(imp). Because i have done it already in Linux - Windows Combination, for that i need to start the server using option -i. and i need to configure in PostgreSQL ODBC Driver,ie. username, password and port...
  14. RahulGade

    Help with Views and OID

    Solution 1 : Try using another database. Solution 2 : It seems to be a bug in postgreSQL, You can report to the postgres bug report page or mail the bug details at pgsql-bugs@postgresql.org , The response from them is very quick, as per my experiance withing 20 hours. Rahul Gade If you...
  15. RahulGade

    I can't insert a string with \ . Why?

    The postgresql special charecter recognation is much similar to the c programming. The '\' charecter is generally used to supress the meaning of special charecter. If you want to insert '\' into the table just use '\\' instead of single slash. Rahul...

Part and Inventory Search

Back
Top