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

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

BigBJ

Member List

nhlpens66
Puneet Minda
JLibby
Robert3234
beneboyd
DavL
vitfrasson
Gus Jones
crazylady
vc56522
jadamo
Neil Cowburn
gerrod
Tim HK Wong
Matt Morehead
Dirk Theune
Albert Yen - MS
teapeng
Charles Gray
Gunny
Only Title

BigBJ's Q&A profile

  • Visual C++ Newbie help when compiling with Visual C++ 2005

    I've searched all over the place but I can't find much information about this, so can someone please help me When I try compile any app I get the following message, "fatal error C1902: Program database manager mismatch; please check your installation." I was able to find this from microsoft msdn library. Visual C++ Concepts: Building a C/C++ Program   Fatal Error C1902 program database man ...Show All

  • Windows Forms Remote DB Server Login

    When passing sensitive data such as passwords from a browser to a web app I know that SSL can be used to encrypt the transmission. Is there a similar way to protect the login password for a remote database server when accessed through a&nb ...Show All

  • Visual Studio Team System TF80071 after choosing TFS Project occured

    I receive the error within MS Project 2003 SP2 (German) TF80071: Team Foundation encountered an error while  accessing  the work item database. .. after i choose an existing TFS-Project. The connection to the server is OK, no error about wrong mappings etc. I'm using TFS Team Explorer Beta 3 and Project Server 2003 with SP2 German. The project is an Enterpriseproject stored on the server and not as an .mpp Any ideas ...Show All

  • Visual Studio Team System Application Designer Error

    I've receive this error from AD. The diagram in now in Lock state. Synchronization for element ResourceType failed. Reason: An error occurred creating the configuration section handler for windows: The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Config\machine.config line 31) Any Help Thanks I believe this is a known bug i ...Show All

  • SQL Server Null Problem

    Hi, i have this problem (I'm using analisys services 2000) i have a fact table Services with two dimensions Clasifications, and Prices. The fact table has three dimensions IdServices, IdClasifications and IdPrices, idclasifications and idprices are fk to the tables of Clasifications and Prices. I wan to count the services so i have measure on the field IdServices wiht count. The problem is that it doesn't count all the services, all the ...Show All

  • Windows Forms horizontal scroll, minsize, docking

    I have a user control that contains a tablelayoutpanel with several controls. I want to embed this control in a panel and have it anchored or docked so that it nicely resizes with the panel it is in. That works OK... but if the Form is resized smaller the panel which parents the user control should show scroll bars. Does anyone has an idea of how to do this Embed a user control in a panel, have it autosized with the panel and if the panel is bec ...Show All

  • SQL Server Sql Server 2005 Mobile/RDA connection problem

    I have a working Pocket PC 2003 app that uses RDA to exchange data with SQL Server 2000.  I'm attempting to port it to a Windows CE 5.0 device.   (I'll be porting to Mobile 5 in the near future, but the gadget I have at the moment is CE).  I installed SQL Server 2005 Mobile Edition on the computer running IIS according to package directions, and used the wizard to set up a virtual directory with sscesa30.dll. The direct ...Show All

  • Visual Studio Express Editions VB 2005 Express Benefit Portal - Cannot Log in

    Any ideas Aparrently I cannot access the page. I registered, activated the software, then logged in. At this point, I got the error: Error: The page you have requested is unavailable or you do not have access. Interesting. I registered Visual Basic Express 2005 today and got the email from "Confirm<@>profile.microsoft.com" and followed the link labelled "Registration Benefit Portal" to http://go.microsof ...Show All

  • Audio and Video Development What is the good IDE Tool for iHD programming?

    Hi, I'm totally new to this iHD / HD DVD world and I'm exicted that I found this forum. Hopefully I'll learn a lot from and contribute some opinions to this forum. My 1st question in iHD programming is what IDE tool should be used in programming iHD And my 2nd question is how to run / preview all 3 samples from HD DVD Programming Guide. Thanks, -mh Hi mh, Welcome, and glad to hear you're excited! :-) At t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating a new texture fails with "first chance exception"

    I have an application in which I create a texture to later write directly into. It works fine on my development machine, but on the target machine it fails with A first chance exception of type "microsoft.directx.diretct3d.invalidcallexception" occured. The code looks like this texture = new Texture (renderer.Device, 720, 576, 0, Usage .None, Format .A8R8G8B8, Pool .Managed); The pixelformat is the same as the device. ...Show All

  • Visual Studio Team System WorkItem queries with joins to other linked work items?

    Does anyone have any examples of work item queries that join linked work items In code it can be done by using a workitem query to populate a workitem store, then getting the link ids by looping, i.e. Dim wiqlQuery As String = _ "Select ID " + _ "where " + _ "([System.WorkItemType] = 'Deploy' and " + _ "[MySystem.Deploy.Target] = 'TestSystem5' " + _ "and [System.State] = 'AuthorisedToProceed') " Dim wo ...Show All

  • SQL Server can't connect to SQLEXPRESS locally

    I have SQLEXPRESS installed on a Windows 2003 Server. The SQL Tools show that TCP and Named Pipes are Enabled. I can't connect using either the command line or the Mgmt Studio with either of these protocols. Following is excerpt from program I'm trying to install: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default setting ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem installing Directx 9.0c Failed due to cabinet file

    So it installed everything and then after downloading the runtime components and is ready to install it says: a cabinet file necessary for installation cannot be trusted.  What in the world does that mean and how can I fix it   I would really appreciate your help thanx. Two things. 1) Download the runtime components again (just to be sure) 2) Make sure you're running with administrator level permission ...Show All

  • SQL Server Understanding RS Security

    I have an asp.net 2.0 app that calls the Render() method on Reporting Service (web service) because I need to (programatically) save the report as a pdf. At one point, everything was working fine.  But I upgraded my server from Win 2000 Server to Win 2003 Server and I am having problems now. When the Render() method is called, I get the following exception: "The permissions granted to user 'NT AUTHORITY\NETWORK SERVICE' are insufficien ...Show All

  • SQL Server How to pass .net application's parameter to a TRIGGER?

    How can i pass my .net application's Userid to the trigger I have a audit trail trigger on myTable.  I dont know how to pass the userid (not the sql server user) to the trigger when a user delete a record from the application(.NET Application). The trigger saves the modifications on the table including the userid of one who does the changes. Henry, Did you ever find an answer to your problem It sounds like you are trying to a ...Show All

©2008 Software Development Network

powered by phorum