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

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

DDressel1

Member List

Teggno
errolian
Andres Citeli
Healthcare Network Admin Jerry
Chrono20944
ZardoS42
Sam Fowler
zeeshanSami
Joe Duanel
04-digit0l
Big5824
Thomas S. Andersen
Here2Play
de_Stan
ekb0211
Marcie103
markovuksanovic
Vipul123
yanivpinhas
nodoutt
Only Title

DDressel1's Q&A profile

  • Visual Studio 2008 (Pre-release) custom control problems

    i am writing a custom control to draw a series of polylines. i've managed to create a nice little program that does just that (and also draws the equivalent bar chart :-) ) but i am having problems converting this to a custom control. my first problem is that i do not know how to create DP's for an unknown number of user defined variables. for example i want the user to be able to say something like: <LineChart .........................> <Line> <"series of points"/> </Line> <Line> <"series of points"/> </Line> .................. </LineChart> (the reason for having any number of lines is that i want to be able to add and delete lines at runtime) my initia ...Show All

  • Windows Forms How to restore Local security policy

    I'm currently using Windows XP home edition, and when I go to Administrative tools and Look for Local security policy it's not there. When I try to search it, it's not found. Is there a way to restore it back in there short f backing my system. Thank you. This forum is for topic discussion for developers relating to Windows Forms applications using the .NET Framework and is not for topic discussion relating to general Windows support. Please do not promote the usage of off topic articles being posted in this forum. Please visit http://www.microsoft.com/communities/ or redirect your issue to a forum that better suits your problem. Thank you. ...Show All

  • Visual C# Inaccurate/Wrong calculations

    Hi, I working on a fairly large project in C#, combining numerous components such as SQL and DirectX. We all, however, seem to have come across a severe problem! We can't do basic arithmetic! For example, in VS.NET 2003, I need to subtract two UTC style time values - eg 11565456546546.1342345566 etc. double large_val1, large_val2; ... double difference = large_val1 - large_val2; Instead of the result I expect (and indeed the result shown in the Watch window during debug for large_val1 - large_val2), I get a servely rounded value instead - that is entirely useless!! Help!! I can do this in a standard command line / console application and everything works fine - why should there be any difference ! I have tried decimal, ...Show All

  • Visual Studio Team System Modeling Solutions, Projects and References - Not Libraries

    I'm trying to consume the Application Design, System Design and Datacenter Design mentality in order to become facile in modeling applications. It has taken more than a decade of reading, trying and adopting for me to grasp what UML represents, what its useful for and how to work with it. Therefore, I expect a substantial learning curve in regards to SDM. In fact, if I am told there is not a curve, I know I'm not asking the hard questions. The point that has been asked in this forum regarding how to model a class library is the frayed end of a long thread in modeling processes. Below I have included a couple paragraphs from TN_1113 in the Team System \ Reference \ Technotes section of MSDN. The question I have is deep; it it do ...Show All

  • Visual Studio Express Editions accessing outlook express address book using C#

    Hi guys, can any one tell me how to access outlook express address book from C# or vb.net thank you Hi, I'm not quite aware of an managed API that accesses Outlook Express. All I know about is the managed API for Outlook. But there are 3rd party Outlook APIs that you may want to take a look at. http://www.nektra.com/products/oeapi/ cheers, Paul June A. Domag ...Show All

  • SQL Server XML / XML Data Type Question

    Say I have the following T-SQL: Declare @Doc xml Declare @Table Table (ItemType nvarchar(10),UserType nvarchar(20), UserCount int) Set @Doc = ' <row ItemType="UserCount" UserType="Corporate" UserCount="0"/> <row ItemType="UserCount" UserType="External Billable" UserCount="0"/> <row ItemType="UserCount" UserType="External Non-Billable" UserCount="9"/> <row ItemType="UserCount" UserType="Internal Billable" UserCount="71"/> <row ItemType="UserCount" UserType="Internal Non-Billable" UserCount="0"/> <row ItemType="UserCount" UserType="L ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Animating Billboards Using A Single Texture

    I just finished a basic billboard class that is capable of reading in multiple textures and animating. However, I would like to read in a single texture file and be able to simply change texture coordinates to change the appearance of the billboard. Now, I could recreate my VertexBuffer each frame, but that would be a lot of wasted processing. Is there a way to dynamically alter the texture coordinates for VertexBuffer objects each frame Edit: As a bonus question, how do I enable the alpha channels in my textures Right now it shows up white. I am using the BasicEffect. Would I have to write my own effect just for that Seems rather silly but I will if I have to. Edit 2: As bonus question 2, how can I disable antialiasing of my textures I'm ...Show All

  • SQL Server Dynamically changing task name displayed within ForEach Loop Container

    Does anyone know how to change the task name displayed within a ForEach Loop Container (or of the ForEach Loop Container task itself) based on a variable. I am pretty familiar with setting variable values during task execution and using expressions to alter task properties based on variables. I have tried using an expression to alter the value of the Name property of the ForEach Loop Container but the name of the ForEach Loop Container does not change during execution. Since the color of the various tasks change during execution, I would think that the task names could be changed as well. You can create checkpoints or if that does not fit your needs; you could write to a file or table on each iteration an the look at that. if you ...Show All

  • SQL Server Problem with parameter selection.

    i have a first parameter where user can select either office or hometown selection. based on this selection i have two more paramters in which only one should be populated and the other should be disabled. i was able to manage to do it, but when i veiw it in the report viewer the problem is its not populating the values for other one which is supposed to be at the same time it says select a value in that combo and report doesn't execute bcoz of this. any help. parameter1 choices : office, hometown. parameter2: will be populated if office is selected parameter3: will be populated if hometown is selected. is there a way to disable completely upon selection of the first one. Thanks Kishore. ...Show All

  • Visual C++ Weird "Goto" statement

    I was reading an article entitled "The Case for Virtual Register Machines," where it had this code snippet: typedef void *Inst; void engine() { static Bytecode program[] = { iadd /* ... */ }; Bytecode *ip; Inst dispatch_table = { &&nop, &&aload_null, .... }; int *sp; goto dispatch_table[*ip]; iadd: dest = ip[1]; s1 = ip[2]; s2 = ip[3]; reg[dest]=reg[s1]+reg[s2]; ip+=4; goto dispatch_table[*ip]; } I've never seen "goto" used that way. I thought it could only be used for jumping to labels. Anyone know what this is about You are correct: neither Standard C++ nor Standard C supports syntax like this - they only support goto label. Having said that I have seen syntax like this in ...Show All

  • Windows Forms How to change ToolTip fading in ToolStrip?

    I have create a ToolStrip . Inside the tool strip there is a toolstripbutton which is use to show and hide the calendarpicker under the toolstripbutton . The calendarpicker will auto hide if mouse cursor leave the calendarpicker control. The problem is if the tooltip's text for the button is show with in the calendarpicker area, When the cursor is inside the the monthcalendar and accidentally move to the tooltip text the monthcalendar will be hide even the cursor still inside the monthcalendar area. So i plan to disable fading effect in for tooltip in toolstrip control. Please advise. Thanks in advance. nobugz wrote: You'll have to temporarily disable the tooltip while ...Show All

  • SQL Server SP1 Installation note

    I was having a problem installing SP1, it would barely get started before it would fail. I found it had to do with having many of my databases on an external USB drive. I detached all of those databases, rebooted the machine and then attempted to re-install the Service Pack. This time everything worked fine. Just passing it along in case someone else ran into this. Just after it started a small dialog box popped up. It basically said the installation failed with the following error -- and there was nothing following it!! What I did is when the send an error report to Microsoft popped up - I looked at the contents and followed its link to c:\windows\hotfix\hotfix.log The contents (which are below) con ...Show All

  • Visual Studio Looking for laptop, should be fine with .Net Framework.

    Hi, I'm planning to purchase a laptop but don't know exactly what minimum config is required to run it, specially in case of laptops. I have gone through lenovo C100, i think the processor is Pentium M. Does it support .Net without any problem " Can anybody help in this regard. Agreed with Brendan here. Laptops these days are fine to run .NET on, even ran .NET on a PII 350 laptop and that was ok, of course performance was a bit of an issue (was a reallly old laptop) you should be fine with any laptop these days for running .NET, and as said, .NET is software and has no real requirements to run on a specific set of computers/laptops. Personally, anything more than a PIII 800 would be more ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. When will the next beta of GSE be released?

    When will the next beta of GSE be released Jim Perry wrote: Why would that be helpful How does knowing when the next release is coming out help with testing the current version That is what we're supposed to be doing - testing. It would be helpful so we would know when we can actually begin testing. Right now a lot of us feel that the current XNA is not in any shape of usability since so much is missing. Simply put, there is nothing to really test with the current version other than that the install worked. The content pipeline is where we can really start testing as far as i'm concerned. YMMV, but that is just where I, and a few others stand at this point. ...Show All

  • SQL Server Visual Studio 2005 The remote connection to the device has been lost. Please verify the device connection and restart debugg

    Basically I've been using Visual Studio 2005 for a few weeks now moving a Pocket PC project from 2003 to 2005. When I hit the Start Debugging Button every time until today the project would rebuild and deploy to my pocket PC allowing me to debug etc but now I get The remote connection to the device has been lost. Please verify the device conection and restart debugging. I used to get this problem in VS2003 sometimes and just like the numerous posts on different sites that I've looked at the problem eventually goes away and I'm none the wiser. One guy said that he found that if he went to bed the problem was resolved when he came back! My PDA running Windows 2003 2nd Edition is directly connected to my PC via a USB port. I've re ...Show All

©2008 Software Development Network