Software Development Network Logo
  • Game Technologies
  • Visual Studio
  • .NET Development
  • VS Team System
  • IE Development
  • Visual C#
  • Visual FoxPro
  • Visual Basic
  • SQL Server
  • Microsoft ISV
  • Visual C++
  • SharePoint Products
  • Windows Vista
  • Audio and Video
  • Windows Forms

Software Development Network >> Anthony Christianson's Q&A profile

Anthony Christianson

Member List

Maurino
JoeWood
George2
Kevin Hoffman
Angry Coder
eldiener
Jason D. Camp
muthuraja
.net sukbir
ssfftt
jatwood
TerriM
kalkumar
poiuytrewq
twindragon
programmer01
starLisa
AnaC
anubisascends
Xi0N
Only Title

Anthony Christianson's Q&A profile

  • Windows Live Developer Forums Do I need to uninstall MSN Messenger before installing WLM?

    Hi, I have no clue where to post this, I'm taking a chance and post this here. I apologize if this is not the right place. I have a quick question about the installation process. Is it recommended to uninstall MSN Messenger v7.5 first before installing Windows Live Messenger I have read the FAQ but could not find an answer. Thank you. No, just install as normal. It will remove MSN Messenger and replace it with Windows Live Messenger. There is no need to uninstall it as the installation will do it for you. ...Show All

  • Windows Networking Development Problem with QOSQueryFlow

    When I use the qWAVE API QOSQueryFlow, a problem occurs. UINT64 rate; ULONG Size=sizeof(UINT64); bool b=QOSQueryFlow(QOSHandle, FlowId, QOSQueryOutgoingRate,//QOSQueryFlowRate, &Size, (PVOID) &rate, QOS_QUERYFLOW_FRESH, NULL); If I set parameters to query the bandwidth with QOSQueryFlowFundamentals, The function succeeds. However, when I wan't to query the flow rate, I always get failed with a return value of false. Then I use "GetLastError();", which returns 87 ERROR_INVALID_PARAMETER Thanks for any help... You're correct chunkai. The QOSQueryOutgoingRate api call returns the outgoing shaping rate of the flow as specified throu ...Show All

  • SQL Server SQl 2005 Server Not accesible through ASP.Net 1.1 Code

    I am trying to connect a production SQL Server 2005 which is under firewall through an Application written in ASP.Net 1.1 and I get error "SQL Server not available or Access Denied". I am able to connect to the Server through SQL Mgr also using the same Code and Web.Config file I am able to Connect to the SErver using ASP.Net 2.0. I am able to run the application for a SQL Server 05 which is in the same domain as of the Application Server. My Application is not working only when I use ASP.Net 1.1 code for the Remote SQL Server 05 which is under Firewall. But for the same Server ASP.Net 2.0 works fine. I have searched a lot for the problem and port No, DBNETLIB update is also tried. Please let me know if anyone has ...Show All

  • Visual FoxPro Creating an exe from the Project Builder

    Hello, I have finished my firs application and I have troubles with generating an exe to be installed in the customer’s PC. I’ve accomplished all the requirements seemingly for example to copy the dll that indicates the help of VFP, in same the directory where the application is executed, and to start up from an initial program that after calling to the form from this program, I`ve addedd the sentence of READ EVENTS at the end, I execute It and can’t see anything. The exe run like a process in memory (I do check it with the task Administrator of Windows XP). If I have an open sesion of VFP, it works, but if I close it, It does not (AND the client doesn't have installed VFP) Thank you for your support Regards, Alberto ...Show All

  • Windows Forms .NET 2.0 Changing the Select Command of a DataAdapter

    This may be a dumb question, but here goes. I have a grid with companies in in from a database. I have a combo box that I want to be populated with the permit numbers for these companies when I select on from the datagrid. To me I would think I would need to just change the Select Command of the dataadapter for the combobox to do this, but for the life of me, I can't figure out how to. Am I just overlooking something or what Please Help The tableadapter is a partial class that you can extend. The class has an variable _adapter which is a data adapter. In this sample on the vb-tips website I added the ContinueUpdateOnError property to the table adapter. You can use the same technique to expose the selectcomm ...Show All

  • Visual Basic RSS in Visual Basic Express?

    I really need a RSS feed. I just don't know how o connect to one and how my program to rad the XML nodes. I can try to obay some commands like... or some things. But yor help woul be more appreciated than mine (I kinda mean my knowledge). Please help (and dont give me the thng from Coding4Fun) (nothng there ever works) Hey Spider-link, I saw your comment about Coding4Fun samples not working and I wanted to investigate why. Which samples were you unable to get working and what was the error you had If something's broken, we obviously want to fix it Thanks, Dan Fernandez Lead Product Manager Visual Studio Express http://blogs.msdn.com/danielfe/ ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Animation Keyframes return broken data

    I'm using the content pipeline, and enhancing the mesh processor to attach animation information in the Tag, so that I can animate imported meshes. It seems that the animation keyframes return broken data when importing from .X files. They seem to duplicate the first key (with time and everything), and then fail to include the last key. This makes making an animated game challenging. Here is an example from an animation with 41 frames, ranging from 0.0 to 1.33333: In the .X file: AnimationKey rot { 0; 41; 0;4;1.000000,0.000000,0.000000,0.000000;;, 160;4;0.996917,0.000000,0.000000,-0.078459;;, 320;4;0.987688,0.000000,0.000000,-0.156435;;, 480;4;0.972370,0.000000,0.000000,-0.233445;;, 640;4;0.951056,0.000000,0.000000,-0.3 ...Show All

  • Visual C++ OracleConnection Not Found

    I am new to Visual C++ and .NET. I am trying to connect to an Oracle DB. When I try to compile the code, OracleCOnnection can not be found. I have included System::Data:OracleClient in the namespace. Is there something I need to set in the project " "DocKirk"@discussions..microsoft.com " < "= UTF-8 B RG9jS2lyaw== ="@discussions.microsoft.com > wrote in message news:3be3f44d-aeee-473a-a778-d669d63fcb01@discussions.microsoft.com ... Error message : error C2065: 'OracleConnection' : undeclared identifier Code : OracleConnection* myConnection = new OracleConnection(ConnString); myConnection->Open(); Please let me know if you need any other i ...Show All

  • SQL Server Problem when passing parameter to Execute SQL Task

    Hi! I have a execute sql task to create and drop logins. I want to create/drop the ASPNET login, but I need to pass the domain using a parameter. So I mapped a parameter: Variable name: User::serverName Direction: Input DataType: Varchar Parameter Name:0 and the sql is the following: CREATE LOGIN [ \ASPNET] FROM WINDOWS But I get the error: Executing the query "CREATE LOGIN [ \ASPNET] FROM WINDOWS failed with the following error: "Windows NT user or group ' \ASPNET' not found. Check the name again.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. What am I doing wrong ...Show All

  • Visual C# how can I convert the system array to integer array?

    Hello, How can I convert the system array to integer array Thanks, Tammy No problem, glad to be of assistance. The method I put above isn't terribly efficient. So if your code needs to be super quick then give me some more details of what you're trying to do with it and I can maybe make some suggestions for more efficient ways to copy arrays. ...Show All

  • Commerce Server Base/virtual catalogs and related products

    Hi all, I am attempting to determine the best way to set up base and virtual catalogs and I'm having some confusion on how the related products are being handled. We have a base catalog containing all of our available products. Originally we also had our related products defined there, but when we went to add products to a virtual catalog, it used the related products from the base... but didn't allow you to remove the relationship in the virtual catalog (which we might need to do if a related product isn't contained in this catalog). Soooo... because of this, does that mean related products are typically defined in the virtual catalog instead What if you want to create a virtual catalog that is a subset of another virtual catalog You w ...Show All

  • SQL Server Debug tsql

    I tried to debug a procedure from query analyzer, but i could not able to step in or step out. only few actions i could able to perform on the code,like execution,set break points. step in and step out is not enabled.Is there any option to enable it.. There is no "debug" of stored procs or in query analyzer. You will need to cut it down, exectue it line by line and use print statements, etc to see what is going on. Are you getting an error If you post the stored proc here, someone might help you. ...Show All

  • Visual C# Using an OLE object without having the TLB

    I have a 3rd party EXE that exposes some OLE functionality, but no TLB. In VB I can access it with: Dim MW as Object, MyStr as String Set MW = GetObject(,"MixW.Application") MyStr = MW.Mode ... etc. It works similarly in Delphi using type OleVariant for the object type. So far I have not been able to do the equivalent in C#. How can I access the COM object in C# without the type-library Any suggestions or ideas would be appreciated. If this can't be done, that's enough to rule out C# for most of my work. Thank you for the reply, but I already had tried that. TLBIMP does not show any methods, so there is no way to access the object. In VB it works perfectly. My guess is ...Show All

  • Visual Studio 2008 (Pre-release) Could not find default endpoint element that references contract IService1 in the ServiceModel client configuration section

    Hi, I am getting the above error. When I try to generate the proxy using svcutil, I get an error as: "There was an error importing a wsdl:binding that the wsdl:port is dependent on".. But the proxy .cs file is generated. The host is running perfectly and I can view the wsdl. Can someone help me out with this Also is there any example available somewhere that I can use. I tried using MSDN Virtual lab example but I am getting the same error with it too. Thanks, Akhil Jindal I got the same error. But the problem i made is that i had my proxy inside the namespace, whilst on the app.config i referenced it as "IMyContract", instead of "MyNamespace.IMyContra ...Show All

  • Visual Studio Team System Preserving sub-branches

    I am using branches in TFS for a couple of reasons. The first is to maintain branches for each release so that if we get issues on our production application we can address them without picking up all the latest changes for the next release in development. The second use of branches is to maintain shared code between projects - e.g. I have some javascript files that are common to a couple of different web projects and also some Asp.Net user controls that are common, so I use branch and merge to keep these synced between the different projects. The problem I have is that when I create a new branch for my first purpose (i.e. create the branches/2.0 branch once 2.0 goes into production) I lose the branches that were created for my second purp ...Show All

©2008 Software Development Network