But at certain stage ... it could overflow too! then? for example.. in case of Amazon or any service like that...
Muhammad Qasim Pasta
Posts
-
Identity Field -
How to reset identity(ID) fieldI agree... but what about the relationships and constraints ... if I have a primary key of identity column .. then that statement will generate value that already exists in my table.... m I right?
-
Identity FieldIf we have an identity field wit data type of BigInt ... but at certain stage it will overflow ... then what will happen and how can prevent for such scenario?
-
Multi Lingual WebsiteYah, I agree too. But if you have lot of statics pages with large text then you must create different pages for different languages.
-
How to manipulate the displaying of the "From" email addresstry MailAddress
-
SQL 2005 Connection ProblemDid you try windows authentication?
-
Display App in taskbar when visible = falseA bit modification for my last reply ... you can achieve by VisibleChanged Event of form too!!! private void Form2_VisibleChanged(object sender, EventArgs e) { if(this.Visible == false) { this.Visible = true; this.WindowState = FormWindowState.Minimized; } }
-
Display App in taskbar when visible = falseyou can achieve it by overriding OnVisibleChanged. In overrided method, you can force to minimize whenever set visible to false protected override void OnVisibleChanged(EventArgs e) { if(this.Visible == false) { this.Visible = true; this.WindowState = FormWindowState.Minimized; } else base.OnVisibleChanged(e); }
-
How to implement windows application with OPEN FILE DIALOG & SAVE FILE DIALOGcan you tell then what does it show?? One thing I found in your code is that... your code for declaring SaveDialog object is SaveFileDialog dlg = new SaveFileDialog(); where you are using .. saveFileDialog1.Title = "Specify Destination Filename"; saveFileDialog1.Filter = "Text Files|*.txt"; saveFileDialog1.OverwritePrompt = true; saveFileDialog1.FilterIndex = 1; if (saveFileDialog1.ShowDialog() != DialogResult.Cancel) { textBox1.Text = saveFileDialog1.FileName; } .... it seems you are also using another Object of SaveFileDialog, that you added in your form from toolbox (as naming convention suggest)...
-
Synchronizing the system clock -
Problem with VS2003 and Crystal ReportI am using Crystal Report 10 with VS 2003... but whenever I view report it shows error of free license .... but it shows in Release Mode ..... I googled , but solution of change in registry does not work ... any body have idea to solve it???
-
Crystal reports problem with C#I am having same problem ... I am using Crystal Report 10 with VS2003. Surprisingly, report shows on Release Mode but not in Debug Mode :(( Does any one know solution of this problem???? MQPASTA Remember: You can't see every one but every one can