
please wait
by Cambalinho
GDIPLUS::Image::SetPalette: how set a palette?
|
i can get the image palette: img= Image::FromFile(towstring(filename).c_str(), FALSE); //free(imgPallet); UINT PaletteSize; ... |
Sep 30, 2016 at 6:20pm
[no replies]
|
FindNextFile exception |
Hello guys! i'm trying to display all contents of the "Images" directory i'm studying this msdn page : https://msdn.microsoft.com/en-us/library/aa364428(VS.8... |
Sep 28, 2016 at 8:48pm
[4 replies] Last: Works! Tnx (by Mario Valentino)
|
by EJ42
Windows multi-color text output help
|
Let's start of with the fact that I'm an MSEE, and not a CS grad. I took enough C++ to be dangerous with Unix console programs. I have a pretty strong grasp o... |
Sep 28, 2016 at 5:45pm
[3 replies] Last: That's the only way I'd know how to do it. If I wanted to do somethin... (by EJ42)
|
by eroki
1d returned 1 exit status and winmain@16
|
when I tried to install SDL onto code blocks I get these error messages. 1d returned 1 exit status undefined reference to WinMain@16 this is the code: ... |
Sep 28, 2016 at 2:46pm
[8 replies] Last: it is finally solved, I used the setup guide I got from krako and the ... (by eroki)
|
by newbie999
Read the Color of A Element of External Program
|
There is a program to show up the price change. And I want to detect any color change in a specific area, A(600,0) to B(900, 100). Is that possible? Is it... |
Sep 27, 2016 at 11:42pm
[1 reply] : https://msdn.microsoft.com/en-us/library/windows/desktop/dd144909(v=vs... (by integralfx)
|
by OldPCGuy
Win Forms - Simple textBox
|
I have a simple WinForm program with a text box. When I write to the textbox it doesn't display. If I look at textBox1 in the debugger it is receiving the h... |
Sep 26, 2016 at 10:49pm
[no replies]
|
by Kotik
Some encoding problems
|
Hi everybody! I have faced a problem with encoding and wrote this simple example to explain that: #define UNICODE #include <windows.h> int main() { con... |
Sep 23, 2016 at 8:45pm
[no replies]
|
by moonman239
Append to beginning of TCHAR array using wsprintf
|
I'm having a bit of a problem. I'm supposed to create a program that converts base 10 numbers to hexadecimal numbers. My program: 1) Divides a given number by 1... |
Sep 23, 2016 at 6:46pm
[3 replies] Last: wsprintf() converts ANSI (char) C-strings to wide (wchar_t) C-strings,... (by closed account E0p9LyTq)
|
by MultiMedia
Problem with WM_PAINT
|
Hello, for some reason the code is constantly drawing a line upon compiling even though I have created a proper if structure which tells it when to draw or not ... |
Sep 21, 2016 at 1:50am
[1 reply] : That's cause the cases are testing true and control is basically 'bypa... (by Uk Marine)
|
ofstream %appdata% |
So i've this part of code: ofstream file; file.open("C:\\Users\\Mario\\AppData\\Roaming\\DoDLog.log", ios::out | ios::app); obviously this will work only... |
Sep 20, 2016 at 7:09pm
[1 reply] : Try this instead: int main () { string path; ofstream file;... (by AbstractionAnon)
|
by Konstantinos
Run a debugger on MinGW compiler
|
Hi all. I create many programs written in C++, using MinGW compiler, (especially with Qt) but I want to deepen on compiling. For me this is the most beautiful p... |
Sep 17, 2016 at 7:32pm
[no replies]
|
by Jopa1351
simple program not compiling
|
I installed visual studio 2015 I generated an empy win32 c++ project It is exactly as this: #include <string> int main() { return 0; } In compilatio... |
Sep 17, 2016 at 12:07pm
[3 replies] Last: Try using an empty project rather than an Win32 project. I think Win32... (by orangepeel367)
|
by rabster
Opening/Reading a file from windows explorer.
|
Recently I have been trying to make a save and load system for the program I am making. For that reason, I thought that the proper and more useful way would be ... |
Sep 16, 2016 at 4:51am
[no replies]
|
by msalsal
How to catch underlying clipboard mechanism used by special apps?
|
Hi, I am developing a program to catch the 'PASTE' requests done by any program/process running under Windows desktop to prevent unauthorized copy requests. ... |
Sep 15, 2016 at 9:56pm
[1 reply] : https://msdn.microsoft.com/en-us/library/windows/desktop/aa365574(v=vs... (by ScottScott)
|
by Albos
Alien shot game
|
I saw this tutorial on Youtube, how a guy made the snake game to be played on the console. Then I had an idea to make a game myself (just to understand the logi... |
Sep 15, 2016 at 7:52am
[no replies]
|
HELP |
I have errors saying identifier "pi" is undefined. I also get this for radius height and others. Can someone tell me what I'm missing? #include <iostream>... |
Sep 14, 2016 at 7:09pm
[6 replies] Last: Thanks so much! :) (by closed account ENhkSL3A)
|
using winsock with public IP |
So i created my winsock tcp server and client running at the port 270 Everything works fine using the local address 127.0.0.1 but when i try (using 2 different... |
Sep 14, 2016 at 4:55pm
[3 replies] Last: Pointing a DMZ to a PC opens that computer to all incoming packets fro... (by AbstractionAnon)
|
by robmoore675
Conditionals in conditionals not working
|
Making a gag-gift program for a friend... the programming follows. if (turn1lukas = 1) { int turn1lukascounter; cout << "Sorry. You lack the blue mana.\n... |
Sep 14, 2016 at 4:52pm
[2 replies] Last: What does that do? It declares an array of 50 characters. And w... (by AbstractionAnon)
|
by ilovenoodles
set icon application
|
Hello, im trying to set a new icon for my application. However i tried several files, and it seems the icon does not update well on "file explorer" in windows... |
Sep 13, 2016 at 7:08pm
[3 replies] Last: When using an application defined icon you have to specify the module'... (by closed account E0p9LyTq)
|
wxSmith - "wchar_t must be available" |
Firstly apologies if this is in the wrong forum. I have some experience in C++ but I am brand new to trying to make a wxSmith GUI. I followed some instruc... |
Sep 13, 2016 at 7:59am
[2 replies] Last: Yer I am using MinGW, i'm all pretty new to this but I think I have do... (by tonyhibbert420)
|