Set Multiple Fonts Using Single CFont Object
Did you know you can set multiple fonts for several controls using a simple CFont object in MFC? Using the Detach() method, which disassociates the associated window object from a
Did you know you can set multiple fonts for several controls using a simple CFont object in MFC? Using the Detach() method, which disassociates the associated window object from a
Whenever a class is referenced in a Java program, the class is loaded using the class loader from the JVM’s bootstrap or from the application-server. This often becomes a problem
The following code shows you how to develop a simple Java application that can play MP3 files. This application is based on JMF (Java Media Framework). import javax.media.*;import java.io.*;import java.net.URL;
An easy way to identify the execution path of the current assembly is to retrieve the read-only AppDomain.CurrentDomain.BaseDirectory property. Note that Environment.CurrentDirectory property (read-write) also does the same, as long
In SQL Server Management Studio, you can use the Alt key in your keyboard to select blocks of text to execute. For instance, sometimes I create a SQL script to
Suppose a user enters some information on the page and tries to close or navigate from the window?without saving the data. You may want to warn the user about possible
The code below demonstrates how to resize a form to the working area on the desktop using GetScreenRect. Private Sub frmFullScreen_Load _ (ByVal sender As System.Object, ByVal e As System.EventArgs)
Here’s a JavaFX example that creates a nice menu bar. All you need is a set of images named: home_1.bmp (unpressed), home_2.bmp (pressed), news_1.bmp, news_2.bmp,contact_1.bmp, contact_2.bmp, photos_1.bmp and photos_2.bmp: import
Q: What is the smallest object size possible in C/C++? A: A first attempt to create a size 0 object may look like this: class Empty {}; However, the value