Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Muhammad Qasim Pasta

@Muhammad Qasim Pasta
About
Posts
12
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Identity Field
    M Muhammad Qasim Pasta

    But at certain stage ... it could overflow too! then? for example.. in case of Amazon or any service like that...

    Database question

  • How to reset identity(ID) field
    M Muhammad Qasim Pasta

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

    Database database sql-server sysadmin tutorial

  • Identity Field
    M Muhammad Qasim Pasta

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

    Database question

  • Multi Lingual Website
    M Muhammad Qasim Pasta

    Yah, I agree too. But if you have lot of statics pages with large text then you must create different pages for different languages.

    C# csharp asp-net help question

  • How to manipulate the displaying of the "From" email address
    M Muhammad Qasim Pasta

    try MailAddress

    C# csharp com sysadmin json tutorial

  • SQL 2005 Connection Problem
    M Muhammad Qasim Pasta

    Did you try windows authentication?

    C# database sql-server sysadmin json help

  • Display App in taskbar when visible = false
    M Muhammad Qasim Pasta

    A 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; } }

    C# help

  • Display App in taskbar when visible = false
    M Muhammad Qasim Pasta

    you 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); }

    C# help

  • How to implement windows application with OPEN FILE DIALOG & SAVE FILE DIALOG
    M Muhammad Qasim Pasta

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

    C# csharp help tutorial

  • Synchronizing the system clock
    M Muhammad Qasim Pasta

    http://www.codeguru.com/csharp/csharp/cs\_date\_time/timeroutines/article.php/c4207/

    C# question

  • Problem with VS2003 and Crystal Report
    M Muhammad Qasim Pasta

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

    Visual Studio help visual-studio windows-admin question announcement

  • Crystal reports problem with C#
    M Muhammad Qasim Pasta

    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

    C# help csharp visual-studio question career
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups