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

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

Worf

Member List

Matt Turk
Penicillin
Udii
lknm
dummies
kid_kaneda
VFaul
Jane Sathyan
VTS
Donal Lafferty
andyfraser
UtterMan
ashwin_k_s
SanderS
cammy9.9
Ather.
PradeepVaithy
rexx42
rwbogosian
OscarKwok
Only Title

Worf's Q&A profile

  • Software Development for Windows Vista Is it possible to exchange a running workflow for a different workflow?

    Hello everybody! Let me explain my situation: I created an ASP.NET web-application which is based on a state machine workflow. When one of our customers is not satisfied with the default implementation of the workflow, I need to exchange the running workflow with a different workflow. The changes to the workflow are minimal, but they are required for the customer. Is it possible to exchange a workflow for a different one, even if it is already running and there are persisted workflow instances in the database If not, what can I do to accomplish this Thank you for your quick answer! I read your post but now I've got an other question: How do I accomplish that my ASP.NET web-applicati ...Show All

  • Visual Studio Tools for Office Getting "Cannot add chart" when trying to add a chart to an Excel workbook

    Hi, When I try to add a new Chart object to my work book I am getting this message: "Cannot add chart. Excel might be in a mode that prevents charts from being added." Can someone tell me what is this Thanks, No idea to which "pane" you're referring, but try taking it out of the separate thread and see if that makes any difference. When you run into a problem that's happening in one place, only, that's how you start trouble-shooting: take away everything that's different from other projects, then put these things back one at a time until you isolate the cause. One other possibility is that the Excel workbook file, itself, has been damaged. I don't know how likely this is, but try ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed C# performance loss.

    I caught some people quoting managed performance loss at only 2% (over unmanaged). I am just curious how accurate that assessment is. Last time I was looking into it, DX programmers were quoting 90% of managed performance as a BEST case scenario. (usually much lower) If the margin has grown so low, is there any large scale games developed using C# Remmie wrote: ...remember that fast software is mostly a matter of good software design :) Ain't it the truth... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Mesh disappearing after a small amount of time

    Hi all, well after playing a bit of beta 2 i founded a problem! Basically in my game, there is one spaceship that goes constanly in (depth, Z...) and there is camera that follows him all the time.And then, suddently after small amount of time (5-7sec) everything disappear, i can only see my background color. So does that mean that 3D space have its boundaries, where the meshes will get disposed If so, is there any way to expand them My game is supposted to be like real-time spaceshooter. Some snippets of code that may can help: =========================================================== private Vector3 SpaceshipPosition = new Vector3(0.0f, -450.0f, 50.0f); private Vector3 CameraPosition = new Vector3(0.0f, 0.0f, 5000.0f); override Update() ...Show All

  • Visual Basic Intercepting a CD Tray Open

    I know how to open a CD tray programatically, but is there anyway to determine when a user has pressed the button and then either allow or disallow the tray from opening, or is it strictly a hardware issue Thanks in advance. not quite. It really is hardware based to be honest. Well, actually you could do this but it would require some hooks into the OS/kernel and listen for those events then some how cancel the event but really not worth it as it requires alot of calls to Win32 ...Show All

  • Visual Studio Team System TF MSSCCI Provider on 64Bit Windows Server

    I can't seem to get it to install. Does the provider support 64bit OSs Thanks, Blair This is fixed in the 1.1 version which you can find here . Ed blog: http://blogs.msdn.com/edhintz ...Show All

  • Visual Basic Multiple Checkboxes, 1 Varible

    Is it possible to have mutliple checkboxes (two or three) change the same variable, but when one of them is set to True, all change to True You also can create a form-level property like that: Private Property MyGroupChecked() As Boolean    Get        Return CheckBox1.Checked    End Get    Set ( ByVal  Value As Boolean )        CheckBox1.Checked = Value        CheckBox2.Checked = Value        ' and so on ...    End Set End Property And then, write this event handler: Private Sub MyGroupHandler( ByVal sender As Object ...Show All

  • Visual C# Performance Optimization in C#

    Hi to all C# developers, (This thread is posted to 2 forums: MSDN Forums - Visual C# General and to channel9.msdn.com - Techoff ... the reson is to get as much as possible support on this thread :)) With this thread I will give you some performance optimization in C# and get also some from you. I hope you will support this thread and write down you performence optimization in C#. I hope also to discusse some of the issue with you all. Here are some of my first optimizations from my site: 1. Used always sealed classes when the class haven't any derived classes. Some additional infos from this point: The sealed modifier is primarily used to prevent unintended derivation, but it also enables certain run-time optimizations. In p ...Show All

  • Windows Forms MTAThread and AutoComplete

    I need to use the WaitHandle.WaitAll and TextBox.AutoCompleteMode. The problem is that the first requires MTA and the latter STA . Is there any way around this rich Hi Rich, Based on my knowledge, to invoke a method on UI Control on the main thread from another thread, we recommend you use the Control.Invoke which is implemented by SendMessage. Due to the Winform is not thread safe, we do not recommend you put it into MTA thread. Also .NET do have more payload than Win32, because if the .NET code underlyingly call the unmanaged code, it need P/invoke or COM interop marshalling(if .NET code call an unmanaged COM, we also need marshaller). Also for .NET code to run, the .NET runtime need to JIT the MSIL to nat ...Show All

  • Visual Basic O'kay so I now have a working application. How do I port it to other computers?

    I can install VB 8 onto other computers along with my application, but that seems unusual. The other PCs never will be programming in VB. They want to just use my application. Question: Please explain to me in a step-by-step button clicking and dragging fashion how to do this. More Simple To Vb menu click build. Then outside the vb open the folder of Yr app. You'll find there a folder bin and there You have the exe file. Just run it and everything is ok ...Show All

  • SQL Server Grouping with Page Break

    I have a report that shows the monthwise details, i have performed this using the table control. the requirement was to have a page break after each month detail. End of each group display the monthwise total. This is absolutely working fine. My problem is, I am suppose to display the Report total also. I used the Sum in the Table footer. The sum is coming fine the only problem that i have is it is printing on the a New Page instead of the Last Page. Please suggest. I have to display the Report Sub Total of the Group that i am already doing in the Group Footer, Where as I am wanting to display the Main Total of the Report, It wont work in the Group Footer as it is the Full Report total. I tried to add a new Group fo the repo ...Show All

  • Windows Forms binding 2 xml files to one DataGridView?

    Greetings, [C#] I have a DataGridView that I need to load key values from two XML (resx) files both with the same layout & keys... the DataGridView has 4 columns (Name, Value, Comment & DataX).  The Name, Value & Comments are taken from one xml file & the DataX is taken from the 'Value' key in the other xml file. I can't seem to get them to load, I get "Column 'Name' is constrained to be unique.  Value 'FirstName' is already present." Do I need to do an inner foreach loop private void BindResXtoDataGridView()     {         XmlDocument doc = GetXmlDocument(); // loads xmldata.xml         XmlDocument docX = GetXmlDocu ...Show All

  • Visual Studio Can't See the CR component in Visual Studio 2005

    Hi, I can't see the Crystal reports component in visual studio 2005 when I click Add New Item in the solution explorer. Any ideas as to why or how I can add the CR component Thanks Chieu Crystal Reports XI release 2 is the only full version that supports the .Net 2.0 framework; so, yes, if you want access to the features that come with the full version of Crystal Reports developer then you will need to upgrade to Crystal Reports XI. That said, you can also make use of the version of Crystal Reports that comes with Visual Studio 2005. It should be installed by default with Visual Studio. - Dave ...Show All

  • Windows Search Technologies WDS Installation & Lookout Search

    Hi I have been trying to install either Lookout Search or as an alternative WDS 3 but with no success. Lookout search starts the installation process but then tells me outlook is running and it cannot install. I have tried to install with outlook closed and open with no success. WDS again this starts the installation process but then says it cannot find the log file and gives up. Any ideas anyone thanks Shauna Do you have any previous installation of MSN Toolbar and/or Windows Desktop Search Please post the content of c:\windows\kb917013.log where c:\ is your system drive. Thanks, David Peng (MSFT) ...Show All

  • Visual Studio Tools for Office Transfer windows form contents to a word File

    I am having a VS .NET C# windows form containing about 20 textboxes,  20 labels and 5 combo boxes. I want to have a button on the same form. On click of this button i want to tranfer all the contents of this form to a word document and it should show the word document containing whole data. Also there should be no versioning problem with word version. User can have any version of office installed on the system or not installed at all.     Gaurav Funny. We all earn our living by writing solutions. Why would we email one to you for free... In any case, this is not the appropriate venue for getting assistance on how to automate the Word application interface. You should ask for help here http://m ...Show All

©2008 Software Development Network