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

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

IamHuM

Member List

MikeTennor
Mark See
Alucaz
Mark Heath
D Evil Oper
DanSoper
Fieldzy
PatMcHargue
tonionio
CharlieRussell
Ben Fidge
robinjam
joejoejoeoejoe
Lawrence 007
DoubleDee
error1408
Mark Asztalos
PeterZ
Whoisit
Jim Shipley
Only Title

IamHuM's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Loading and rendering .swm files

    Does anyone have any code for loading an .swm file and rendering it on screen I'm just trying to get one of the space ships to work for now, I've copied the swm file, and the following classes from Spacewar: AssetCache MeshCache SimpleMesh SimpleMeshRenderer and then I'm calling this OnStart: meshes = new MeshCache ( this ); meshRenderer = meshes[ @"D:\\player.swm" ]; and in my Draw() method, I'm doing: meshRenderer.Render(); However nothing appears :( I can move the camera around, so I don't think it's appearing in the wrong place, I just don't think it's being loaded at all. I'm trying to keep the amount of code for this to a minimum, since it'll all be replaced, which is why I just copied all the above ...Show All

  • Internet Explorer Development Where are my cookies/temp files

    I just d/l the new IE7 today. On the older version I was able to go into my cookies and temp internet files folder and view/delete them at will. Tonight i tried to go and do that and they are not there. Where are they Has the location been moved or am I just missing something. Thanx You can view (and change) the location of your temporary Internet files as follows. From the Tools menu, choose Options. From the General tab of the Internet options dialog box, click the Settings button in the Browsing History panel. The current temporary Internet files location appears near the middle of the dialog box, below the "Current Location" label. Use the Move folder button to change the curr ...Show All

  • Visual C++ How do you use breakpoints in Visual C debugger when running a C++ DLL with a VB executable file as the calling program?

    I meant to ask, how do you use breakpoints when you are running the debugger in Visual C to run a dll in conjuction with an executable file as the calling program   The breakpoints aren't retained after I start the debugger.  I haven't as of yet found anything in the Help information about it.  I have been copying an executable file of the VB calling program into the directory that the dll cpp file is in, then going into the open window and double clicking on the executable file of the vb calling program, then selecting "start debug" from the pulldown menu in VC.  The breakpoints were set before all this.  It gives me a message saying that the breakpoints were not retained. With the DLL as the active projec ...Show All

  • Smart Device Development Incoming Call Event Error WM5

    I get this error whenever i receive an incoming call: ArgumentNullException Application::Run+0xf Form1::Main+0xd and this is part of my code: Friend WithEvents IncomingCall As New _ SystemState(SystemProperty.PhoneIncomingCall) Private Sub CheckCallStatus(ByVal Sender As Object, ByVal Args As ChangeEventArgs) _ Handles IncomingCall.Changed Dim PhoneNumber As String PhoneNumber = SystemState.GetValue(SystemProperty.PhoneIncomingCallerNumber) Dim PhoneCaller As String PhoneCaller = SystemState.GetValue(SystemProperty.PhoneIncomingCallerName) If PhoneNumber <> "" Then Dim reg As New Registry Dim key1 As String = "Software\SMSIntercept" Dim valname1 As String = "Caller Number" Dim valna ...Show All

  • Visual Studio 2008 (Pre-release) WCF, WPF VS 2005 RTM Extension?

    Hi, Just was wondering when the RTM version of the WCF and WPF Studio 2005 extensions will be released. It looks like the WWF extensions are RTMed already. Thanks Andy That sucks! But I understand, a lot of WPF functionality and WinForm compatibility to cover not to mention control/component vendor intergation. Maybe you guys should consider announcing something like this! ...Show All

  • SQL Server Communication Link Failure???

    Hai, Iam using VC++ application to connect remote database(MSSQL) through network. Everything works fine, if the network connection is active. If the network breaks and resumes, the application throws "Communication Link Failure" and do not get connected even after the network is resumed. Client : * Windows 2000 Professional * MDAC 2.5 * VC++, using framework- CRecordset to access database * PEER to PEER network configuration * DSN through ODBC Server : * Windows 2000 Professional * MDAC 2.8 * MSSQL Server how to resume the database connection Any one help me Thanks in advance, If an existing connection fails due to broken network connectivity the clie ...Show All

  • Visual Studio Team System Postbuild and prebuild scripts

    I am using the newly released CTP 5 and have been trying to use the postbuild scripts and prebuild scripts to add certificates as well as permissions for a database. However, when I try to deploy the project I get an error saying that it can't find a procedure when trying to assign the permissions and it looks like the postbuild scripts and prebuild scripts are being combined and run together, both before any of the other database scripts (tables, procedures, functions, etc.) are deployed. My question is there a better way to deploy the permissions for the database other then putting them in the postbuild script or is there a way to fix it so that the postbuild scripts is run only after the main database scripts are run ...Show All

  • Software Development for Windows Vista Is there automatic reloading and executing when recovering from a crash?

    Hi This may be a stupid question but I really need to know what to do in this case. I'm developing a state machine workflow, I have an EventDrivenActivity with a TransactionScopeAcitivty in which I have activities to save to my data model. If something goes horribly wrong after the persistence point on the close of the TransactionScopeActivity before the persistence on idle (I have this set). Can I expect that when the outside factors are resolved the runtime will take care of reloading this partially complete EventDrivenActivity automatically and finish exection from after the TransactionScopeActivty. Or... am I going to need to somehow check for this situation and load the workflow instance to have it continue exection Any help wo ...Show All

  • Visual Studio Express Editions How to create a Inheritable user control...

    Hello everybody, I'm trying to create a User Control that inherits from another User Control, but under the Add --> User Control command I don't see nothing that permit to choose some inheritable options... Can you help me Thank you very much! igorbaITALY, Take the DataBoundControl an example. The following code example demonstrates how to derive a class from the DataBoundControl class to create a custom data-bound control. The TextBoxSet control creates a TextBox control for each data item retrieved from its associated data source control, and binds to the value of the data item at run time. The current implementation of the Render method renders the TextBox controls as an unordered list. Imports System Imports ...Show All

  • Visual Studio SSH connection doesn't allow using VS custom project

    Hi, Our integration implements our own project system. All works fine while you are working using private access to ssh server. In case of usage of public access (when ssh server doesn't require password for log in) the following command fails: devenv /Build my.sln Error message says that our project type is not supported because of package load failure and suggest running devenv /resetskippkgs. What is the possible reason for this Thanks in advance, Vadim. Hi Vadim, There are many potential reasons for a package load failure, although you will need to attach a debugger to devenv while it is doing the build to nail the reason down. Is your project system/package attempting to p ...Show All

  • SQL Server Why the Results of Cluster Alogotytm are coming in the following way

     Hi I have data in the following format Custid Age Product 101    25     ProdA 101    25     ProdB 102   25      ProdA 103   50      ProdC 104   55      ProdA 105   50      ProdC when I am using Clustering algorithm with 2 clusters and trying to perdict the product column the results are coming as below Custid Age Product  PerdictProd 101    25     ProdA    ProdA 101    25     ProdB  &nbs ...Show All

  • Visual Studio Express Editions Audio Volume

    Hi, I have another question. Is it possible to display audio input and/or out put levels as seperate channels (Left and Right) I have two of the the VU audiometer ( http://www.codeproject.com/useritems/KEMA_Code.asp ) on my form. one named 'Left' and the other 'Right'. Any help would be great. Nope, It's C#, though it uses quite a bit of DLL calls, so it might look complicated at a first glance. Though, the class basically gives you two static methods. SetVolume which takes an int as its parameter, and GetVolume, which returns an int. So basically you should be able to copy and paste all of the code, and then just use those two methods (aslong as you just want to get or set the volume). I should add that I haven't ...Show All

  • Visual C# How to Create a URL syntax checker in C#

    I would like to create a URL syntax checker so that can verify a cerrtain URL not a phish site. But I am also aware that some URL have valid syntax but is still a phish site. To answer this, I am looking for some measures on how to verify a URL and its correct DNS equivalent. I am doing a project of mine as one of our requirements and I have decided to create a web browser (already done) and I have included there 3 anti-phish tools. One of the tools is to check for URL syntax error. i have searched for such but has given me no good results that can be of any help to my project. I was hoping that some of the bright minds here could help me or enlighten me in my search. Thanks. 1. Create a URI and determine whether the initial ...Show All

  • Windows Forms typed DataSet not loading relations from DB

    I've literally had this problem everytime i've tried to use Typed DataSet I have just a default database made in VS, in it i have 2 tables relating to each other. (Lets say Member Table, and Association Table, ie Members would have 1 association, related by PK in Association and FK in Member) i then drag those tables (with the relation) into an xsd, which creates the relation and tables in that. I then compile the Typed Dataset, and get the generated classes. So then in my application, I load the information using a DataAdapter and get lets say a MemberRow object For the life of me, the AssociationRow property of the MemberRow (ie the parent row property that the dataset defines) NEVER has a value, It's always ...Show All

  • Visual Studio Tools for Office Error: InfoPath Form Template

    Hello After creating the InfoPathFormTemplate Project i cannot do any operation in my Visual Studio 2005, for any operation it show me the error message "Visual studio has encountered an unexpected error" Can you suggest me any solution to solve this problem Regards Hi Eric, Just off the top of my head, have you tried repairing Visual Studio Would you list what you have installed, related to VS In particular versions of Visual Studio, any SDKs, Service Packs, etc. Thanks Roger ...Show All

©2008 Software Development Network