Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
4
4 Commented Posts
0 Endorsements
Ranked #3K

11 Posted Topics

Member Avatar for francisabey

If you have Visual Studio 2008 Express or any Visual Studio 2008 Edition, you can just use Clipboard.Clear() with VB,Clipboard.Clear(); with C#. You can put these functions under the Form1_Load method and close the application using Application.Exit() for VB and Application.Exit(); for C#. This will clear the clipboard and close …

Member Avatar for opcode
0
327
Member Avatar for sarganaa

You can use two different variables. For example: Lets have a text box, and an "Ok" button . Whenever the "Ok" button is pressed the entered data is stored into the variable and then use [code=csharp][\icode]textbox1.Clear()[\icode] assuming that the name of the text box is textbox1. This command will empty …

Member Avatar for sarganaa
0
2K
Member Avatar for themaster

I had created a Notepad kind of text editor using Visual C# 2008 Express Edition. When I save a text file through it, and when I click the icon of the text file I saved, it opens in Windows Default Notepad. Is it possible that I can make my text …

Member Avatar for themaster
0
143
Member Avatar for themaster

Does anyone know how to give a GUI look to your C++ "Console Application". I cannot use Win32 API or any other template except the console application because I use Turbo C++ 3.0 IDE for development and I want my Application to be platform independent while using WIN32 API will …

Member Avatar for Ancient Dragon
0
313
Member Avatar for seemant_sun

It is always better to put the statements in if conditions in brackets. And start using else if's. [CODE=c] # include<stdio.h> # include<conio.h> void main() { int color; clrscr(); printf("Enter any number:\n"); scanf("%d",&color); if(color ==1) { printf("\nviolet"); } else if(color==2) { printf("\nindigo"); } else if(color==4) { printf("\nblue"); } else if(color==8) …

Member Avatar for William Hemsworth
0
389
Member Avatar for themaster

Does anyone know how many In-Built Compilers does Windows have. I know about Batch Files,VBScript,JavaScript,HTML(including .mht,htm etc). Are there any others except these. Compilation through command prompt will do.

Member Avatar for MidiMagic
0
65
Member Avatar for Kiba Ookami

I would suggest you to use the function getch(); in the header file conio.h . If you do not have the conio.h file you can downoad Visual C++ Express or use the bsic Turbo C++ 3.0. I use the Turbo C++ 3.0(dont judge it by graphics) as its easier to …

Member Avatar for Stefano Mtangoo
0
253
Member Avatar for themaster

I am currently trying to make a setup for a project where no temporary files or any files are stored except the ones which I want to. When I run the setup the files should go to their respective locations they were in the original computer where the product was …

Member Avatar for serkan sendur
0
62
Member Avatar for themaster

I am developing a notepad using Visual C# but cant figure out which function to use among those to print the text in the main text box through a printer.

Member Avatar for ddanbe
0
688
Member Avatar for themaster

Is there a possibility of a software that converts .exe files to .bin files. I know that it can be done using command prompt but I could not understand the method.

Member Avatar for gerbil
0
233
Member Avatar for themaster

I have a .iso disk image file which was created by cosmos OS during the build(please ignore if you don't know what cosmos is). A disk image was created and there were some files on it. Their names were:- ISOLINUX.bin OUTPUT.bin BOOT.CAT ISOLINUX.CFG MBOOT.C32 I want to replace OUTPUT.BIN with …

0
48

The End.