59 Posted Topics
Re: this is not the best practice but it gets the job done if you need it fast. [CODE] ArrayList ar1 = new ArrayList(); ArrayList ar2 = new ArrayList(); ArrayList ar3 = new ArrayList(); ArrayList ar4 = new ArrayList(); ArrayList ar5 = new ArrayList(); ArrayList ar6 = new ArrayList(); string filePath … | |
Re: Check here if it helps: [URL="http://www.c-sharpcorner.com/UploadFile/suparba/MULTIDATAGRIDROW107282005111750AM/MULTIDATAGRIDROW1.aspx"]http://www.c-sharpcorner.com/UploadFile/suparba/MULTIDATAGRIDROW107282005111750AM/MULTIDATAGRIDROW1.aspx[/URL] or check here: [URL="http://stackoverflow.com/questions/2953511/wpf-datagrid-selecteditems-keeping-multiple-selected-while-left-clicking"]http://stackoverflow.com/questions/2953511/wpf-datagrid-selecteditems-keeping-multiple-selected-while-left-clicking[/URL] | |
Re: [CODE] [B]Book mybook = new Book();[/B] public void checkRatio() { const double RATE = .10; // The price-to-pages ratio is determined by checking the following: price > RATE * pages where RATE = 0.10 if (Price > (RATE * NumPages)) { [B]mybook[/B].validRatio = true; } // Throw a BookException if … | |
Re: [QUOTE=nore;1549804]Hello all, i want to make icon (shortcut to run my program) on System Tray (usually on Right bottom) with code, i'm using visual studio 2008 c#, on classlibrary project, thanks before :D[/QUOTE] add a NotifyIcon control to the form. Then you can code the Form_Resize event to hide the … | |
Re: [QUOTE=sushanth08;1548369]hello, I have one text box and button common to 2 tabs containingdatagridviews each.when i click on the button in tab page 1 some data will fill up the text box and same for tabpage 2. the issue is if i click the button again in tabpage 2,then new values … | |
Re: [QUOTE=samueal;1549631]Hi, I am using HTTPRequest and HTTPResponse to get the page source of a site. and i'm getting a warning message "Enable JavaScript to view your site". Is there any request i should add to enable JavaScript[/QUOTE] since visual studio uses ie engine try enabling it in internet explorer and … | |
Re: depends on what you're trying to achieve. you can populate comboboxes with values, u can use listview (choose detail view) | |
Hy, I have the following application: - server application that uses a digital certificate to login to a website; first time i run the app it requires the pin number from the token... certificate is stored on token); i use X509CertificateUI to select the certificate and it pops-up the token … | |
Hy. I'm trying to do a select from multiple databases and tables for an occurence. let's say i have databases db1, db2 and db3. Each have the following tables t1, t2, t3. And in each table there is a field named id which i want to select and a field … |
The End.