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: *

  • Users: RahulGade
  • Order by date
  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...
  16. RahulGade

    Send fax using AT Command set

    Using hyla command what should be the sequence of AT commands To send a fax, I can dial the remote fax machine by opening com port and issuing Hyla AT Command, but after that what to do to send any image file or any text file as a fax to fax machine. Thanks in advance... Rahul Gade If you...
  17. RahulGade

    Weird problems on pgsql7.1

    There are many changes in the Linux kernel of Redhat 7.1, so I will suggest you to install Postgresql 7.1.3, Which is the earliest version.
  18. RahulGade

    concatenate strings

    Then for the multiple records value, you should choose temp tables, You should select all the records in to one temp table using "create temp table tmptable as select * from table" then select the records using "select * from tmptable" this will solve your problem...
  19. RahulGade

    To find out undocumented API's Parameter

    Please help me, I have one generic dll whose documentation is not available,i know the function names in it but want to know the parameters in it. Also i have one application which usase that dll. I have used Win32dasm like many other utilitys but they doesn't work for the dynamic linking...
  20. RahulGade

    concatenate strings

    You can use any delimeter to seperate that records, Just for example what i have used is ; (semicolon) as a delimiter for records, and you can extract the records using front end login by looking for semicolons, or if you wish to store semicolon as a part of record then you may choose any...

Part and Inventory Search

Back
Top