- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
16 Posted Topics
Re: [CODE]dim totprice as decimal totprice= Val(txtprice.Text) * Val(txtquantity.Text) txttotal.Text=totprice[/CODE] | |
Re: Its a matter of arranging the code . You have everything needed for the solution. | |
Re: Use FormClosing event. | |
Hi, I am trying to find a solution to read the packet destination for an internet connection through wifi. I am able to do the same for a lan connection using packet sniffer example. But the same is not working for wifi connection. [CODE] mainSocket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.IP); … | |
Hi, i have created a batch file for uninstall a c# application. [code] @echo off @msiexec /qr /x {********}[/code]But when the user click the uninstall option, a command window is poping up. I searched in net for a solution, but didnt get any solution. Please help | |
Hi , i am creating a consol application. In this, when ever an error comes, i neeed to pop up a message. So i used messagebxo.show. For this i have added [B][COLOR="Green"][COLOR="green"][COLOR="green"][COLOR="Red"]using System.Windows.Forms;[/COLOR][/COLOR][/COLOR][/COLOR][/B]. but i am geting the follwing error. I have made the output type for the application as … | |
I have created a consol application . I want to run application from a usb in background mode. I created an autoexe.bat file with following content [code] @echo off ConsoleApplication1.exe[/code] But when the usb is plugged in, [LIST] [*] run autoexe option is not coming [/LIST] [LIST] [*] The command … | |
Hi, My application needs to run the command prompt with admin privilage . ie with the same effect when we select start-> all program--> accessories--> right click on command prompt --> run as administrator. Here is the current code i have for using command prompt from c# [code] static void … | |
Hi, i have created an application and i want to run this application from a usb. I have copied the exe found in the debug folder to the usb and then i need to connect the usb in another computer . there i need to run the program from usb. … | |
Hi , i want to write a file to C:\\Program Files\\ using c# Here is what i have [code] string currentsnap = "C:\\Program Files\\currentsnap.txt"; commandtorun("route print > " + currentsnap); [/code] command to run funtion is given below [code] private static void [B][COLOR="Red"]commandtorun[/COLOR][/B](string commandexecuted) { string currentstatus; ProcessStartInfo startInfo = … | |
Hi, My application needs to run without any window poping up. Also the application needs to detect the shutdown from computer. Based on the input from this forum, i have used a form in the appliction. But i want this form to be hide from the user. Is there a … | |
Hi, I have an application and this application needs to close when the window shutdown happen. How can i detect that the system is shutting down from a C# program | |
Hi , I have two text files. madavas1.txt and madax3.txt. There are different values in the files. I want a file which gives the difference between the commen value based on the fields below Gateway( please refer to the txt file attached)[code] new txt = madavas1.txt - madax3.txt.[/code] for Eg: … | |
Hi, in order to organise the functions based on its usage, i want to add a new code file to the project. I tried to add a new code file and gave a name to it and then wrote a function in it . This function is called from another … | |
Hi all, I am new to c#. I am trying to read a text and find a string from that text file. I want to get the text between two particular line number . Intially i want to get two particular string's line number . then the text between these … | |
Hi everyone. I am trying to use MScomm in vb6 throught Modem. There are two computers , both are connected through dial up modem. I want to send a file from first computer to the other. First Computer dials second computer to make connection. I am able to get a … |
The End.