Software Development Network Logo
  • Visual C++
  • Windows Live
  • Windows Forms
  • Architecture
  • Microsoft ISV
  • SQL Server
  • Game Technologies
  • VS Express Editions
  • .NET Development
  • Visual C#
  • Windows Vista
  • Visual FoxPro
  • Visual Studio
  • Visual J#
  • VS Team System

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

MSDev23

Member List

aliahmad
SureshPc
ps0118mj
gamehack
Ricardo Barroso
DennisWang
matsuoka
Michael McCarthy
Ian Munro
ChasP
Helder Magalhaes
DARK_IBO
Hytham
Markus Losoi
Riceroman
Test Me
Matthew!!!
Tim Rachel
PatrickAltman
KamranAmin
Only Title

MSDev23's Q&A profile

  • Windows Forms Constructor on type 'Inherited.Controlname' not found.

    I am getting a following desing time error on my user control. Constructor on type 'Inherited.Controlname' not found. I have already tried puting a empty constructor on the base control but it didnt work ErrorDetials ___________________________ Hide at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at System.ComponentModel.Design.DesignSurface. ...Show All

  • SQL Server Where is the tutorial File: "Customers.xls"?

    In Lesson1 of SSIS Tutorial, section "Running the Wizard to Create the Basic Package", is stated "Specify the data source. You will use the Excel workbook, Customers.xls, as the data source..." I have both AdventureWorks databases installed on my box as well as a host of samples but I can't find that file. Any pointers much appreciated. TIA, barker on my machine its found in the following location and I am fairly certain I went with default locations. C:\Program Files\Microsoft SQL Server\90\samples\integration services\tutorial\Creating a Simp ...Show All

  • Visual C++ Can not add control based variable in Add Variable wizard

    I have a wierd problem. For some reason I am unable to add a member variable that is a control.. the check box is disabled when I click add variable. Some context here: I have a project that has a rc file included in the projects rc file. i.e. resource.h myprojectname.rc The commonresource.rc is included in the myprojectname.rc file. commonresource.h commonresource.rc Also the to prevent compliling the commonresource.rc we have it set in the project as exculde from build as it gets built when myprojectname.rc is built. I have tried the normal checks to see if the appropriate files are checked out / read only etc... An ...Show All

  • Software Development for Windows Vista What is Dependency Property

    Hi I'm a newbie to workflows. I would like to know what are these dependency property in WWF and where exactly i should use them. Any pointers and links to sites are appreciated. -Thanks in advance Ravi, I think the following link should help you to understand the concepts : http://blog.hackedbrain.com/articles/UnderstandingDependencyObjectAndDependencyProperty.aspx ...and to make an analogy with the Button class on this link, you'll notice that the Activity class is itself derived from DependencyObject ;) It seems that the DependencyObject is an important stuff in winfx... Serge Luca Guidance, Belgium www. ...Show All

  • Visual Studio Express Editions Databases!!!

    Hello, I have a problem trying to connect to an Access Database, the problem is that I want to make a working project without thecontrols, I only need the source code to do that. I would like to know about working with databases without using the bindingnavigator, how can i do that. I don't know, please help!!!:D I imagine the code in this article will cover what you want to know, there's lots of similar articles on that site as well: http://www.codeproject.com/vb/net/atcl.asp ...Show All

  • SQL Server Error when create a Server object using SMO

    Please help: I got this error and can't figure out what went wrong. The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception. on the line that create Server object. This is the code  (Visual C# 2005 - SQL Server 2000 - Windows Active Directory) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common;   namespace SSMO { p ...Show All

  • Visual J# Why is the J# Redistributable package needed?

    Hi! Why is the J# Redistributable Package needed to run a J# application Or can I just redistribute some assemblies For example, if I develop an application in Borland Delphi using WinForms, I can compile this application to an exe file. This exe file can be executed on any computer that has the .Net Runtime Framework installed. No Delphi .Net Redistributable Package exists. If I develop an application in Dephi using the VCL.NET api all I have to do is to redistribute the VCL.NET assembly. That's easy. No problem here. So the fact is that it is possible to develop a new language for .Net (Object Pascal) and don't require some special in ...Show All

  • .NET Development Error: The targetNamespace parameter should be ...

    I have been working with xml and xsd files, when i linking the xsd with the xml doc i get the following error: The targetNamespace parameter ' ' should be the same value as the targetNamespace 'schPicking' of the schema. However my schema file beging with: < xs:schema xmlns:xs = " http://www.w3.org/2001/XMLSchema " elementFormDefault = " qualified " attributeFormDefault = " unqualified " targetNamespace = " schPicking " > ... </xs:schema> and my C# code is: class Program { private static bool m_bValid; //Validation result static void M ...Show All

  • .NET Development Process.Start() of xcopy only works under the debugger?

    I am trying to run a child process to xcopy files into another directory.  xcopy is regular old Windows system xcopy.  I am creating a new System.Diagnostics.Process, filling out some start info, then kicking it off with Process.Start().  When I run this code under the .NET debugger it works fine. However, if I run my app outside the debugger, the xcopy child process fails to do anything.  I've attached a debugger after I started my app outside the .NET IDE and although the child process appears to run, I get nothing from its stdout and the files I intend to xcopy are never copied.  This child process ...Show All

  • Smart Device Development vs2005 compiler is fatally flawed: generates bad code

    In this very simple excerpted code, the compiler fails to do its job.  If you want it recreated, I propose someone there try to recreate it.  I've already got it happening here.  It's as simple as it gets.  From the type of failure, it looks like it's going to happen a lot. r12 is assigned the address of mc.decodePriority only if gDecodeMaxPriority >= 3, yet it, r12, is still used as the store address when it is not >= 3.  r12 is pointing to nowhereland in the code below, when, for example, gDecodeMaxPriority is 0.               if (mc.inWaveMode ! ...Show All

  • Software Development for Windows Vista Conversion of AAC file format to ASF

    Hello All, Is it possible to convert aac file formats to asf using direct show. I was able to use graphedit to connect the pins from a filesourcefilter of aac type to aac parser, continuing to coreaac decoder and finally sink of asf writer. has nyone some view , it will be gr8 Bye anup Did the graph run after you connected everything If yes, then just build the same graph programmatically and you should be set. ...Show All

  • Visual Basic How to make a setup of a VB 6 application

    Hello All I m working on a vb 6 project that communicates serially with a hardware.I made its .exe file whcih is working properly. But when I copy this exe file on different computers it does not work. now i want to make a setup of my application. Can u guys help me to how to make a setup. Thanks These forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vb.general.discussion&lang=en&cr=US VB6 requires more than just the EXE to work. Normally you use a setup creation tool like ...Show All

  • Visual Basic Saving DataSets

    Hi there, I have a problem that my data does not get saved in the database. I can retrieve and see the data in my form that I have entered directly by edits made in the "show table data" view under the Database Explorer. However, when I make data entries in the form these values do not get saved back in the database. I am using the following code in the form: Private Sub bindingNavigatorSaveItem_Click( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles bindingNavigatorSaveItem.Click Dim Result As Integer Try If Me .Validate Then ' Call EndEdit if you are using a BindingSour ...Show All

  • Windows Forms how to make gridview to change datasource

    i want my gridview to change the datasource when i click on a button. eg. i have button1 and button2 and SqlDataSource1 and SqlDataSource2 ... so when i click on button1 i want the content of the gridview to change to SqlDataSource1 and the same with button2. how can i do that I would have hoped that you had supplied more information on what FRamework version you are using and what kind of tools or IDE you are using(such as VS.net 2003/2005 etc.), But I am going to assume that you are using .NET v2.0 because of "GridView"(thinking of DataGridView) In .NET 2.0 using VS.NET 2005, your proble ...Show All

  • Visual C# ArrayList copying a class

    I am reading a .csv file and loading each record that I read into a class then populating the class into an array list. The issue I have is that the class contains strings and seems to be copied by reference in the array list. Therefore causing an issue when adding additional records the reference is just being written multiple times in the arraylist with the same pointer. A friend suggested I use a dataset instead of an arraylist. I have to do sorting and filtering in which I would need to write functions for. I am not sure how to clone the class into the arraylist so that each entry is unique by value and not by reference point. Any help o ...Show All

©2008 Software Development Network