Add Variables to FrontPage 2000 Web Sites
If small parts of your FrontPage Web change frequently, you can save a lot of time by inserting variables with the Substitution Bot. Any time you need to change the
If small parts of your FrontPage Web change frequently, you can save a lot of time by inserting variables with the Substitution Bot. Any time you need to change the
In addition to the technique described in tip #453, “Assigning A Zero Value to All Members of A Struct”, C++ (but not C) offers another method of assigning all the
C++ defines a placement version of operator delete. Placement delete is not supposed to be called directly by the user. Rather, it merely serves as the deacllocation function that the
Pointers to members are one of the most intricate syntactic constructs in C++, and yet, they are a very powerful feature too. In future tips, I will discuss pointers to
While it is true that a multithreaded app is more responsive than a single threaded one, programmers who are new to multithreading are often misled into thinking that a multithreaded
Consider the following class and its global instance: // Foo.h class Foo { public: Foo() { RegisterSelf(); } private: void RegisterSelf() {/**/} };// Foo.cpp #include “Foo.h” Foo reg; // global
In older stages of C++, the ios::nocreate and ios::noreplace open modes were part of the family of classes. However, the revised family of file manipulation classes, which should be used
Question: I have a table in Microsoft Access 97 with sales info in the following format: Prod_Type, Box_Number, Cust_No.FA1111 , 400400 , 40010FA1111 , 400401 , 40010FA1111 , 400402 ,
Question: I am trying to set up 87 rules for a specific mailbox. Problem is, I get an error message stating there are too many rules. Is there a limit
Question: I’m a Visual FoxPro 6.0 programmer and recently decided to use Visual Basic 6.0. Everything seemed to be fine in VB until it came to creating a report. The
Question: I have a table in my SQL 7 database that, among other values, contains e-mails. There are duplicate e-mail values in this table. I want to extract one record
Question: I am working on a FoxPro for DOS system and I am using the COPY TO function to export the DBF to a (text or Microsoft Excel) file. However,
Question: I’m working on a database built for reporting purposes. Tables are updated once a month. Reporting queries are taking many hours to complete, some up to 26 hours. The
Question: Is dBASE IV an ODBC-compliant database? Answer: ODBC compliance is (or was) a specific set of functionality expected of a back end being mediated by an ODBC driver program
Question: I’ve got a mailbox on our Exchange 5.5 server that locks up Outlook 2000 client after running for a period of time. I’ve tried it on multiple machines so
Question: I’m looking for a C++ file that supports strings and bool. I currently have a very old version of C++ but I don’t have the prototypes that support string
Question: My computer froze and when I restarted it I discovered that my personal folder inbox has no folders. I also can no longer access the e-mail that I get
Question: None of the clients using Exchange e-mail can successfully send an e-mail message to an America Online recipient. We do not get an undeliverable message from the Exchange Server.
Question: I have nine Exchange 5.5 post offices. Most started as 5.0 post offices, which were then upgraded to 5.5 with SP1. The newer post offices have a “Microsoft Exchange
Question: In our organization, some employees belong to a group mailbox. Is it possible to open multiple mailboxes (including some shared ones) from a single Exchange profile? Answer: You can
Question: How do I set up public folders as conference rooms and see available times in the meeting planner? If I add the rooms as a resource it gives me
Question: Can you explain if the Exchange client can be set up as follows: User A has shared the Inbox for Secretary A. User A receives a message from another
Question: I would like to know if it is possible to restrict the ability of a user to modify the members of a distribution list (we have users who are
icrosoft Transaction Server (MTS) is certainly not new, but there are still a lot of common design and programming errors being made. In this article I will show you 18
You can use the GetVersion or GetVersionEx API functions to determine which Windows version the application is running on. However, there is a much simpler solution, based on the fact
While you can use many different API function to get user and domain information, if you’re running under Windows NT or 2000 Server there is a shortest path, based on
The usual way to determine the Windows’ main directory is based on the GetTempPath API function, which requires that you set up a buffer for the result, and then extract
The Windows API includes all the functions you need to retrieve and display information about the CPU the machine is equipped with. However, if you’re running under Windows NT or
The usual way to determine the Windows’ main directory is based on the GetWindowsDirectory API function, which requires that you set up a buffer for the result, and then extract
Sometimes you need to clear all the members of a struct after it was used. With large structs, you usually use memset() for that purpose. However, for smaller structs that