blah blah blah is here! blah blah » Close

0
votes
1 answers

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??? :(

1
votes
2 answers

1000 separator as in Excel.

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????

1
votes
3 answers

FileSystemWatcher sentenced to Death.

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 ...

1
votes
11 answers

Fetch string value C#

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& ...

1
votes
4 answers

Adding two string values C#

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"; ...

0
votes
0 answers

Public Constructor C#

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") ...

0
votes
1 answers

xml & multiple users.

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 ...

0
votes
1 answers

Combobox Items.

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 ...

0
votes
1 answers

File.IO error

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 ...

0
votes
0 answers

"comment" is (now) moving the post to top.

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 ...

1
votes
0 answers

My Calculator

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 ...

1
votes
1 answers

File overwrite dialogue

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 ...

0
votes
1 answers

Timer Control's progress?????

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 ...

0
votes
2 answers

DGV Cell Format not working

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 ...

0
votes
1 answers

Energy Efficent Applications.

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 ...

Feedback