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 TouchToneTommy 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: inetd
  • Content: Threads
  • Order by date
  1. inetd

    Blocking Yahoo and Microsoft MSN?

    How can I block Yahoo messenger and MSN messenger by using iptables? Thanks.
  2. inetd

    Which version should I use?

    MySQL 4.0 or MySQL 4.1? MySQL 4.1 supports subquery but it is still a beta version. Any recommandation? Thanks.
  3. inetd

    Blocking webmail access?

    How to block the internal client to access the webmail in the internet? Can squid do that? Thanks.
  4. inetd

    Thread-safe? What & How?

    What is the exact meaning of thread-safe? And, how do I know my code is thread-safe and how to write the thread-safe code? Thx.
  5. inetd

    Records retrieved in detail table

    If a master table and a detail table is linked one-to-many, what is the behaviour of the detail TTable /TADOTable? Is it retrieving all the records and then filter the corresponding records? Or, just retrieve the corresponding records from the table? Thx.
  6. inetd

    filtered records in TTable / TADOTable?

    If I use TTable / TADOTable with filter property, the filtered records are displayed. Is the dataset retrieving all the records in the table and just display the filtered records to us? Or, it only retrieve the filtered records from the table and with a new retrival if I changed the filter...
  7. inetd

    fsck error

    My system is running RH7.3. I am getting the following error when running fsck on hdc10. I can't access it. How can I get my data back from this partition? Attempt to read block from filesystem resulted in short read while checking ext3 journal for /dev/hdc10 Pls help. Thx.
  8. inetd

    Table Filed type in CR & database?

    I am using crystal report 8. I want to use ttx definition file instead of linking to database in design time. Can anyone tell me what is the mapping of the field types in crystall report and the real table field type? For example, I don't know what field type should I use in Crystal Report...
  9. inetd

    uses after interface / implement section?

    What is the difference between using a unit after interface section and implementation section? When should I place a uses statement after interface and after implementation? Ex: unit MyUnit; interface uses Windows, Messages, SysUtils, Forms, MyUsesUnit; // uses here? .... .... ...
  10. inetd

    resize partition?

    Any tools can resize ext3 partition just like Partition Magic in Windows?
  11. inetd

    dynamic routing in linux?

    If I have 2 broadband lines from 2 different ISP and these lines are connected to a single linux gateway. All my clients behide the linux box will uses these two lines to access the internet. Now I want to have a more statable internet connection for my clients such that if one of the...
  12. inetd

    Sync. table in different database & location?

    Hi, How to sync. the tables in the databases with different location? For example, there are 1 head office and 2 branch offices and each has the same database structure in its local server. However the data in these databases should be sync. after office hour. i.e. A sync. operation/program...
  13. inetd

    SSH tuneling

    I have a RH9 gateway and there are some user account on it. I have enabled the ssh tunel feature because I needed to remotely administer the internal machines. However I don't want the other users on the gateway using the tuneling feature. How can I disabled this feature in sshd for some...
  14. inetd

    remove mail from mail queue

    How can I remove the mail from mail queue? Thanks.
  15. inetd

    compile error with shlobj.h

    When I include the shlobj.h in my cpp file, there is always a compile error with: "Multiple declaration for FVSHOWINFO" "Earlier declaration for FVSHOWINFO" "Multiple declaration for FOLDERSETTINGS" "Earlier declaration for FOLDERSETTINGS" .... .... ...
  16. inetd

    HotTrack?

    How to make a component has the HotTrack behavior as like as in TTreeView?
  17. inetd

    No space left on device?

    I have received a mail from logwatch like this: --------------------- Cron Begin ------------------------ **Unmatched Entries** DEATH (can't open or create /var/run/crond.pid: No space left on device) ---------------------- Cron End ------------------------- ------------------ Disk...
  18. inetd

    iptables log file?

    Can I log the info in different file for iptables? My /var/log/messages is over 50M. Most info is generated by iptables with logging rules.
  19. inetd

    Memory allocation and freeing question

    char *c; char *s10; char *s50; c=new char; s10=new char[10]; s50=new char[50]; How should we free these memory correctly? delete c; delete s10; delete s50; Are these correct? Thanks.
  20. inetd

    TServerSocket in Thread?

    How can I use TServerSocket in my working thread? I have created a TServerSocket in my thread and then set the properties and the event handler. However when a client try to connect to the server, there are nothing happen in the thread and no server socket event has been called. Pls help...

Part and Inventory Search

Back
Top