
please wait
by DaSpirit
Treeview Image not working
|
Hey, I am using Win32, C++. My code is not working. It is the following: hTree = CreateWindowEx(0,WC_TREEVIEW,_T(""),WS_VISIBLE|WS_CHILD|WS_BORDER|WS_HSCROLL ... |
Mar 26, 2011 at 2:56am
[1 reply] : Sorry, I got it. For anyone who wants to know, just change TB_SETIMAGE... (by DaSpirit)
|
by Brandonm
XmlWriterSettings not working
|
Hi guys, Was wondering if anyone could point me in the right direction with my issue here. The code below when compiled gives the following error syntax erro... |
Mar 25, 2011 at 11:00pm
[3 replies] Last: Removing the gcnew worked, thanks coder777 (by Brandonm)
|
by baharai
reading mat file in vc++ program
|
Hi, I wanna to read a .mat file in a simple vc++ program: #include "stdafx.h" #include "mat.h" #pragma comment(lib, "libmat.lib") #pragma comment(lib,... |
Mar 25, 2011 at 8:04pm
[3 replies] Last: @ Computergeek01 MATLAB has been installed it automatically. How can I... (by baharai)
|
Which SDK should I use for windows programming? |
http://msdn.microsoft.com/en-us/library/ff381409(v=VS.85).aspx I tried to compile the codes above with Code::Blocks, but it can't be done. undefined referenc... |
Mar 25, 2011 at 3:17pm
[10 replies] Last: Thank you all very much. I'll look into it. (by alexanderswang)
|
by Ramses12
How to display a tab control?
|
Hi! I'm trying to make a simple tab control with two tabs display in the window, but no matter how I do it, it won't show up. I've consulted the MSND documen... |
Mar 25, 2011 at 1:38pm
[11 replies] Last: Thanks a lot guestgulkan, modoran and hanst99. The problem was solved.... (by Ramses12)
|
by minime
Visual Studio 2008 STATUS_STACK_BUFFER_OVERRUN
|
I've written some win32 (not managed) code which appears to have an intermittent error in it, however I am unable to track down where. Whenever I run the progr... |
Mar 25, 2011 at 7:03am
[9 replies] Last: Thanks for all the help guys. It appears the error was due to a buffer... (by minime)
|
by kirenemook12
how to read the contents of a textbox into a std::string
|
hello every one i am making a program what requires that the user types in some text in a textbox. the problem is, how do i get that text from the textbox int... |
Mar 24, 2011 at 5:33pm
[14 replies] Last: thank you all very much, it worked. reading a textbox is very importan... (by kirenemook12)
|
Visual Basic help |
I have a web browser program that I have put on a CD. I want to find a way when i open it it needs to open an html file i have specified on the CD with it. I ha... |
Mar 24, 2011 at 11:36am
[4 replies] Last: Your browser will of course depend on .NET so your users will need acc... (by anonymous23323124)
|
by rem45acp
Properly using SetWindowLong()...
|
Hi, In an effort to avoid global variables in my program, im trying to use SetWindowLong to store a pointer to an instance of a normal class. I create an ins... |
Mar 24, 2011 at 7:11am
[18 replies] Last: OK, thanks. (by Abramus)
|
by v8n3t
Initialzing structs from Windows API.
|
Hello all, I am having a bit of a problem working with very simple c++ rules regarding the Windows API functions. I understand why a struct must be initialize... |
Mar 24, 2011 at 1:41am
[2 replies] Last: Yes I see the difference and thank you very much. I also knew about t... (by v8n3t)
|
by v8n3t
TEXT() function
|
Hello all, I am posting here because I can not find the documentation on a function TEXT(). I am using it in my CreateFile() function as arg1 but can not ... |
Mar 23, 2011 at 4:42pm
[2 replies] Last: Thank you very much! (by v8n3t)
|
by Bries Guy
sting
|
std::string String = {...}; this string hold 50 elements when i have it run the program i have a variable access a curtain location. int Word = String ; I ... |
Mar 23, 2011 at 5:28am
[2 replies] Last: C arrays are really just pointers to the first element of the array. ... (by webJose)
|
by DaSpirit
Scrollbar always visible on treeview
|
I am trying to make the scrollbar always visible on my treeview. I am using win32. My code is as follows: hTree = CreateWindowEx(0,WC_TREEVIEW,_T(""),WS_VISIBL... |
Mar 23, 2011 at 2:55am
[1 reply] : Looking at the Microsoft docs there doesn't appear to be an attribute ... (by mof)
|
by ty98
Help with the butten!!!
|
I need to know hot to make a butten in a win32 program. Dot you have eny ideas? thanks for replys! |
Mar 22, 2011 at 8:32pm
[14 replies] Last: +1 quirkyusername while unrelated to this topic, that is one of the fu... (by anonymous23323124)
|
by ty98
fun prank
|
thi is the bigest prank that I know of. #include <windows.h> int main() { beep(50, 2000); MessaeBox (NULL,. "trojen horse detected" , "prank" ,0; SetCu... |
Mar 22, 2011 at 7:39pm
[9 replies] Last: so dose it repet Kiana? (by ty98)
|
by ajitm
how to get status of work performed by thread
|
Hi Friends Your help will be very crucial for me. As I am very new for thread programming, I am in big trouble around it. I have a simple application in C# a... |
Mar 22, 2011 at 10:37am
[no replies]
|
by camouser
Template Linked Lists
|
I have been working on an assignment in my CSII class over Linked Lists in template classes and would like someone to take a look at this. (I am not asking anyo... |
Mar 22, 2011 at 7:31am
[2 replies] Last: Ah, I knew i missed something there. Question about the nodePtr: cou... (by camouser)
|
IDI_APPLICATION .ico File |
Hello everyone. I need the .ico file for the IDI_APPLICATION icon. I spent some time on google and in my CodeBlocks and Visual Studio folders looking around and... |
Mar 22, 2011 at 12:19am
[1 reply] : Search your computer for: "app.ico" or create one like it using your f... (by matsom)
|
by swbluto
Capturing and calling Windows events
|
Does anyone know how to intercept events generated from clicking a button on a Windows program, such that I could call that event within my own program? For ... |
Mar 21, 2011 at 8:36pm
[5 replies] Last: > Hooks has nothing to do with that, a simple SendMessage() "inter... (by george135)
|
by ajitm
Showing a progress bar as a progress of thread executing in the c++ dll
|
Hi Friends I am working with C#, C++(dll) based project. I am trying to show a progress bar as a progress of thread executing in the c++ dll. I want t... |
Mar 21, 2011 at 2:53pm
[no replies]
|