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

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

Kikkoz

Member List

Yann.G
Sheng1983
HSBF Lewe
John Oriente
A. Weisberg
Altug Atik
Cassiopeiaxy
Jeyaraj N
ekkapop
Keith Sales
wolverine123
Mr Pilley
Steve Jackson
Liquid Tobi
John Lovrinic
FWX
Pablo_B
parmanu
Jocker23
XpyXt
Only Title

Kikkoz's Q&A profile

  • Visual Studio Team System Confused by subscription options

    I manage a small department of developers and testers.  I want to acquire an MSDN subscription for each of the developers so at the very least I need an MSDN Professional subscription but I would like to get the Team edition of Visual Studio.  What I am uncertain of is if I get the team suite, does it include the team foundation server or do we have to purchase the Team Foundation Server seperately Also, all three developers are on equal level with each other in performing all functions of an architect, developer and DBA.   What should I get then   The Architect, Developer or database version of Visual studio should I get for them Furthermore, even though the team suite has three VS editio ...Show All

  • Visual C++ adding a watchpoint (breaking when a variable changes)

    How is it possible to add a watchpoint in Visual Studio. A watchpoint is basically a conditional breakpoint that is _not tied to a codeline_. What I want to be able to do is to break whenever someone changes a particluar variable. There seems to be two options: "Watch" a variable and see for myself if/when it ever changes. This is slow, and doesn't really work if you're debugging event/time critical bugs. Debug->New Breakpoint->New Data Breakpoint. This seems to be what I want, but the menu option is always disabled (even when the debugger is running). So how do I do it (I'm using Visual Studio 2005 Professional Edition) espen Run your application under debugger. Then Debug>W ...Show All

  • Windows Forms Possible to apply column style to ListView control?

    Is it possible to apply column style to the ListView control  If you have something like the  DefaultCellStyle as in the DataGridView control. The columns in the ListView looks very old and square-shaped with the Office 2003 style on the other controls. ListView is a very old control, dating back to Windows 95. That's why they invented DataGridView... ...Show All

  • Visual C# What should I do? ---help...

    when I'm doing a MDI application, I have to catch the event : when the child window is closed by click the control box. that means I have to do something before dispose the child. as : mdiParent is form1, the child window is cld. should I add event process and How thank you!! Add a FormClosing event: this .FormClosing += new EventHandler(Form1_FormClosing);   private void Form1_FormClosing( object sender, FormClosingEventArgs e) {     e.Cancel = true ; } ...Show All

  • Visual Basic StatusStrip usage

    Hi,      Have a little usage issue and yes I'm new to VB..Simple little program that will update the text of statusstrip. Works with If Then or Select Case but NOT For next The following code wil not show 1,2,3,4,etc only 10 is shown....   Private Sub Button3_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim i For i = 0 To 10 ToolStripStatusLabel1.Text = "SuperTest: " & i Sleep(500) Next End Sub problem fixed... Just a bit more searching and I found my answer... Application.DoEvents()   Application.doevents is definately preferable over a sleep which will suspen ...Show All

  • Visual C++ Accessing Image resource (bitmap)

    Hi, I tried but without success to access a bitmap file which I added in my application resource file as following: "resource.h" #define IDB_LOGOBWVISU 107 "app.rc" IDB_LOGOBWVISU BITMAP "Dessins\\LogobwVISU.bmp" How do I access this resource from within managed C++ code taking into account that I want to assign it to following Image object: System::Drawing::Image* Logo_Visu; Many thanks in advance, Stephane Hi Kenny, I followed your suggestion and went to following location: Configuration Properties > Linker > Input > Additional Dependencies When I click on the "..." button to add " ...Show All

  • Visual Studio 2008 (Pre-release) Fidalgo vs Orcas

    I'm still a bit confused about Fidalgo (WPF add-in for Visual Studio 2005) vs Orcas (forthcoming new version of Visual Studio). Particularly as Fidalgo is described as "Orcas" .NET Framework 3.0 Development Tools: http://www.microsoft.com/downloads/details.aspx FamilyId=935AABF9-D1D0-4FC9-B443-877D8EA6EAB8&displaylang=en Will there ever be a final release of Fidalgo for VS 2005 or is this really a sort-of preview of Orcas Tim Yes, no offense meant. We chose the name because to get from Whidbey (VS 2005) to "Orcas", you could take a ferry from Anacortes (on Fidalgo). Did we ruin Fidalgo's chances for future naming choices...I don't think so - for some reason the VS te ...Show All

  • Visual C# how do you put a license key in your project

    How can you put a license key in your project so when run the application you have to intewr the product key before the application can be installed Sorta like how microsoft windows does or any of microsoft products has! Thanks i tried it and i don't really care for that way... I perfer to just put the key in the project for now. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. main menus for newbie

    ok so i have just started C# and C++ and i seam to be catching on prety quickly. I have been able to get many custom modles to move with sound and effects. But today i wanted to start an entire game. so I was woundering how would i go about making a main menu/ I hae not been able to find any tutorials on it. Over @ corflower blue, Eli from Microsoft has a nice blog section on a game structure, nice class diagrams as well. Suggest you check it out - http://blogs.msdn.com/etayrien/archive/2006/12/12/game-engine-structure.aspx ...Show All

  • Windows Forms ListBox drag and drop

    Hi, I'm trying to implement the drag and drop event on a ListBox. What I want to do is to drag an item to another location within the same ListBox and drop it there. I'm wondering if there is a way to display a dotted line at the index the item is dragged into at DragEnter, like many windows applications do. Thanks. Something that used to be on the .NET 1.1 Windows Forms FAQ (See the OnDrawOver method): namespace DragDrop { using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; /// <summary> /// Summary description for Form1. /// </summary> public class Fo ...Show All

  • Smart Device Development ActiveSync 4.2 - No option to combine only replace?

    Hello, I am having a problem of synching between my computer and my Pocket PC (HP iPAQ 6945) with ActiveSync. When I was using ActiveSync 3.8, I was able to see and select an option to combine information from both the Pocket PC and the computer. Now, after upgrading to 4.2, I only get the option of replace. I am only able to replace the data on the computer with the data on the Pocket PC or vice-versa. I have searched around for the solution to this but I simply have not found it yet. Any help would be extremely appreciated. Thanks! This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a ...Show All

  • Visual Basic Source Control saving changes

    Upon saving changes to code can Source Control receive a copy of the current version of code It can update Source Control upon exit of Visual Studio but upon save could be better for some situations. There are several different "Source Control" programs on the market today. If you are using MS Visual SourceSafe I'm not aware of that feature. ...Show All

  • Visual Studio Team System Core Fields and Custom Fields Question

    Hello, I was trying to create an alert that would always fire an e-mail when a custom field was set to a certain value. The alert would fire when the custom field was set to the value, but subsequent changes to other fields on the work item would not send alerts. The attached post explained why: https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=470158&SiteID=1 So my follow-up questions include: Is there any way I can add a 'core' field that will be evaluated whenever the work item is changed If not, how can I get a list of all possible core fields, maybe there is a field that is close to what I need and I can use it I looked on the Fields table under TfsWorkItemTracking, but my feeling is this ta ...Show All

  • Gadgets radio form buttons?

    simplest way to do this settings box does this: 2 radio buttons so that you either select optionA or optionB on click OK settings are saved Gadget does this: upon closing of settings dialog box gadget updates to the settings you entered via funtions such as function optionCheck() { IF OptionA == "true" do this { some more stuff } Else { do this instead } } basically what I would like to do is have the settings dialog box open with 2 radio button options which are then saved so that I can then have the gadget can a function that checks the settings and changes itself accordingly. This should be really simple but for some reason I just can't get it, actually as you can ...Show All

  • SharePoint Products and Technologies Top blog site entry view in parent team site

    I have a default site with a subsite (blog site). I would like to display the top blog entry in the parent default site. What is the best way to do this TIA, VC http://blogs.msdn.com/markarend/archive/2006/07/25/678445.aspx ...Show All

©2008 Software Development Network