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

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

SoomroWaseem

Member List

SolutionsFromTheTrenches
jmaddox
Suhas
gabba
Jmarte
Jurney
hdn
wrade
Daisuke Niwa
KatyG
Jerry Sparkman
Patrick MCCormick
LeeM
LosManos
john trigo
David Pritchard
CRJones
Eivind Gussias Lokseth
00cd
DD77
Only Title

SoomroWaseem's Q&A profile

  • Smart Device Development database entegreted

    hi i am mehmet my questions about smart device applicaton database connection i am writing code about smart device connection database but i want to entegreted my computer database (sql server) with pda database for data. data transfer from pda database to sql server on my computer thank you Hello Mehmet, I didn't completely understood your question. Did you want to sync your PDA database with your database on yo ...Show All

  • .NET Development How to display Certicates list

    Hi All, I am working on project related to certificates. I want to display the list of certificates based on user. I have an admin privileges. I wrote the following code, it always displaying the list of certificates for logged on user. but i(who have admin privileges) want to get the list of certificates based on the specified user. X509Store storeCertificates = new X509Store(StoreName.My, StoreLocation.CurrentUser); storeCert ...Show All

  • Visual Studio Team System Setting default parameter for project in report "Remaining Work"

    Hi, The report in my Project homepage, "Remaining Work" is not able to set default value for project. As a result, I'm getting the following error. This report requires a default or user-defined value for the report parameter 'ExplicitProject'. To run or subscribe to this report, you must provide a parameter value. (rsReportParameterValueNotSet) Get Online Help If I give ShowToolbar as true for the report ...Show All

  • Visual Studio My own task won't work.

    I've made a task but when I try and use it I get the following errors: warning MSB4062: The "MWH.Common.MSBuild.Tasks.SourceSafe.Get" task could not be loaded from the assembly MWH.Common.MSBuild.Tasks, Version 1.0.0.0, Culture=neutral, PublicKeyToken=02d410f519fd6098. The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047) Confirm that the <UsingTask> declaration is correct, and that the assembly and all its ...Show All

  • SQL Server Query cube from within SSIS

    Hi, I'm trying to query a cube via MDX from within SSIS and not having much luck. Has anyone got this to work and if so how I've tried to do it via OLE DB Source Data Flow Item (using Microsoft OLE DB Provider for Analysis Services 9.0) and it doesn't work. Any help would be greatly appreciated. Thanks! ...Show All

  • Visual Studio Express Editions how do i split a string to multiple strings?

    say i had a string containing "FFFFFF9C" and i wanted to split it into 4 strings, how would i get results like below i found this but its in java.. http://msdn2.microsoft.com/en-us/library/ms177889.aspx Value1 = FF Value2 = FF Value3 = FF Value4 = 9C thanks i got it, the Substring worked great for me. mycode = FFFFFF9C value1 = mycode.Substring(6, 2) 'returns the value 9C ...Show All

  • .NET Development Memory Leaks in VB.NET

    How do you detect memory leaks (if there are any) in VB.NET windows application I have a medium complex VB.NET application, when it runs, the memory usage at the Windows Task Manager keeps increasing for the application even without any activity. Simply by switching to the application keeps the memory usage increase Any help is really appreciated. Are you using objects such as bitmaps ...Show All

  • .NET Development Serialization of array of objects, containing array of another objects....

    Hi all, This is my first post here , hope you know answer to this. I have a situation where webservice is returning array of object A which contains array of object B which internally contains array of object C. class A { [XmlElement] // this was added on later on and works fine B [ ] B_array } class B { //[XmlElement] // here does not work as in Class A above C[ ] C_array } class C { int i, string s } All classes and variables ...Show All

  • Software Development for Windows Vista Correlation between two diferent workflows

    Is it possible to use correlation between two diferent workflows Let's say we have this local service [ExternalDataExchange] [CorrelationParameter("instanceChildId")] public interface IMasterChildLocalService { [CorrelationInitializer] void RaiseChildInitiated(Guid instanceChildId); [CorrelationAlias("instanceChildId","e.InstanceId")] event EventHandler<ExternalDa ...Show All

  • Software Development for Windows Vista SqlTrackingQuery comments and questions

    I've just installed beta 2, and I'm glad to say I find things much more robust in general, and somewhat faster (though the fact that I got a new machine might have something to do with it ). Anyway, I've been checking the new SqlTrackingQuery facilities and I gotta say it's very nice to have something like this; it really seems like it is something useful in building more robust implementations and providing tooling for problem diagnose and stuf ...Show All

  • Visual Studio New project wizard - porting from vs2003 to vs 2005

    I created, using CodeDom , a new custom project type with VS2003. The project creates a new form with a few components, several predefined methods etc.; just to be clear the project calls dte.LaunchWizard("CSharpExe.vsz", ref parms) I'm now trying to port this project to VS2005 and I had to modify the above call to : Solution2 sol2 = ( Solution2 )ApplicationObject.Solution; strTemplatePath = sol2.GetProjectTemplate( "Windows A ...Show All

  • Visual Basic How to generate dynamic control names ?

    Hi, I'm trying to create some controls ( textbox - combobox) on the fly. Everything is working, except that I haven't figured out how to name them dynamically. For example, this is the line I need to replace : Dim TextBox2 As New TextBox In VB6, you could do something like controls.add("mycontrolname",mycontroltype), is there any equivalent in VB 2005 thanks, Sam Ma ...Show All

  • Visual Studio Changing assembly reference path based on build config

    Is there a way to change your reference paths based on your build configuration All of my assemblies are output to a directory based on the build configuration say a debug or release folder. If I am woking in a current project in debug I would like to be able to point to reference the assemblies in the general debug folder, but if I switch to release I would like the assemblies in the release folder referenced. Thanks! Kurt ...Show All

  • Visual C++ std::cout - override/replace/redefine?

    Hi, I want to "catch" or redirect all information that is printed/written to std::cout and std:cerr. Instead of printing it to a console window, I want to pass all the information to my own Log(string logEntry)-method (or write to a common memory area/char buffer). I have seen that it is possible to redirect all std::cout-calls directly to a txt-file like this: // Set up a file stream ofstream output( "output.txt" ); // Redirect "c ...Show All

  • Visual C# Visual 2005 C# dll to be used in Visual C++ 2003

    Hello Everyone, I created a C# .dll in VS 2005 and I tried some tests Adding as a refrence in other CS 2005 projects, no problem... I tried doing the same thing in VS 2003, it doesnt work. It says its not valid .dll or COM... Infact the file name ends with .dll.....say example.dll...... Anyone, how can I fix this problem.... Thanks, Harsimrat It doesn't matter that the file ends with DLL. It is ...Show All

©2008 Software Development Network

powered by phorum