
please wait
by Matevsz
Keylogger in V.B
|
Hello, I created a keylogger in vb and I have a bug that does not show any letters, cyft, Shift'ów, enter'ów like. Here is the code to write: Private Sub ... |
Jan 11, 2015 at 10:57am
[5 replies] Last: ok but if anyone knows what's wrong then please say :) (by Matevsz)
|
by Cambalinho
win32 - using the WM_MENUSELECT message
|
i'm trying use the WM_MENUSELECT message for get mouse leave and mouse enter. for mouse enter i use: if(((HIWORD(wParam) & MF_HILITE) || (HIWORD(wParam) & MF... |
Jan 10, 2015 at 2:58pm
[no replies]
|
by erogol
How can I compile a c++ library into a single file that is calleble from any external project?
|
I have a c++ library (https://github.com/terrychenism/caffe-windows-cudnn) including different bunchs of c++ headers and cpp files. It also includes 3rd party l... |
Jan 10, 2015 at 12:39pm
[1 reply] : Create a library project instead of an application project. (by kbw)
|
by SkillsXP
Vector iterator not dereferencable!
|
I got the error in the direction of this code: for(auto vo = vList.begin(); vo != vList.end(); vo++) { sdelcoord = ((*vo)); lastString = *sdel... |
Jan 10, 2015 at 11:50am
[1 reply] : vo is the value, not an iterator (by kbw)
|
loading images to window |
another problem with loading images to window is there a way to load other images(*.jpg *.png) I can seem found any function that does that Thanks a lot f... |
Jan 10, 2015 at 4:50am
[2 replies] Last: Thanks for your reply,But how can I initial those variables pvJpgImage... (by closed account 28poGNh0)
|
Error: a function type is not allowed here |
I am getting the error when defining a variable in a typedef struct. typedef struct _RPDO_DEVICE_DATA { ULONG InstanceNo; WDFQUEUE ParentQue... |
Jan 9, 2015 at 1:48am
[no replies]
|
by King Of CPP
Create a private namespace in C++
|
Hi. I want to create a namespace that supports my whole library files and classes. But i don't know how to create a namespace. Can anyone tell me how to d... |
Jan 8, 2015 at 9:24pm
[5 replies] Last: library.h: namespace namespace1 { //this is the first line of library... (by kevinkjt2000)
|
load bitmap problem |
hiiii everyone I am showing a bmp to my window with this manner case WM_CREATE: hInstance = ((LPCREATESTRUCT) lParam)−>hInstance ; ... |
Jan 8, 2015 at 7:02pm
[1 reply] : ... is like the bmp resource is saved in the program. It usually is.... (by Computergeek01)
|
by mohammedawni
how to change this html code to c++ code
|
hi how to change this code: <a href="http://www.dgg.com"><img src="http://www.kfge.com.gif" border="0" width="468" height="60"/></a> to c++ code please he... |
Jan 7, 2015 at 4:49pm
[3 replies] Last: It would be helpful if you provided a bit more detail here OP. Such as... (by Computergeek01)
|
by suis
_itoa_s equivalent in c#
|
Hi all, what is the _itoa_s() equivalent in c# ? thanks. |
Jan 7, 2015 at 11:33am
[3 replies] Last: _itoa_s(fif_ret, buffer, 2); will take the integer value of fif_re... (by closed account z05DSL3A)
|
by AceDawg45
How to use virtual function in Window procedure?
|
I have become really good at drawing stuff on the screen in D3D lately, but I tried events - and bam - new problem. I am just thankful it isn't a directx proble... |
Jan 6, 2015 at 9:41pm
[no replies]
|
by zoran404
Calling a progrm in an archive
|
To call another program (with some arguments eg input and output file) I'd usually do something like: system("path/program.exe path/input.txt path/output.txt")... |
Jan 6, 2015 at 10:25am
[1 reply] : You'd need to extract it before running it. (by kbw)
|
by AeonFlux1212
using winsock
|
Hi! Just started winsock using the tutorial on MSDN... here's where I am so far: #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #includ... |
Jan 6, 2015 at 12:09am
[3 replies] Last: Thanks for the input guys, you're both right! I tried to link ws2_32.l... (by AeonFlux1212)
|
by SkillsXP
Pointer error --> vector
|
#include <iostream> #include <string> #include <vector> using namespace std; int main(){ vector<string> vList; vList.push_back("a"); vList.push... |
Jan 5, 2015 at 4:05am
[1 reply] : That's what happens when you abuse auto , save it for the really comp... (by kbw)
|
by maxiaoguang
Weird result of strstr().
|
Hello, I am studying C with the book "Head First C". There was a code snippet on the book: #include <stdio.h> #include <string.h> char tracks = {... |
Jan 5, 2015 at 3:18am
[2 replies] Last: Many thanks for the reply. That's works. Thanks. (by maxiaoguang)
|
by kenhoward
SDL C++ lag
|
Well, first, I want to say that this is my first post on this forum. I hope I am not breaking any rule by making this post, however, I am kind of frustrated, a... |
Jan 5, 2015 at 1:19am
[3 replies] Last: After the port, if you're still having issues, post them here. I didn'... (by Avilius)
|
by cotjoey
Reading content of a .dic file - charset:binary
|
I have a .dic file that when I type # file words.dic (on Mac OS X) shows that encoding is application/octet and charset is binary. Do you know if there are a... |
Jan 4, 2015 at 3:55pm
[no replies]
|
by vxk
reducing compile time for multicore
|
is there a way similar to make : make -j3 //instead of make in visual studio where we can reduce compilation time , or vs does this by default... |
Jan 4, 2015 at 3:02pm
[2 replies] Last: Thanks! (by vxk)
|
by SkillsXP
Pointer error in vector
|
The error is "delete (*it)". #include <iostream> #include <string> #include <vector> using namespace std; int main(){ vector<string> vList; vList.push_ba... |
Jan 4, 2015 at 2:32pm
[1 reply] : delete is meant to be used on pointers to delete memory that was all... (by Peter87)
|
by cmajor28
Visual Studio 2013 Community uninstall
|
So I downloaded visual studio 2013 community and thought I'd try it out and I didn't really like it so I went to uninstall. I uninstalled the main program and t... |
Jan 3, 2015 at 8:24pm
[1 reply] : Hi, I would normally pass an complain to Microsoft as this is should ... (by closed account 13bSLyTq)
|