- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 4
- Posts with Downvotes
- 3
- Downvoting Members
- 4
11 Posted Topics
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 …
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 …
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 …
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 …
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) …
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.
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 …
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 …
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.
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.
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 …
The End.
themaster