Search Result

Collapse
31 results in 0.0058 seconds.
Keywords
Members
Tags
visual studio
  •  

  • Total No. of errors defined in .Net Framework 4.0

    Hi friends
    I want to know that how many total no of errors are defined in .net framework 4.0 or in c#. I know this is somewhat nonsense question but i say that whenever we do some wrong in VS it show errors,so it must be defined somewhere so can i get a listing of total errors in .Net 4.0
    See more | Go to post

  • shockna1
    started a topic Strange behavior with Visual Studio

    Strange behavior with Visual Studio

    Long story short I am writing a compiler, and for some reason I am getting some vary strange errors which make no sense at all. I'm almost sure it has nothing to do with my code. I do have quite a few plugins is it possible that that is the cause?

    Ok so I guess I should explain some of the errors I'm getting so to start off here is my main method.

    Code:
    private static void Main(string[] args)
    {
        string
    ...
    See more | Go to post

  • Database table gets deleted in VS2010 everytime I shut down PC

    I am using Visual Studio 2010 for ASP.Net web development. I am newbie in web development and using VS. I am making a website which requires storing user information in database. Here are the steps I followed for connecting

    1. Open Server Explorer
    2. Add new connection (I am using Microsoft SQL Server connection)
    3. Select a server from the drop down list of servers
    4. Windows authentication.
    5. Select database...
    See more | Go to post

  • How to fill the grid/panel with the selected images from ListBox multiple selection

    Hi,
    I can only bind 1 item even if I selected more than 1 item from my ListBox. Every time I select another item, my uniformGrid(gri d to display selected items) will only display the first selection not the other selected items.

    My uniformGrid has 2 rows and 2 columns. I just want to fill them with my selected items(i.e. image) from my ListBox.
    Problem Summary:
    I just like to know how to fill any grid/uniformGrid/Stackpanel...
    See more | Go to post

  • Serialization happening in Debug mode but not in Run mode

    Hi,

    I have written a script task in SSIS which serializes a list of class having properties. Issue I am facing is the code runs fine in Debug mode and writes the XML file with data, but executes without writing XML in run mode.

    Also tested the same code in VS 2008 and works well in both Debug and Run.

    Please help.Language is VB.NET
    See more | Go to post
    Last edited by vaibhav28; Oct 7 '11, 04:25 PM. Reason: More info

  • DisplayFormat/DisplayStyle property of TextBox (Visual Studio 2010, .Net Framework 4)

    Is there any predefined property by which I can set the DisplayFormat/DisplayStyle of a textbox? Suppose I want a textbox to hold the actual value 888888888888.88 and show it formatted as 888,888,888,888 .88. In short it should hold 'Double' data type value and show it with thousand separators and decimal places upto two digits. If text is cleared from the textbox, it should have 0 as value and 0.00 as displayed value. Also the number of digits in...
    See more | Go to post

  • Why MSBuild looks for pdb files when it is building an installshield project?

    I have added a basic MSI project to my VS2010 solution. The VS solution contains several projects. When I include the primary output of some of the projects to my MSI project, the solution builds fine on my machine, but when I check in my code and request a build using TFS then it doesn't build and generates the following error:

    C:\Program Files\MSBuild\I nstallShield\20 11\InstallShiel d.targets (68): OutputGroups item "e:\BldTmp\2\My Project\My...
    See more | Go to post

  • when InstallShield 2011 premier integrated in VS2010 .NET dependencies are not added

    I have added an IS2011 project to my existing VS2010 solution. My VS solution contains several projects. I have added the primary output of the main project to IS2011. When the IS2011 project builds it sometimes adds the .NET dependencies and sometimes gives warning that cannot find the dependencies. it produces build warning 6248. I spent a lot of time searching for this problem and found the following link on flexera software website but it wasn't...
    See more | Go to post

  • maheshwag
    started a topic A Bug Related To Form Constructor

    A Bug Related To Form Constructor

    Passing a reference to the Form Constructor is it a Bug?

    e.g.

    Code:
    Form4 form4
    Public Form1(Form4 form4)
    {
     this.form4=form4;
     InitializeComponent();
    
    }
    it's cause a "Overload Method Error".
    See more | Go to post
    Last edited by Niheel; Jun 19 '11, 04:21 PM.

  • Integrate vb.net and vc++ in vs2005

    Hello again...
    i am here again to disturb u!!!!!!!!!

    I have two projects made in vc++ & vb.net of visual studio 2005

    now i a third project in vb that integrates above two.

    I HAVE SEARCHED GOOGLE and result is negative
    See more | Go to post

  • How to create a play and stop button for a flash video?

    Hi all,

    I have embedded a flash video into the website I am creating on Visual Studio in C# but I am unsure how to create a button that with play and pause the video. Help?

    Thanks in advance!
    See more | Go to post

  • maheshwag
    started a topic Alteration In Winform Designs Mode

    Alteration In Winform Designs Mode

    I have designed winform with several controls and ready for run. It's work fine but now I wants to add panel on it with docking. how can i do it?.

    In short after design the winform is it possible to add panel on docking with retrive control on it?.
    See more | Go to post

  • How to code a Kill Switch (to limit access to program)

    Hi, I hope you can help me. I have a program I am developing and I want to be able to limit the time or the amount of times a user can access it. Someone I know wants to try the program out; however, I do not want them to have full access to it until we have come to an agreement. Is there a way to limit the amount of times or the timeframe the program can be run? For example, allow the program to be run 50 times or until a certain date.
    ...
    See more | Go to post

  • maheshwag
    started a topic How to copy forms for showing other as demo

    How to copy forms for showing other as demo

    I am working with VS-2005 and some time it's necessary to copy particulars forms and paste with asking question forum to showing demo and explain problem with.

    I wants to know how can i do that?
    See more | Go to post

  • SQL Insert Error Through Runtime Control In FLP

    am using C#, VS-2005, and SQL-2000

    am trying to insert into sql database via following.

    Code:
    StringBuilder sb = null;
    sb = new StringBuilder();
    sb.Append("insert into dummy(name,amount)values");
    
    foreach (Control ctl in this.flowLayoutPanel1.Controls) 
    {
       if (ctl.Name.Contains("tb") && ctl is TextBox) 
       {
          sb.Append(ctl.Text);
    ...
    See more | Go to post
Working...