Jump to content
Compatible Support Forums

j_a_rasheed

Members
  • Content count

    13
  • Joined

  • Last visited

    Never

Posts posted by j_a_rasheed


  1. I have Win Xp Version 2002 SP2 on my PC. I have a user "rj" with Administrator's privilege. Actually I am unable to login under the user "administrator" although I see it in Admin tools/Comp Mgnt/Local Users and Group/Users.

    In fact on the login screen I am unable to see this user 'administrator'.

    What is wrong. Pl help.

    Rasheed

    ***

     


  2. Hi,

    I need to connect a PC to the existing LAN.

    I have already install the TP/IP. I have input the IP Address and the submask according to the established rules.

    Computer Name and workgroup have been entered as per the establisged rules.

    The n/w card has been checked by pinging 127.0.0.1 - work fine.

    The N/w icon is being shown in the notification area.

    Up to here, it appears that everything has been configured as required.

    But the problem is that we are unable to ping the server or any other computer on the LAN.

    Pl help.

    Rasheed

    17/01/2007

    ***


  3. Hi,

    I am using outlook Express 6.0 for checking my emails which are found on the server xxx.yyy.mu

    The entry in Tools/Account/Mail/Properties/Servers/Incoming Mail (POP3) is xxx.yyy.mu

    The entry in Tools/Account/Mail/Properties/Servers/Outgoing Mail (SMTP) is xxx.yyy.mu (same as above)

     

    Until last week everything was working fine. My Pc is connected to the Remote Mail Server on a LAN via a router.

     

    Then I started getting - The host xxx.yyy.mu could not be found ..... - This problem is also happening on some other sites but not all sites.

     

    Now I have replaced the settings in Incoming Mail and Outgoing Mail with the IP Address of the Remote Mail server and now everything is working fine.

     

    Can I know why the initial setting suddenly start creating problems? I suppose there is a problem of name resolution. Pl help. Thanks

    [NB: The name of the server has been replaced by xxx.yyy.mu in this post]

    Rasheed

    ***


  4. Hi,

    During a Symantec Antivirus scanning the following message is displayed in the Threat History of the slave server: "Primary Action: Delete infected File Secondary Action: LeaveAlone(Logged only) Action Description: The file was left unchanged" .

    This problem is occuring on several computers which are on the network. There is a slave server that scans and updates the different virus definition file on these computers.

     

    How should be get rid of these threats?

    Pl Help

    regards

    Rasheed

    ***

     

     


  5. Hi,

    For some reasons now when I am using my pendrive, I am getting the message "The disk in drive E is not formatted - Do you want to format it now..."

    I believe that there is a problem with my pendrive.

    What is the cause of this error message?

    Is there a way to recover my data from the pendrive or are the data lost for good?

    Pl help.

    Rasheed

    ***


  6. Hi all,

    What is the min. and max. size of the data part in a tcp packet?

    I guess that the minimum is 1.

    Similarly the "Option + Padding" field is a multiple of 32 bits. Can it be either zero and "any" multiple of 32 bits?

    Thanks

    Rasheed

    ***

     

     


  7. Hi all

     

    Part of an interface definition in c++ is as follows:

     

    interface Account {

    struct Transaction {

    enum ttype {deposit, withdraw} direction;

    unsigned long amount;

    };

     

    typedef sequence<Transaction> Statement;

    .....

    .....

    void deposit (in unsigned long amount);

    .....

    .....

     

    }; //interface

     

     

    void Account_impl::deposit( CORBA::ULong amount )

    throw(

    ::CORBA::SystemException)

    {

    bal += amount;

     

    std::map<std::string, Account::Transaction> trans_details;

    trans.amount = amount;

    trans.direction = deposit; (<<----)

    trans_details.insert( std::pair<std::string,Account::Transaction>("Deposit",trans) );

     

    }

     

    When running the function deposit, I need to keep a track of all the transactions.

    <trans> and <trans_details> already defined elsewhere.

    Now I am getting error message on line (<<---) above - "Cannot resolve overloaded function based on conversion to type Account:Transaction:ttype".

    How can I keep alog of t he transaction taking place in Function deposit().

    Thanks

     

     

     

     

     

     


  8. Hi,

    I need to write a function to convert characters into their binary equivalent.

    Which function do we use to get the ascii code of a character - e.g an 'A' is 65 and and which function do we use to return the character associated with an Ascii code eg 65 will return an 'A'.

    In Foxpro we use the fuctions ASC() and CHR().

    I am new to VB6

    Thanks

    *****

×