blah blah blah is here! blah blah » Close

0
votes
1 answers

Auto Refresh WinForms

Hey friends, How're u all doing? I wanted to know ur ideas about how can I refresh all open winforms of my application. Let's say (Example): MainPage of my application is having "Login", All SubForms are having [b]LoginChe ...

0
votes
1 answers

Debugging is DEAD, where next?

As we all know that this site is DEAD, so where do u ppl suggest to move next? I saw this: http://social.msdn.microsoft.com/forums/en-US/categories/ and bet ppl are replying frequently to posts. Any Better place?

0
votes
0 answers

1year is not enough for u?

http://www.debugging.com/feedback/23856 Even after more then 1yr, debugging is still not having a search pane here....... ?????

0
votes
0 answers

RSS (apsx) error.....

I'm trying to creat a RSS page, but........... What's the problem in this error????? [code]Server Error in '/' Application. -------------------------------------------------------------------------------- Parser Error Description: ...

0
votes
0 answers

Formatting Font in RichTextbox (C#)

I'm having this line:[code]richTextBox1.Text = richTextBox1.Text + "Patient's Name : " + [b]patient.Name[/b] + "\n";[/code] Which fetches the name from my xml file. I want to Color & Bold the name part only. But ...

0
votes
1 answers

disgusting mailer

I've just started as a volnteer for Rotary international group (non profit) in my area. They've asked me to help them with finding a shortcut form sending newsletter of their organization. Please suggest some web code/ windows form code ...

1
votes
1 answers

importing a cell value from excel to winform(textbox)

Hey friends, I know it had been really long time since I'd posted any query here. don't have time to explain the reaon now... but I need help regarding: I need to import & export a cell value into my textbox field in my windows fo ...

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

Feedback