Posts Tagged ‘Create’

What Should I To Stop Create The Automatic Create Of Dll Files?

Tuesday, January 19th, 2010

Please explain your question in greater detail.
What program automatically creates DLLs?

What Program Should I Use To Create Dll Files?

Sunday, December 27th, 2009

DLL files? I don’t think that you really know what you are getting into. You would create Dynamic Link Librariy files from Visual Basic, Visual Studio, C++ or other programming environment.
But if you do understand what I just told you, you’d already know the answer.
Good luck and Happy Computing!

:ook Its Simple I Cant Create A 2nd Mail Address. What Can I Do? If I Have To Drop Yahoo As My Isp Then I Will

Friday, December 25th, 2009

I cannot CREATE a second e mail address. I want to create a 2nd address. The sys stops me every time with an error msg. I have just created a 2nd verizon address with same name, what can I do???

How Do I Create An .exe Registry Cleaner Disc Bootable?

Saturday, December 12th, 2009

I have to run a registry cleaner on my laptop because windows wont run. (winload.exe error). I Downloaded Little Registry Cleaner from sourceforge but it’s an executable file (.exe). How do I burn it to disc so it will auto run when I put it in the laptop?

How Do I Create And Use A Dll?

Sunday, December 6th, 2009

I am use to writing command line based C code. I want to retain the code in proc1 (except for printf, although it could become a message box) but replace main with a simple GUI using MS VC. How do I make proc1 into a DLL? And how do I write C++ code to use that DLL?
extern void proc1(char *);
main()
{
char mystr[128]=”output.txt”;
char *str1;
str1=&mystr[0];
proc1(str1);
}
#include
#include
void proc1(char *instr)
{
FILE *outptr;
outptr=fopen(instr,”w”);
if(outptr==NULL)
{
printf(“Could NOT create file (%s)\n”,instr);
exit(0);
}
else
{
fprintf(outptr,”Add some text\n”);
fprintf(outptr,”This is the file: %s\n”,instr);
}
printf(“File written: [%s]\n”,instr);
}

How To Create An Object To A Class Present In A Dll ?

Sunday, November 22nd, 2009

In my VC++ win32 application,I was successful in loading a dll and also successful in using the methods of it directly.
But my present problem lies in creating objects to the classes that are present in that dll and accessing the methods in that class through the created object.
kindly provide me any sample code which does this.
thnx in advance.
Regards,
sunny.

How Do You Create A .dll In Visual Studio 2008?

Wednesday, October 28th, 2009

Language is C#.
I have an object that I woudl like to turn into a .dll. How?

How To Create Setup File In Visual Basic ?

Thursday, October 15th, 2009

We doing application project in visual basic? I want to create the setup file for my project?
I want to know what are the .dll file and Ocx file need, to run my project on differenct system without install visual basic 6.0?

When Trying To Create Dvd…an Error Came Up “nereovision.exe –aplication Error?

Monday, October 5th, 2009

nereovision.exe –aplication error
the instruction at “0×0052f1e4″ refeenced memory at “0×00000004″ the memory could not not be “read ”
any idead what this is about?
plse help???

I Know C And Visual Basic Programming, How Do I Create A Dll File That I Could Use In The Vb Programs?

Thursday, September 24th, 2009

I want to experiment on my visual basic program using a link to simplify my codes and that is through using DLL files. I want my DLL files to be made using C/C++ program. After creating a C program, I want to make a DLL file out of it and use this to my VB application.