Software Development Network Logo
  • Windows Vista
  • VS Team System
  • Architecture
  • SQL Server
  • Visual Basic
  • Visual C#
  • VS Express Editions
  • Microsoft ISV
  • Game Technologies
  • Visual J#
  • Windows Forms
  • Windows Live
  • Visual FoxPro
  • Smart Device
  • Visual Studio

Software Development Network >> Vatroslav Mihalj's Q&A profile

Vatroslav Mihalj

Member List

blackcatsbones
huntsfromdarkness
redevil
Franz Strele
EugeneKop
Turkalp Kucur
sergio_dxi
juanazo
Kemp Brown MSFT
Stanley_S
Pastor Rod
Christian Liensberger - MSP
Steve Maine -- MSFT
HugoBeach
Rodgers
Peter Cox New Way automation
mshanzer
Matt Ahlgren
Randy Cragin
BearShare
Only Title

Vatroslav Mihalj's Q&A profile

  • Visual Studio "The class diagram service failed to load."

    imediately followed by another message: "The operation could not be completed". I got the two messages when I create a new C# project and then choose "View Class diagram" on Form1.cs. After this happens I can't open either code or designer window for Form1! I'm using Visual Studio Team Suite RC (8.0.050727.86) Asim, The solution was not simple. I had to manually delete all references to older version of .NET studios and had to delete older version of assemblies. They were all left behind. Unfortunately, I cannot help you since I don't remember the version numbers of assemblies t ...Show All

  • Windows Forms Can we use HTTP url as path to access a file from Win Form (Windows) application

    Hi!, Can we use HTTP url as path to access a file from Win Form (Windows) application. For example can I use something like this ****************************** ***************** Dim rptReport As New ReportDocument Dim rptPath As String   rptPath = " http://Reports/ sbc.rpt" rptReport.Load(appPath & ReportName) ****************************** ***************** Thanks, I'm not sure about that load method of the report object.  As far as I know, it could just go to the local directory to do the load (meaning, it requires a File Read).  I'd pay more attention to that method to see what it's requirements ...Show All

  • Visual Studio Team System Start a task and assign worked time

    Sorry for these stupid questions, but I can't find any clue how to do that. I assign an estimated time to a task. Ok, but how do I decrease that time I mean, I'm working on the task, and before/during checkin I want to enter the working time. Do I have to start the task, where do I do that, and how do I enter working time The next problem is I can't find the time fields for bugs. Do I have to write my own working items My last question is about starting the task - a task has a field Start Date - how do I start the task Steven There are no stupid questions, only stupid answers - so here goes mine :-) I am assuming that we are talking a ...Show All

  • Visual Studio Express Editions Getpixel API

    visual basic code: Where did you find this code What is it supposed to do Cut and paste of code you don't understand is always a bad idea. hdc would be a device context, the thing that Windows must generate in order to draw something. GetPixel is returning the color of a pixel in a DC, build from a window, which would be a single number which, when converted to hex, is an RGB triple. Can someone please explain to me how to use this code so that I can grab the pixel color from a location on the screen Well, forget the session stuff, and instead just pass IntPtr.Zero ( from memory, it's NULL that you want ) to GetDC to get the DC of ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to change one class to another or how to include derived in base

    Hello guys, I've been making a 3D space game in DX9 and I've run to the following problem. I have base class TELESO for every object in the space and derive needed classes from it(asteroids, ships,etc)... Well, maybe you will find this solution bad, but ...its the only thing I could do...: I want to spread chunks from object when it is destroyed. However I cannot divide object into smaller parts ingame, though I can make them in 3D program and load them as extra objects which I put into Sprite vector after the parent object dies. Anyway, the problem is that I have a derived class Chunk for those small parts - because I want to be ...Show All

  • Visual C# No of lines of code in any windows form file

    Hi, I am working on a windows form project as a contractor and we have a file of 6000 lines. Around 2000 lines are control definitions and comments. But customer has some concern about no of lines of code in one file. Is there any best practice reference for number of lines of codes in file for c# Thanks - Shoven There are so much tools available for this, don't build your own. Here is a little list: Win Count Simple Source Line Counter in C# for C# Source Code Metrics Pt 1: Line Counter LineCount for C# Projects Search at google ...Show All

  • Visual Studio Team System 32000 error on app tier install (dual-tier)

    I'm getting stuck towards the end of the app tier install using the July CTP. The VSMsiLog has an error in it... 08/18/05 21:30:10 DDSet_Error: The Commandline '"C:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\sdk\bin\Bisregedit.exe" "C:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BBIISDIR\Uninstall\BigBuildBisRegistration.xml" vsts-poc3-vs2k3 BisDB' returned non-zero value: 1. MSI (s) (EC!1C) [21:30:16:187]: Product: Visual Studio 2005 Team Foundation Server (services) (English) -- Error 32000.Failed to execute action. I looked for the xml file at that location and the uninstall directory doesnt e ...Show All

  • Windows Forms event on scaning barcode

    hi , i am using vb.net 2003 and i want to scan barcodes with the scaner i want if the scaner completes the scaning doesn't matter what the length is the next textbox is focused i tried it on different events but could not find the proper event  can any body help me  best regards ali shah The problem appears to be with the&nb ...Show All

  • Visual Studio How to get a reference to a model within code?

    Another little brain teaser: As part of this problem of creating multiple linked models I'm looking for a way of getting a reference to a model that is not necessarily open in an editor. The scenario I am considering at the moment is where I am splitting a single model over many files (to support distributed development of the model and to support diagrams of small model sections) and this single model has some elements that must be common across all files. I'm considering a solution that has the common artefacts in another file (possibly even a different DSL, reflecting the fact that the common pieces are crosscutting concerns that could re ...Show All

  • Software Development for Windows Vista Setup CTP 5231 in Virtual Server?

    Can anyone help with trying to setup the CTP 5231 in Virtual Server   Not sure of the problem but after the initial setup screen, a window pops up with Windows Installation and Setup has stopped working.  It says it can check online for a solution which just takes you back to the initial setup screen or Close the program. The details button shows  Problem Event Name: Stopped working Status code:      c00000010 Media type:       000000000 Additional information about the problem: Token:      1 TFAH eeevans Actually, ...Show All

  • Visual C# How to write "javadoc" in C#?

    Hello, Could anyone tell me how to write documentation in C#, like you do in java. And how do one compile and view this Thanx:) NDoc currently does not support C# 2.0 very well. Microsoft will be releasing an in-house doc generating tool that supports 2.0 sometime in the next few months. Announcements will be posted on the Developer Documentation and Help System forum. http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=66&SiteID=1 Michael Blome - Visual C# Documentation Team ...Show All

  • Visual C# How to add folders into .Net's install shield?

    Hi friends, I have around 200 folders in my application. Is there any way to add these folders hierarchy into my .net2005 installation project by giving the parent folder name\\*.* Please its urgent..... regards, Hi, Based on my understanding, you have a structured folder of files in your project, and you want to deploy to your client. If I misunderstood, please feel free let me know. Based on my research, we can not add a folder in the .NET Setup Project. But when you add Project Output , you can check Many Options, e.g. Primary output, Content files, please check more as possbile that will help to deploy th ...Show All

  • Windows Forms how to create and manipulate an object in the design side using only the code side?

    hi I am new to web forums, and i need to know one thing and that is on how to create and manipulate an object in the design side using only the code side, is it possble please answer me... There is a web site much like this one, except it is dedicated to ASP.NET instead of Windows Forms.  You may have more luck the ...Show All

  • Visual Studio Team System Delete workitem CMMI Project

    Hi, Please let me know any wok items in CCI project or some make them not appear in queries. Work items can not be deleted, in any kind of project. For making them not appear in queries you can always change its state and ask about valid states in the query ...Show All

  • Visual Studio Team System Deleting a Team Project

    Hi, is there any way to delete a Team Project created by me From Team Explorer exists the remove option but I couldn't find one to delete all the different parts of a Team Project (SCC, Project Portal, Work Items, etc). Is it possible Thanks a lot LucasC In VSTF Beta 3, I can not even find the deleteteamproject.exe file. Can someone confirm that it is supposed to be present, and if so, where I've installed the data tier, app tier, full client, and have searched on all of them, to no avail. ...Show All

©2008 Software Development Network