Trying to make a simple program in visual basic

R3W4RDZ

Registered Member
Joined
Jul 15, 2010
Messages
71
Reaction score
6
All I want the program to do is give a simple error message saying that they need to download a simple plugin pack for the program to work. That's it. Where could I go to learn this?

So pretty much its a fake program and fake plugin pack. No viruses or anything I just want them to download the (fake)plugin pack.
 
Last edited:
You can compile this with Dev-Cpp (C++)

Code:
#include <windows.h>

int CALLBACK WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)
{
MessageBox(0,"your message here", "Title here",MB_ICONWARNING);
return 0;
}
 
You can compile this with Dev-Cpp (C++)

Code:
#include <windows.h>

int CALLBACK WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)
{
MessageBox(0,"your message here", "Title here",MB_ICONWARNING);
return 0;
}


THANK YOU! But I have already made it. It was really simple with VB. All I had to do was literally drag and drop stuff from the tool box to make a fake error message! But thank you for answering my question :)
 
Ah, you could give jason666 some thanks anyway! :o
 
I always find that out from YouTube video
Posted via Mobile Device
 
Back
Top