
Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.
Many commercial programs have a Tip of the Day dialog, that shows a tip or trick whenever the application starts. With the MB TipOfTheDay Control you can add this nice
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal bytes As Long)’ read a byte from memoryFunction PeekB(ByVal address As Long) As Byte
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal bytes As Long)’ read a value of any type from memoryFunction Peek(ByVal address As
‘ write a value of any type in memory” The value is written in the format of the value passed’ as the second argument, but you can overwrite it by
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal bytes As Long)’ convert a BSTR into a VB StringFunction StringFromBSTR(ByVal pointer As Long)
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal bytes As Long)Private Declare Function lstrlenA Lib “kernel32” (ByVal lpString As Long) As _
You can quickly evaluate the age of a person using the following function: Function Age(BirthDate As Date, Optional CurrentDate As Variant) As Integer If IsMissing(CurrentDate) Then CurrentDate = Now Age
‘ Evaluate the Easter date for a given yearFunction EasterDate(ByVal Year As Integer) As Date Dim G As Integer Dim C As Integer Dim H As Integer Dim i As
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal bytes As Long)’ write a byte into memorySub PokeB(ByVal address As Long, ByVal value
A global function may be declared inline. If you use the same function in different development environments, e.g., C and C++, you can hide the “inline” keyword from a C
When you need to compute the time that elapsed between two dates, use the standard function difftime(). This way, you avoid potential bugs such as leap years or Y2K issues.
The standard strstream family of classes enables you to convert numeric values into their string representation easily. You need to instantiate an strstream object, insert the numeric value to it
Linkage between C++ and non-C++ code fragments can be achieved using a linkage-specification. For example: extern “C” int func(int arg1); // func has C linkage The quoted string in the
In the following declaration of the template min, the template parameter T is passed by value: template bool equal(T first, T sec){//
The best way to tackle alignment/wrapping issues with invisible tables is tomake the tables visible. To do this, you should set the border property oftables that contain form fields or
Question: How do I make 1 bool take 1 bit instead of 1 byte? Answer: Instead of an array, you should use an STL container that is specifically designed to
Question: Is there any software that will convert database files from Informix to dbf files? Answer: I’m not aware of any. Sort of like rebuilding a Ferrari and putting in
Question: How do I put a named constraint on a social security number defined as number(9) so that no hyphens are allowed in? Answer: To prevent numbers with hyphens from
Question: Can I arrange the WML information on my server in one huge file and still have it delivered to a WAP device? Answer: The largest “deck” you can have
Question: Let’s say a WAP server has a WAP stack of the following layers: Connectionless WSP UDP IP Would you give me example packets that arrive at the server from
Question: Why does our Exchange server randomly slow way down once a day? Answer: There are a number of reasons why that could happen. I suspect you may find some
Question: Can you please name a few compilers that implement bool? Answer: Almost every C++ compiler nowadays supports bool. You don’t have to define or #include anything; bool is a
Question: I use from stl in a .h file: #include …….typedef vector IntVector; // error! But in the last line, the compiler returns the message: missing ‘;’ before ‘
Question: Does OWA have access to the GAL to send messages to other users? Answer: Yes, Outlook Web Access (OWA) does have access to the Global Address List (GAL) from
Question: I have a CSV list I am passing through as a parameter in a stored procedure. ——————————-Example of Region list:1,2,3,4,5,6,7,8,9,10CREATE PROCEDURE sp_getReport @Regionlist varchar(100) AS …….Select * from tblRegionwhere
Question: Which development tools currently are available for WML editing? Are any made specifically for ASP/WML? Answer: Personally I use Microsoft’s Visual InterDev for all my Web development, simply out
Question: Can I use WTAI function calls to write and then read back numbers in the handset phonebook? Answer: The WMLScript to do this is: addPBEntry(number, name); This will add
Question: Does JSP support WAP? Answer: As long as you set your content type properly, any of the scripting languages can generate WML, which can be displayed on WAP-enabled devices.
Question: I have a Nokia WAP server 1.1 and toolkit 1.2. When I try to look into a WML page using Wapman, it gives a 406 error. What do I
Question: As backup for a client, can I write a script in Exchange to shut down the service, copy all the data files to another drive, and then restart the











