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

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

Kudzu22

Member List

Gianluca Colucci
DLG007
Robert Meek
GeorgeWangAtSomeCompany
Tom Servo
Forgon
polymorphicx
0ren
Brad B
Adhvika
TheBlackDahlya
Devi48354
LordZoster
Grayson Peddie
Dave Alessi
Furqan Farooqui
ahmedilyas
M Rice
Arda Cetinkaya
prashant mulay
Only Title

Kudzu22's Q&A profile

  • Visual Studio Team System 'Value does not fall within the expected range' error message when using the Performance Report

    Hi folks I am trying to get a performance report on a C# project that is referencing a C++ Class Library. If the C++ Class Library is added to the C# Project as a reference I get the error: "value does not fall within the expected range" And the performance window behaves strangely until I restart VS. I don't even have to use anything in the C++ Class Library - just the reference to it kills the profiler. To replicate this simply do the following: 1. Create a new C-Sharp Windows Console Application in a new Solution 2. Add to the solution a C++ CLR Class Library Project 3. Add a Console.Writeline("Hello World\n"); to the C-Sharp main() 4. Open the Performance Explorer and use the wizard to profile the C-Sharp App ...Show All

  • Visual Studio 2008 (Pre-release) Next CTP? Will it include a the much anticipated provider?

    When can we expect the next CTP of Linq Will it be with the August drop that has been hinted at for ADO.NET Entities Will it include the full provider model so that we can begin building out support for databases other then SQL Server Will it support SQL Everywhere Thanks, Steve I have answered the CTP question in another post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=550356&SiteID=1 LINQ to SQL (aka DLinq) will not be in the August ADO.NET Entities CTP. So we will be looking at other avenues for the DLinq provider model. We are also looking at SQL Everywhere support as a separate item but haven't made a decision yet. Thanks. Dinesh ...Show All

  • Windows Forms Any way to suppress click getting called before double click?

    I have a graphics drawing tool where click = select, double click = open a dialog. Double click fires click (this is all done inside a panel control) -- which means my object gets selected before the dialog opens. It doesn't seem possible to over-ride this behavior -- is this true I played with figuring out the clicks and double clicks myself with a timer approach (e.g capture the tick count in mouse down, start a timer in mouse up, count clicks based on the delta time between the timer firing and the mouse down etc.) and although this worked so-so in a 20 line program it completely falls apart in the 30,000+ line application. Overriding WndProc and doing everything .net already does would seem to lead me down the same road. I' ...Show All

  • Visual Studio ValidateMultiplicity and inheritance

    Hello - I am having some issues with child domain classes properly inheriting mutliplicity validation methods from their base classes. I have a DomainClass, ParentClass, with a relationship to some other DomainClass, TargetClass1. Multiplicity is validated as I expect. I have another DomainClass, ChildClass1, that inherits from ParentClass. ChildClass1 does not add any more relationships. The multiplicity rules from ParentClass are validated as I expect. I have a third DomainClass, ChildClass2, that also inherits from ParentClass. ChildClass2 adds a relationship to some other DomainClass, TargetClass2. The multiplicity rules for ChildClass2's relationships to TargetClass2 are validated as I expect. However, ChildClass2's multip ...Show All

  • Windows Forms Vista style windows in C#?

    Hello! Is it possible to make Vista style windows in C# Like with a translucent border and titlebar Please give me some samples and pointers. Thx! Matt I would like something like this: http://www.codeproject.com/useritems/Translucent_Windows.asp only for C# not VB. Matt ...Show All

  • Visual FoxPro how to check for your prg running?

    heres my prob. when you launch my application and minimize it and then try and launch it in a second screen you get alot of errors. how can i check if the program is already running so i know to cancel the prg right away if it is alrdy running *Main.prg If IsAppRunning( "MyApplicationUniqueName" ) && use any unique string for your application - ie: FoxMeUpAccounting messagebox("Application is already running") return endif Function IsAppRunning Lparameters tcSemaphoreName Local hsem, lpszSemName #Define ERROR_ALREADY_EXISTS 183 Declare Integer GetLastError In win32API Declare Integer CreateSemaphore In WIN32API ; string @ lpSemaphoreAttributes, ; ...Show All

  • Visual Studio Visual Studio 2005 SP1 for which edition ?

    I erroneously posted this in the .Net setup forum so I am reposting it here. There is a Visual Studio 2005 Service Pack 1 at http://www.microsoft.com/downloads/details.aspx FamilyID=bb4a75ab-e2d4-4c96-b39d-37baf6b5b1dc&DisplayLang=en. The brief description says: "This download installs Service Pack 1 for MicrosoftR Visual StudioR 2005 Standard, Professional, Team Editions." but then I read:under Overview: " This download installs Service Pack 1 for MicrosoftR Visual StudioR 2005 Team Suite." This is confusing. Is this service pack only for the Team Edition or is it for the standard, professional, and team editions Gabriel Lozano-Moran wrote: It is the service pack fo ...Show All

  • Visual Studio Express Editions Problems with writing data to an Excel file

    I searched online, and find some materials about exploring data to Excel using C#, however, it usually relates to ADO.NET or datagrid... In my application, first I receive data from the COM port and then after some comparation, I should write each data I received to the desired column of the excel file.. I use the streamwriter to write data to excel file using (StreamWriter sw = new StreamWriter((@"C:\" + DateTime.Now.ToLongDateString()+".xls"),true)) As I need to record the date when the application runs, I have to name the file as the current date, so it is quite different from many examples to create a new Excel application as: private Excel.Application m_objExcel = null; m_objExcel = new Excel.Ap ...Show All

  • SQL Server Differences between 2000 and 2005

    Just installed 2005 Enterprise Edition on an XP Media computer... I am blown away because nothing looks familiar to me. Anyone else feel lost Where is the best site for specific changes from 1 version to another... it appears that Enterprise Manager is gone, Query Analyzer is gone, my brain is gone thx Kat hi kat, Use the developer edition. enterprise edition works best on servers. developer edition works better in Xp. developer edition  have the same functionallity as the enterprise except that the  are used in development environment.   good luck with your interview   regards, joey   ...Show All

  • Software Development for Windows Vista State Library

    Hi, If I'm using a SequentialWorkflow I can create a ActivityLibrary, for example, with Business Activities, and give to clientes an environment to create business workflows. My question is, if I'm using StateMachineWorkflow I can create a State Library to clientes just create a workflow using my states. In each state I'll encapsulate some activities like EventDriven activities, StateInicialization, etc... Thanks for the atention. Take a look at this post for more information and examples. ...Show All

  • Visual Studio Express Editions Add Subroutine programatically when a Button is clicked.

    I want to add a sub to a form when a button on another form is clicked. No can do, that takes a compiler. You can't recompile a form while it is being displayed. Explain why you'd want to do this... ...Show All

  • Visual Basic How to import vCards?

    Hi all, I want to import vCards in my Vb.Net 2005 application. I tried this code to read the adress: Dim adress as String Dim adress_start as Integer Dim adress_end as Integer adress_start = vCardString.IndexOf("ADR;TYPE=HOME;") adress_end = vCardString.IndexOf(vbCr, vCardString.IndexOf("ADR;TYPE=HOME;")) adress = vCardString.Substring(adress_start, adress_end - adress_start) It works, but I think there is a nicer method to do that. Could you help me Thank you. Instead of the string parsing, which probably would work, you could also try a RegEx.Match. The tricky part there is figuring out the regex expression. You would also want to test the performance of the simple stri ...Show All

  • .NET Development Parsing double value from a string

    Hi all, I need to parse a string which is in the following format (example): -0.0004 USD/Tonnes Basically, it will be a double value, might be preceded by the negative (-) sign and followed by <Currency>/<Unit of Measure> . The result should be just the double value (with the sign if its there), as in the above example, it should translate to -0.0004 I wanted to know if there is an easy way of doing it in C#, like using the Double.Parse() or the string.Format() methods (I tried them both but couldn't get them to work) Or do I have to parse the string character-by-character to get the required result Thanks in advance, MadMonk P.S.: Apologies if its a silly question, I'm still a newbie in .NET ...Show All

  • Visual Studio 2008 (Pre-release) Cider Release Strategy

    Is Cider (and all the .Net 3.0 project support) going to be released as an addin to VS 2005 or is it only going to be released in the next version of VS (Orcas) Steve Mark, With WPF slated to be released with Vista in the 4th quarter of this year ( as soon as a month from now), the final CTP will be very soon. Do you know (or can you say) what the final CTP feature set will be For example, will event handler from Cider be in this release Steve ...Show All

  • SQL Server Hide Database Design

    Hi I wanted to see if Microsoft was going to address this problem We as developers want to hide our database design (SQL Express DB) We dont want to rely on the user rights settings to secure the design Most of our clients have admin access which means that they can see the db design We are happy for the design to be available on the server as change control should be given only on the server I am perplexed how this hasnt been addressed Your reply is appreciated T Hi Mike Thanks for that great answer As long as we can setup replication as in SQL Express and manipulate the database with a similar Management tool then it is a good solution and answer How long do you t ...Show All

©2008 Software Development Network