April 26th, 2010 04:49 AM
consider this link:
http://www.google.com/search?hl=en&source=hp&q=c%23+console+application&rlz=1R2ASUS_en
try it yourself step by step!
April 25th, 2010 01:03 AM
Touraj:
Version 2010 (last release)
April 25th, 2010 12:55 AM
somewhat its' possible to convert a win app to web app with almost all the features by using ASP.NET AJAX ToolKit for .net 2.0 or 3.5.
you need to know how to work with AJAX toolkit. basicly it is...
October 24th, 2009 03:55 AM
thanks for the link.
but i need a solution that i can implement it with both java code and c++.
in my java code i use aspect and i can not invoke c++ dll when i use aspect. so i should write code...
October 19th, 2009 03:33 AM
how to get mac address of the system.
my OS is linux fedora.
i have done it already in java but i don't know how to get MAC ADDress with C++.
October 18th, 2009 02:53 AM
How i can get CPU ID.
the OS i use is Fedora 10.
September 30th, 2009 03:15 AM
for me this feature that c++ allows default arguments on function parameters is good also.
August 31st, 2009 05:30 AM
for one corner i calculated the coordination and made the upper left corner round-shaped; you can calculate yourself coordination for other three corners and then make them look rounded just adding a...
August 16th, 2009 07:23 AM
i revised the code a little for you:
using System;
using System.Collections.Generic;
using System.Text;
namespace Recursive
{
August 16th, 2009 04:33 AM
you only need some math calculation to get free space in GB:
private void button1_Click(object sender, EventArgs e)
{
ManagementObject disk = new...
August 11th, 2009 06:36 AM
also some times asp.net server controls create client-side codes for example validation controls that for security create both server and client-side codes for validation.
August 11th, 2009 06:23 AM
in this case first thing i do is copy and pase the error number and message to google and in most cases i redirect to microsft site that describe the error and ways to fix it and maybe workaround of...
August 11th, 2009 06:19 AM
session is server side base and will be expired when user close explorer.
better choice is cookie but it can be disabled bu users how ever these days most users have it enabled.
August 11th, 2009 06:05 AM
don't look for it there is no such event. for problems like this you need using windos APIs or some workaround and creative ways. i have posted some solution for a problem like this for two listbox...
August 11th, 2009 05:59 AM
it deponds on kind of synchronization you have used. for example performance of ReaderWriterLockSlim is better than ReaderWriterLock becuase of the bug in ReaderWriterLock. so tweeking your multi...
August 11th, 2009 05:46 AM
your application should be built on a thread apartment to interact with os. so you need to use [STAThread] attribute for your main method.
August 10th, 2009 01:40 AM
yes it is not necessary to use GridView for this problem.
i wrote this code for you:
private void button1_Click(object sender, EventArgs e)
{
string number =...
August 8th, 2009 01:17 AM
you should add flash activex to your project then using its properties and methods.
also there are commercial plugins for flash in the web that can do a lot of good job for you.
...