Software Development Network Logo
  • Windows Live
  • Visual Studio
  • Visual J#
  • .NET Development
  • Visual Basic
  • Windows Vista
  • Visual C++
  • Architecture
  • Visual FoxPro
  • VS Team System
  • Windows Forms
  • SQL Server
  • Visual C#
  • Smart Device
  • Game Technologies

Software Development Network >> outtalimitz's Q&A profile

outtalimitz

Member List

Shafiq Ur Rahman - MSFT
Steve Hanzelman
tentod
GlennPierce
Roy mm
Grigori Somin MSFT
snehalppatel
Basharat shah
Jan Byvaly
JamesE
xulijie
AMasson
technoTABLET
jpv
Tumnus123
Freudi
tpreato
IDBS_James
pauleley
JimStearns
Only Title

outtalimitz's Q&A profile

  • Visual Studio Express Editions Failed to add validation event handler

    I am trying to learn ValidationWalkthrough. When I double click on Quantinity column the following error occurs: Failed to add validation event handler because of the following error: Invalid Index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX)) The system is: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: C# Express Microsoft Visual C# 2005 76544-000-0000011-00126 What I am doing wrong Marek I am trying to do the same thing & having the same problem. I found this other thread which di ...Show All

  • Windows Forms When ShowDialog() is called with a parent, memory is not released

    I have a Form with a lot of contols. What I have notice in the CLR profiler is that the form is not release after the form is closed if showdialog was called with a parent.. using(Form myForm = new myForm()) { myForm .ShowDialog(parentform); } According to the above code, myForm should have been displosed when the using statement finishes. The profiler shows that the form is kepted alive by a forms "PropetyShare". The thing is if I call ShowDialog() without the parent, the kept-alive does not occur. Any one have a good explanation Hi Paul, Based on my research with the ...Show All

  • Visual Basic Startup object - Sub Main or Form

    Hi all, I would like to know the differences between using Form vs Sub Main as startup object. Which is best way to start the application What are the pros and cons of using these methods. Thanks. Nitin. if you use sub main then you cannot enable the application framework, which enables you to app splash screens with minimal effort amogst other things. This requires the startup object to be a form. ...Show All

  • Visual Studio MsBuild Task and References

    Hi, Is there a way in MSBuild task to specify reference folder to find referenced dll if it cannot find in the referenced path specified in the csproj file which it is trying to build. To state more clearly, the way we can specify References for CSC task is there something similar or a way around. Thanks MRI This is what you can do - <Project DefaultTargets="BuildOtherProjects" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <ProjectReferences Include="commerce/Commerce.Cache/Commerce.Cache.csproj" /> </ItemGroup> <Target Name="Bu ...Show All

  • SQL Server Transfer SQL Server Objects Errors

    Hi. I'm totally new to SSIS (SP1), and I'm having a raft of troubles transferring DB's using the 'Transfer SQL Server Objects Task', which seems to be the closest replacement for the old DTS Transfer Objects tool. I'm trying to transfer a DB from an SQL Server 2000, where I only have SQL Server authentication (it's a shared hosting environment) to my local SQL Server 2005 server, where I'm logged in using Windows Authentication (although I have the same issues if I use SQL Authentication locally). Here's the list of errors I'm getting. If I don't select 'copy all tables', I receive a "table does not exist at source" error. If I d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Degraded performance when debugging MDX1.1 applications in VS2005 compared to VS2003

    Hello, I've noticed that when I'm debugging MDX1.1 applications in VS2005, they achieve a significantly lower framerate than when debugging them in VS2003. The performance decrease differs per application and seems to be somehow linked to the use of HLSL effects, as applications that use the Fixed Function Pipeline do not suffer this decrease. This morning I witnessed an extreme case of this problem with a little game that renders multiple meshes using HLSL effects. It achieved a lowly 60fps when I ran it in debug from VS2005, whereas it achieves a 550fps framerate when I just run the debug exe from Windows Explorer ...Show All

  • .NET Development objects not removing

    This is a wierd one. I have done this millions of times without any problems but for some reason, I'm facing a problem.   I have 2 forms and 1 class file which does the "low" level stuff (creating objects, setting properties and so on)   1 form is a main form and the other is an "editor" which edits the properties of a selected object. When calling the editor, I give it the object to modify and the configuration manager class in the constructor. Configuration manager is the "low" level stuff handler. Now, when objects are created, they are stored in an arraylist. When objects are modified, all that needs to be ...Show All

  • Visual Studio Team System Could WorkItems data in TFS beta3 be export to TFS final?

    If I use TFS Beta3 to record some WorkItems, such as bugs, could this data still be useful when the TFS finally released Thanks! Hi,   this should help:   ... At Visual Studio 2005 launch, we will continue supporting TFS Beta 3 with the rest of Visual Studio 2005.      Further, all data within TFS Beta 3 will migrate seamlessly and in-place to the final version of TFS.  ... see: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=76313   ...Show All

  • SQL Server Does a checkpoint file record a package's state

    The state of a package at any one point in time is determined by the values in all of its user variables as these are the only properties in the package that can be changed and persisted throughout the runtime of the package. Is the package's state stored in a checkpoint file in the event that the package fails In other words are the user variable values stored in the checkpoint file Thanks Jamie   Similarly, you could log this using a log provider, however, you will run into the same problem I am facing - with that logging  bug and only logging the immediately inherited pkg!!! Maybe, whom ever answer ...Show All

  • Visual Studio Team System Export the Team Build Report

    Hello All My managers would like to be able to see export the current build report visible in Studio to something else (html, pdf, rtf, whatever). I was wondering if there were already something available in VSTS (or any plug in available). Otherwise, I can see two solutions Create a custom report via SQL Server Reporting (absolutely no idea how to do that) Create my own XML file extracting information from BuildLog.txt .trx files for having tests results What would you advice Thanks Hi Nick I think you are talking about the warehouse reports. From what I understand Jarod is asking for the detailed te ...Show All

  • Windows Forms MultiColumn Combo Box in DatagridView????

    Hi Plz help me to assist How to add a multi column combo box control in Datagridview control ANy link , suggestion,source,guidence, r really very important to me. How to start with this, Plz Guide me. Thanks a bunch in advance Check out the following post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=66308&SiteID=1 -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All

  • Windows Forms Overriding CreateParams in derived Form

    I'm making a class derived from the Windows::Forms::Form class, and need to override the CreateParams property so that it's a layered window when its instanced. I've found a million examples of this in C#, but none in C++. I've tried old syntax, new syntax, and I always end up with a string of errors starting with "Windows::Forms::CreateParams is not a class, union, or struct" and then an endless list of syntax errors. I'd post a code snippet, but I've tried so many variations with the same result, I wouldn't know which to post. Can someone post an example of the proper syntax for this in Visual Studio 2005 usi ...Show All

  • Windows Forms bring up child control's designer in a UserControl?

    i made a designer class for a user control (childUC), which is a direct child of another user control(parentUC). the childUCDesigner is brought up through the DesignerVerb... when i am in a form designer of one form, having parentUC as its child, how do i bring up childUCDesigner ...Show All

  • Visual C# calling C# function from C

    Hi I have been searching for an example code/instructions as to how to call a C# function from a native C dll. I have seen some instructions for C++ such as writing a managed MC++ wrapper, or playing with the low level IL code which is not an option for me. I appreciate any kind of feedback Thanks Mehmet Atlihan MCP You don't have any other options - if you want to call managed code, you need to build something in MC++. You could build a MC++ dll that you call from C, perhaps Your other option actually is COM - but I would imagine COM in plain C would be a pain. You can write C# code tha ...Show All

  • Visual Basic Creating an object using a string

    I'm trying to create a procedure that accepts a string and loads a form based on the string. Now say the string "frmDebtors" is passed, how do I load the form 'frmDebtors' using just the string Now there are many forms so I dont want to use a case statement, I need something like this: Private Sub LoadForm(targetForm as string) ' Dim f As - I was thinking of something like createObject("frm" & targetForm) ' but Im not too sure how createObject works f.Show() Me .Hide() ... ... end sub PS: This is a simplified version of my procedure Any help would be greatly appreciated ...Show All

©2008 Software Development Network