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 Wanet Telecoms Ltd 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: MrSatan
  • Content: Threads
  • Order by date
  1. MrSatan

    Is there a way to see MSMQ in Workgroup mode...

    Hi All, I would like to know if there is a way to push message from Server B into Server A (or a confirmation that is impossible). Server A is running windows 2003, has a private queue in workgroup mode under Domain A. Server B is running windows NT 4 under Domain B, no message queue, but with...
  2. MrSatan

    Is there a "ReplyTo" command in Winsock???

    Hi All, The application that I am working on is using winsock to send out mail. It has a requirement to include "ReplyTo" email address field. I have searched around for the winsock command, and only discovered that the command for: Sender ("From") = "MAIL FROM:" Recipient ("To") = "RCPT TO:"...
  3. MrSatan

    Rowset position can not restart...

    Hi All, I have a function as follow to retrieve from DB and return the recordset to the caller. ---------------------------------------------- Public Function Retrieve() As ADODB.Recordset Dim oConnection As ADODB.Connection Dim oRecordset As ADODB.Recordset Dim oCommand As...
  4. MrSatan

    Install 2 versions of vb.

    Hi All, My PC has vb 6.0 installed, due to some maintanences are required on an application which is written in 16 bit vb 4.0, I will need to have vb 4.0 installed on the PC as well. Before I am going ahead with the installation, I would like to have some advices on such as any impact is...
  5. MrSatan

    Upgrade SQL Server 6.5 to SQL Server 2000.

    Hi, My boss has finally decided to upgrade the SQL 6.5 to SQL 2000, and he want a list of possible impacts that may happen to the 10 VB applications that currently use the database, these applications are written in VB 4/5/6. I am not a database admin, and am a pure VB programmer, I only use...
  6. MrSatan

    Convert Memos dialog box.

    Hi All, By using Visual FoxPro 6.0 to open a dBaseIV table which contains the memo fields, a Convert Memos dialog box will pop up to prompt "Convert MEMO file to Visual FoxPro format?...", by pressing the Yes button, another dialog box will pop up to prompt "Remove dBASE 'soft'...
  7. MrSatan

    Convert Date Format...

    Hi All, Is there any function that can use to convert the date format from yyyymmdd into yyyy-mm-dd or from yyyy-mm-dd back to yyyymmdd? Currently I need to use something like SUBSTR(Date, 1, 4) + '-' + SUBSTR(Date, 5, 2) + '-' + SUBSTR(Date, 7, 2) Thanks in advance. MrSatan.
  8. MrSatan

    How to keep track of return Urls...

    Hi All, I need an easy implemented way to keep track of the return Url that passed from one screen into another. Eg: screen A -> screen B -> screen C -> screen D ...etc... Currently, my code is set the current screen's returnUrl to the request object, and the next screen will get it from the...
  9. MrSatan

    Advance determine shell process termination.

    Hi All, I know by using some API functions, we are able to determine when a shelled process has terminated, but this only work for the first level call. eg: Shell MyProgram.bat Is there a way to determine the subsequent call as well. eg: In MyProgram.bat, I am calling MyLongProgram.bat, so...
  10. MrSatan

    Transform data from DBase IV to DB2 with VB6.

    Hi All, I need to transform large amount of record from DBase IV free tables into DB2 v7.2. The total DBase files size is 1.94GB and is around 12 million records. The process has to be run as much "Unattended" as possible, and have to finish within 2 days. Currently I am using ADO in...
  11. MrSatan

    Transform data from Dbase IV to DB2 with VB6.

    Hi All, I need to transform large amount of record from DBase IV free tables into DB2 v7.2. The total DBase files size is 1.94GB and is around 12 million records. The process has to be run as much "Unattended" as possible, and have to finish within 2 days. Currently I am using ADO in...
  12. MrSatan

    Transform data from DBaseIV to DB2 via VB

    Hi All, I need to transform large amount of record from DBase IV free tables into DB2 v7.2. The total DBase files size is 1.94GB and is around 12 million records. The process has to be run as much "Unattended" as possible, and have to finish within 2 days. Currently I am using ADO in...

Part and Inventory Search

Back
Top