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

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

Pramodmatrix

Member List

Volturno
John.P.Scott
Thomas Ivarsson
Matt Kosorok
Gene Belknap
Brian_76
Navneet
nguyenkiem
LiquidMike
C7MAX
nil130180
MagicCity33
radone
Guruparan
Josh68
wardw
Madhat3rr
de Lira
Flippie
JonzieBoy
Only Title

Pramodmatrix's Q&A profile

  • Visual C# How can I know if the Microsoft Media Player 10 has been installed in user's PC? thanks!

    How can I know if the Microsoft Media Player 10 has been installed in user's PC thanks! Player.versionInfo  <CLICK THERE ...Show All

  • Visual Studio Team System App Tier - Error 32000 - setupwarehouse.log

    I cannot install Application Tier (Dual-Server deployment). Everything made exactly like described in the newest Installation Guide (April). Clean installation on Virtual PC. Tested platforms: Polish version of Windows Server 2003 Standard, English version of Windows Server 2003 Enterprise with SP1 - same error on both versions. At the end of the installation I still get the same error: Errorr 32000: The commandline '"C:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\bisdwserver\bin\SetupWarehouse.exe" -n -s "TFDT" -d BisDWDB -c "C:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\bisdwserver\b ...Show All

  • Visual Studio Express Editions accessing attribute of the object in the objects' arrayList

    I have arrayList of objects and want to assign a value to an attribute(string) of object which is in arrayList I tried   for (int i=0; i < arrayListofObj.Count; i++) {      arrayListofObj[ i].string= maskedTextBox8.Text; } But it doesn't work. thank you For future reference 'it doesn't work' is not very helpful. Instead, try posting the error message you get from the compiler. In this case, the error message will be that object does not contain a string property. This is true. Why are you storing an array of objects If they are all of the ...Show All

  • Windows Forms Application Failed - Invalid Manifest

    This is the first time I have actually used the Publish... function in VS .NET 2005 Beta 2, so maybe I am missing something obvious... I do the publish, and everything comes out fine, except for two warnings: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets : warning : Could not find resources for culture 'en-US'. Using culture 'en' instead. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets : warning : Could not match culture 'en-US' for item '.NET Framework 2.0 Beta'. Using culture 'en' instead. These actually seem pretty harmless though... I then copy the entire folder the solution was publis ...Show All

  • SQL Server Problem with CASE Expression

    Hi, all here, I have a problem with CASE expression in my SQL staments. the problem is: when I tried to just partly update the column a , I used the CASE expression : set a=case when b=null then 'null' end the result was strange: then all the values for column a turned to null . so what is the problem tho Thanks a lot in advance for any guidance. Is it something like this you're trying to do create table #x ( a int null, b int null ) go insert #x select 1, 1 union all select 2, null union all select 3, 1 union all select 4, null go select * from #x go a b ----------- ----------- 1 1 2 NU ...Show All

  • Visual Studio 2008 (Pre-release) Read a System Table with DLinq

      How can one read a "sql" system table like sys.tables using DLinq I have try the following, but no luck - Get "Incorrect syntax near '.'."   string connection = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorks;Data Source=localhost" ; System.Data.DLinq. DataContext tDataContext = new System.Data.DLinq. DataContext ( connection ); string sql = "SELECT Name from sys.Tables" ; var tables = tDataContext.ExecuteQuery< SysTables >( sql ); // following line errors with "Incorrect syntax near '.'." ObjectDumper .Write( tables );     ...Show All

  • SQL Server is it possible to create a Master Details Report?

    is it possible to create a sort iof Master Details Report mean one dataset returning the master data while the other dataiset returns the details and then relate this two datasets on a common key and show the report . You can use drillthrough or subreports to do this. The dataset in the main report would return the master data, which is displayed in the main report. In the drillthrough link or subreport, you can then pass the key through parameters. http://msdn.microsoft.com/library/default.asp url=/library/en-us/rscreate/htm/rcr_creating_interactive_v1_38tn.asp http://msdn.microsoft.com/library ...Show All

  • Visual C# Form Instance

    Ok. I have 3 forms. On form1 I want to declare an instance of form1. How would I make this new instance available to the other forms Can someone help me What do you mean by 'available' How are you creating and showing these forms Why do you need two instances of the same form ...Show All

  • .NET Development What this lines do?

    [System.Web.Services.Protocols.SoapDocumentMethodAttribute( http://tempuri.org/WS_STARTWORK , RequestNamespace=http://tempuri.org/, ResponseNamespace=http://tempuri.org/, Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] why doing such thing what those mean Take a look at the MSDN documentation for this attribute: http://msdn2.microsoft.com/en-us/library/system.web.services.protocols.soapdocumentmethodattribute.aspx This attribute specifies in some detail how the SOAP message are encoded on the wire. Let me know if you still ahve questions.  ...Show All

  • Visual Studio Express Editions app.config problem

    hello to everyone I am running windows based program compiled with Express Edition. I have User name and Password that application run OK and connect to remote computer everything is OK I Store these values in Application Settings all is fine… But when I run the application from Windows schedule IT IS CREATE NEW application setting WHICH are EMPTY in first start…. HOW to prevent that I want the application to run with same values stored in first one 10x in advance val use the registry... and with the scheduler make ...Show All

  • Software Development for Windows Vista vista 64

    How is Vista64, coming along If anyone knows  drop a note please. The buzz in the NG is that it is much better than the pervious drops in terms of speed.   Josh http://windowsconnected.com   ...Show All

  • Visual Studio Use Of Keyword DataDirectory Causes Visual Basic 8 To Prompt For User ID And Password

    Problem solved Thanks, ...Show All

  • .NET Development Invoke SetPassword C# LDAP provider...Whos got the fix??

    Howdy: According to several many other forums, there seems to be a consistent issue with the Invoke("SetPassword, string password) in DirectoryEntry, in that it does not work! Any clues as to how to work through this problem The code below throws an exception every time..."server is unwilling to processs the request". As suggested in many forums, re-arranging the CommintChanges and order of operations was no help either. With the WinNT provider this works like a champ, but LDAP no workie. This fails against 2k and 2k3 domains...I am domain admin in both running from an XP system that is logged into the domain when ...Show All

  • Visual C++ App Freezes For About A Minute When I Edit Header Files

    Greetings! We have a 300,000 line C application that I've been building for 11 years through multiple versions of Visual C / Visual Studio. We keep most of our constants in one file called "constants.h". When I go to the edit this file, the newest VS ("VS 2005") will often freeze. I believe it is busy recalculating "browse" information on the fly. That is, if I change the value of a '#define', it seems to be recalculating all these values so that it can SHOW me these values when I am viewing other files. I don't know if this is strictly part of "Intellisense". I like Intellisense's auto-complete features -- but even when I turn them ...Show All

  • Software Development for Windows Vista How can I start instalation a Windows Vista os

    How can i start instalation of Windows Vista OS. I burn a DVD image, but i can not open it. I can read only a README file. What shall I do What does the Readme file say ...Show All

©2008 Software Development Network