votes
Damn Framework 2.
I want to develop xml based desktop utilities with VS C#, but office computers r still living on Framework 2 & 3 only. How should I go ahead with this now??? :(
blah blah blah is here! blah blah » Close
I want to develop xml based desktop utilities with VS C#, but office computers r still living on Framework 2 & 3 only. How should I go ahead with this now??? :(
Have anybody implemented a 1000 separator as in Excel???? I wish that I can display the label text (int) with the 1000 separator applied to it. I mean instead of showing 2150052, the user should get 2,150,052. How can I do this????
I was trying to create a utility which should monitor a user specified drive.... but while troubleshooting I'm discovering that as I try to fetch (a particular) network drive..... my application is suffocated to death. The wait cursor (not ...
Hey, [li]I have a string value (tmpfile) in my Login Form, How can I fetch it's value into my From2????[/li] [code]string tmpfile=""; public void Button1_click() { tmpfile += Form1.Paths.logpath + comboBox1.Text + ".tmp& ...
I'm just trying to keep two string values (filename & path) separate and later trying to combine them......[code] string sourcepath = "V:\\Common\\gsvirdi\\"; string bakpath = "E:\\gsvirdi\\backup"; ...
I'm having a public const string logpath & logfile; in my Form1 I'm trying to access it in my LoginForm, like this: [code]//Create a temp file File.Create(Form1.Paths.logpath + comboBox1.Text + ".tmp") ...
Friends, I have an xml file which is populated into my datagridview (DGV) with the following code: [code]DataSet ds = new DataSet(); ds.ReadXml(Form1.Paths.filename);[/code] I wish to add Multiple user functionalit ...
I need to compare combobox items (text) with the filename. I tried doing something like this: [code]for(int x =0; x>comboBox1.Items.Count; x++) { if (comboBox1.Items[x].ToString() == filename) // something }[/code] But this is n ...
I'd used [b]System.IO;[/b] in my winform application so that I can copy files (backup original file) from one Drive to another drive using [b]File.Copy();[/b] thing. My Network Folder is having "Read/Write" access to all user ...
I just noticed that if we post a "comment", then the post climbs on "Top" position just like it used to do when we "Answer". Thx admin for the update, I feel that the only next thing left in "To-do Lis ...
I just saw that we can add Images here, so Vulpes... Here's the Calculator which I had developed with [b]ur help[/b]. Muster, Foamy my thx to u also for helping in at varoius stages. Thanks a millions to both of u for ur help...... Thi ...
I want to do something like this:[code]. . if(ShowDialog(MessageBox.Show("File already Exists, do you want to overwirte the existing file?","File Overwrite???", MessageBoxButtons.YesNo))=="Yes") . . [/code ...
In my Winform I'm having a export function. On the Export_LinkClicked event all components in my DGV is exported into a "New" xls file everytime. As u may understand that whenever the contents in DGV increases, it will take lon ...
I wanted the user to input values in "dd MMM yyyy" format Only, I'm using dataGridView1.Columns["Rel_Date"].DefaultCellStyle.Format = "dd MMM yyyy"; in Form_Load......... But somehow it's not working. I can ...
Friends, Did anybody ever created an Energy Efficent Software/Application? What things do we need to keep in mind while producing such applications? What parts/procedures can be termed as energy efficent in an application? For example ...