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

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

litewoheat

Member List

Brant Yin
sugupta00
DiabboVerdde
GS80
Eric Krejci
lushdog
bfarr23
learneroob
ivanchain
anantvemuri
Red300
evz155
Kondas
Dave Waterworth
nate-d-o-double-g
Paulustrious
Bern McCarty
Eileen Ewen
Cest la vie
BobS777
Only Title

litewoheat's Q&A profile

  • Visual Studio 2008 (Pre-release) Animating a camera

    Hi, I'd like to be able to animate the position and LookDirection of a PerspectiveCamera from within the camera itself. In other words, another class can call _camera.Animate(point, vector) and the Animate method will apply an animation. I can get it working (not perfectly) using PerspectiveCamera.BeginAnimation(), but I understand using StoryBoards is more desirable. However, I'm having trouble understanding what I need to do to get a storyboard working from within procedural code. What sort of object do I need a reference to - is the camera enough, or do I need something else If there is a nice sample for animating the camera out there, that would be good too. Cheers, Ashley OK, found what I was lookin ...Show All

  • Windows Forms Sizable, "Gripable" panel or picturebox?

    Anyone seen any code around Need to render video on a dragable, sizable control that has a handle. TIA try this............. http://www.codeproject.com/cs/media/directshowmediaplayer.asp ...Show All

  • SharePoint Products and Technologies MOSS2007 Office integration...good, better, best document.

    Hi All Is there an update to the document located here: http://www.microsoft.com/office/sharepoint/prodinfo/officeintegration.mspx regarding Office version integration with Sharepoint. I need info on how well Office 2003 will work with MOSS2007 Cheers Mike I know there was a document in the works but I am not sure if it was actually released as of yet. I will check today and if it is released I will post the link. If any of the other MSFT or MVP's already know this was released and have the link feel free to piggyback here and post it for the masses. ...Show All

  • SQL Server SSIS Higher Level Edition error when run in a Sql Job

    Hi, I am receiving the following error in Sql Job agent when I try to run an SSIS package : The task "Create Excel File" cannot run on this edition of Integration Services. It requires a higher level edition. It then goes on to tell me : The Execution method succeeded, but the number of errors raised (2) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. I have tried reseting the error count to allow for the "errors" , but it stills fails. The job suceeds in Visual Studio, but not when scheduled in Sql Management Studio. Any suggestions Thanks, J. Sql 2005 Enterprise Edition. The version of SQL ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Models

    Hello im trying to load the same model many times at differnt locations first i create an array of models then i load the the models content location info then i created each model to draw in the draw method. however doing this simply is transforming the same model instead of drawing 10 seperate models here is m code if anyone can figure it out public class Game1 : Microsoft.Xna.Framework.Game { GraphicsDeviceManager graphics; ContentManager content; Model[] models; public Game1() { graphics = new GraphicsDeviceManager(this); content = new ContentManager(Services); } protected override void Initialize() { models = new Model[10]; base.Initialize(); } protected override void Loa ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dream-Build-Play: Where are thou?

    Well, on the webpage it states: The Dream-Build-Play Challenge #1 starts the week of February 5 th , 2007. Brush up your skills this weekend and be ready first thing next week. And if I know how to read a calender right, then that run has passed, and we should have that thing now. So whats the status on that Do anybody know My team is falling apart because we have to wait and wait and wait, and the deadlines keep exspanding. Whats the deal It is ok that the contest hasn't started... if your team is falling apart because Microsoft hasn't released details than I think your team has other problems to worry about. Most people I know are anxious to know the details, but are already gathering ideas, art ...Show All

  • Visual Studio Tools for Office Outlook 2003 Stationary and font color

    When using a stationary background my signature font color changes from what my settings are set at. But if I remove the stationary background all is well. Is this normal Don, I believe this behavior is by design. When Outlook applies the stationery theme it applies the font to all of the text. It is good to recall that yours is not really a developer-related question, nor is it really a VSTO question, and this forum targets mainly VSTO-related questions. Please consult the following resources to help you further: http://blogs.msdn.com/johnrdurant/archive/2005/12/07/vsto_outlook_resourcelist.aspx Best, John. ...Show All

  • Visual Studio Team System Capturing Transaction times.

    Hi, I need to capture the time taken for a specific webservice request. Following is the codesnippet where i declare transactions( it is a unit test) , But i dont see the transaction information neither in the tables nor in the graph. Any help is appreciated. string Response = string .Empty; try { //Get the response. TestContext.BeginTimer( "Negative Case Request time" ); Response = realtimeProxyObject.SubmitRequest(request, out duration); TestContext.EndTimer( "Negative Case Request time" ); } I assume you're talking about running this unit test within a load test... please verify the following. The unit test is included in the load test. The "LoadTest&quo ...Show All

  • Visual Basic Can a form be opened as a single instance using the constructor.

      I want to make sure only a single instance of a form exist using the constructor.     Here is and example not using the constructor   Public Class Myform       Private _CurrentForm As Myform     Public ReadOnly Property CreateForm() As Myform         Get             If (_CurrentForm Is Nothing ) Then                 _CurrentForm = New MyForm             End If          ...Show All

  • Visual C# arrays and properties.

    dear all, I have a class called precipitate class Precipitate { private string name; public string Name { get { return name; } set { name = value; } } } So far so good. I create an array of the precipitate class Precipitate[] prec = new Precipitate[20]; for (int i = 0; i < 20; i++) prec = new Precipitate(); when I want to access the property name for a particular array element we do it as prec .name. Again no problem here. Now I want to have something like... what I want is something like... prec .equation[j].equationname; prec .equation[j].valuex; etc... how should I do it I just know the basics and dont know if...you can create a property array "equation[]" inside the prec class and make ...Show All

  • Visual Basic Embedded Objects/Saving From Clipboard

    I'm able to copy an embedded object, specifically in Word, to the clipboard. I can even see the various types of data stored in the clipboard. My problem is getting to the object or package contents. I want to mimick the following: Select an object by clicking once on it. Copy to clipboard Paste to folder location. I've got it through #2, but #3 has got me stumped. I don't have all the code I've tried, but I could put the latest on here if necessary. Using VB.NET if that helps. Thanks for the help. in order for number 3 to work you will have to write out the file to disk....for the image format it is very easy and straight forward... Dim MyImage As Image = My . Computer ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dream Build Play today?

    Well it's just gone 9am UK time and as it's the last day of January I assume that the Dream Build Play website will go live today Roger Klado wrote: I have decipherd the Morse code. It reads as follows: Your morse code has a pretty good compression rate... ;) <snicker> ...Show All

  • Visual C++ can no longer drag arrow to change next statement to execute in vs05

    [Moved this discussion from " Visual Studio Debugger" due to no responses there.] I recently migrated from VS03 to VS05 (using VC++). Using the debugger to break into my code, I used to be able to drag the little yellow arrow to change the next executed statement. After switching to VS05 that functionality seems to be broken. Specifically: I set a breakpoint. In the debugger I can step through the code just fine (with F10). If I hover my cursor over the yellow arrow, the tool tip reads: "This is the next statement that will be executed. To change which statement is executed next, drag the arrow. This may have unintended consequences." However when I try to click and drag the arrow, I am unable to move it ...Show All

  • SQL Server Installing the cumulative hotfix onto Express

    So today I decided I may as well put the latest hotfix package for Sql 2005 onto my laptop. Unlike SP1 the hotfix actually seemed to know about SQL Express and attempt to install itself only to collapse in a big heap. The log file indicates it can't find a bunch of files it wants to patch. So how do I apply the hotfixes to Express If the upgrade or hotfix fails, it makes a bunch of entries in the System and Application event logs, and also has a log of it's own. The hotfix tells you where the log file is located when it starts. Buck Woody ...Show All

  • Visual C# How to pass a method as a constructor parameter

    I have a Counter class that runs in parallel to the main form of my app. I want the counter to know the method in the main form to call when the counter stops or reaches 0. How do I pass the address of the method in the main form to the counter in C# This would be fairly easy in C++. Or, would it be better to generate an event that is "sent" to the main form like somebutton.Click += new System. EventHandler ( this .timer1_Tick); Can I do: counter.something += new System.EventHandler(this.counterhandler_method); Thanks. Yes a delegate is nothing more than a function pointer. Unlike C++ where it is notoriously difficult to pass class members as a function pointer in .NET it is automatically supported with no addi ...Show All

©2008 Software Development Network