Forum: C++ Feb 9th, 2006 |
| Replies: 8 Views: 4,146 |
Forum: HTML and CSS Jan 20th, 2006 |
| Replies: 1 Views: 1,255 Re: Overflow of Content I fixed it, I just created a background that looks like two columns and offset the center column in between. More of a work-around than a fix. |
Forum: HTML and CSS Jan 19th, 2006 |
| Replies: 1 Views: 1,255 Overflow of Content Hey I have two side colomns and a middle column. The problem is when the content in the middle is too big, it overflows to the bottom of the page causing scrollbars. The side columns are susposed to... |
Forum: C Nov 21st, 2005 |
| Replies: 5 Views: 1,542 |
Forum: C++ Sep 29th, 2005 |
| Replies: 1 Views: 1,294 |
Forum: C++ Sep 29th, 2005 |
| Replies: 3 Views: 2,557 Re: Making a MUD Yes there is, it is called sockets.
On windows you can use winsock2 just include <winsock2.h> (it is part of the standard windows API).
Search on the internet for "winsock tutorial" for further... |
Forum: C++ Sep 29th, 2005 |
| Replies: 8 Views: 8,976 Re: Command-line argument syntax Straight from MSDN.com ...
So in WinMain do something like this:
lpCmdLine = GetCommandLine();
Then parse the lpCmdLine string. (REMEMBER IT DOES NOT INCLUDE THE PROGRAM PATH).
Also, a Visual... |
Forum: C++ Sep 26th, 2005 |
| Replies: 1 Views: 3,551 Re: Sending keys to active window. Use PostMessage() . It will add your message to the the recieving windows message que.
(SendMessage is to be used only within the same thread).
Also, check out SendThreadMessage considering that... |
Forum: C++ Sep 26th, 2005 |
| Replies: 4 Views: 1,183 |
Forum: C++ Sep 25th, 2005 |
| Replies: 4 Views: 1,183 Re: Binary Code yeah...how would i feed the processor raw binary in C/C++ ? |
Forum: C++ Sep 25th, 2005 |
| Replies: 4 Views: 1,183 Binary Code Is it possible to tell a processor to run raw binary code? |
Forum: Game Development Sep 25th, 2005 |
| Replies: 0 Views: 3,710 DirectX Hook Is it possible to distribute cideo processing by hooking the DirectX dll? I'm trying to prarralell process video over a LAN. |
Forum: C++ Aug 25th, 2005 |
| Replies: 2 Views: 2,187 Re: Processing tiff files Try ImageMagick it comes with a C++ API called Magic++ and suports tiff files and a bunch of other image formats.
One of the best ones around -- you can fiind it here:
... |
Forum: IT Careers and Business Aug 9th, 2005 |
| Replies: 21 Views: 10,065 Re: Registering a new company? It's actually cheaper to have your headquarters in delaware and operate in another state (most of the time).
The "registered agent" services are really cheap, like 150$ a year. All mail sent to your... |
Forum: Game Development Aug 8th, 2005 |
| Replies: 9 Views: 4,261 Re: PLotting a map/graph If you are working in the linux environment I reccomend using an API such as Qt (for KDE) and gtk+ (for GNOME).
These APIs will allow you to easily have access to opengl functionality (you can read... |
Forum: IT Careers and Business Aug 8th, 2005 |
| Replies: 21 Views: 10,065 Re: Registering a new company? Register in one state. I like deleware. You will need a valid business adress for the headquarters and to file your state taxes, etc. There are businesses that you pay yearly to act as your... |
Forum: C++ Jun 4th, 2005 |
| Replies: 3 Views: 2,128 Re: openGL problem What compiler are you using?
OpenGL is not standard with all compilers. You may have to download it. |
Forum: C++ Jun 2nd, 2005 |
| Replies: 40 Views: 37,329 Re: C++ Performance Tips When you want to pass a constant variable, pass it by reference to save memory.
Example:
int example (const int value); // Uses more memory than
int example (const int &value); // this one |
Forum: C++ Jun 2nd, 2005 |
| Replies: 26 Views: 4,144 |
Forum: Web Development Job Offers May 25th, 2005 |
| Replies: 0 Views: 1,675 Skilled C/C++ Developers I am looking for skilled C/C++ developers at entry level positions for an IT consulting corperation. If you are a good coder, there is a high chance of a better position.
I pay by the hour, you... |
Forum: Game Development Apr 29th, 2005 |
| Replies: 3 Views: 1,897 |
Forum: C++ Apr 25th, 2005 |
| Replies: 1 Views: 1,950 Re: Displaying records Are you dealing with a List control, array, or something else?
If its an array, you should be able to go through the array with a simple loop.
*I think*
If its a list control you can use the... |
Forum: C++ Apr 25th, 2005 |
| Replies: 3 Views: 8,026 |
Forum: C++ Apr 25th, 2005 |
| Replies: 6 Views: 1,876 Re: OpenGL You should know how to do the following in C++:
1. Overload fuctions and Call Parent Methods (Class Structure)
2. How to use interfaces
3. Understand Data Structures and Custom Data Types
4.... |
Forum: C++ Apr 25th, 2005 |
| Replies: 3 Views: 6,217 Re: Link assembly with C++ Do you need help with the actual coding or putting everything together and making the OS bootable?
Luckily I can help you on both! Here is a resource I want you to take a look at first:... |
Forum: C++ Apr 25th, 2005 |
| Replies: 14 Views: 2,764 Re: Controlling Hardware Check out: http://www.codeproject.com/shell/systemtray.asp
Although the explanation refers to an MFC based example, at the top of the page you can download a NON-MFC example.
You will need to... |
Forum: C++ Apr 20th, 2005 |
| Replies: 4 Views: 11,528 Re: struct array and enum problems Some of the variables being used in the .h file are declared in the .cpp file, which is after you include the info from the .h file.
I reccomend making a schedule class. The code, as it is now,... |
Forum: C++ Apr 19th, 2005 |
| Replies: 14 Views: 2,764 Re: Controlling Hardware Here what I like to call the lazy man's method!
Interprocess communication can help improve the functionality of your program.
// Command line approach
#include <stdlib.h>
...
// To... |
Forum: C Apr 19th, 2005 |
| Replies: 5 Views: 7,364 |
Forum: C++ Apr 19th, 2005 |
| Replies: 54 Views: 50,653 Re: C and C++ Timesaving Tips I know this may not seem like a super time saving technique, but the way you name your variables will help save time and reduce compile time errors.. Having a conventional variable naming format will... |
Forum: C Apr 19th, 2005 |
| Replies: 2 Views: 1,609 Re: Help using an Array Use a vector of type CPoint instead of a CPoint array.
#include <vector>
/* Only uncomment if its not already there */
//using namespace std;
....
void CProject5View::OnDraw(CDC* pDC)
{
... |
Forum: C++ Apr 19th, 2005 |
| Replies: 21 Views: 18,454 |
Forum: C Apr 6th, 2005 |
| Replies: 5 Views: 1,673 Re: Using sprites... Are the images dynamically loaded or static (resource)? What image format are you using for the images? |
Forum: C Mar 17th, 2005 |
| Replies: 2 Views: 1,735 Re: Continued Tic Tac Toe help Hey i have a tic tac toe program I can send you if you would like an example to work off of. Just give me a PM if your intrested. |
Forum: Java Mar 9th, 2005 |
| Replies: 4 Views: 3,072 |
Forum: Java Mar 9th, 2005 |
| Replies: 2 Views: 1,776 Re: number formatting using recursion why complicate things?
import java.text.NumberFormat;
.......
static String insertCommas(int num)
{
return NumberFormat.getInstance().format(num);
} |
Forum: C Mar 5th, 2005 |
| Replies: 23 Views: 5,051 |
Forum: C Mar 5th, 2005 |
| Replies: 23 Views: 5,051 Re: new to windows apps CString CHexcalcDlg::ConvertDecToHex(int number_in)
{
return ltostr(number_in,16);
}
rewrote the whole function give that a try.
don't forget
#include <stdlib.h> |
Forum: C Mar 5th, 2005 |
| Replies: 23 Views: 5,051 Re: new to windows apps i've updated my post on that response, check it out. The spaces thing was a typo, it wasn't the intent of my focus. The point is you are passing in a value to str_out then immedietly deleting that... |
Forum: C Mar 5th, 2005 |
| Replies: 23 Views: 5,051 Re: new to windows apps sorry to confuse you, its hard to explain let me show you:
void CHexcalcDlg::ConvertDecToHex(CString& str_out, int number_in)
{
int index = 4;
str_out = " ";
char chr;
while(number_in > 0); ... |