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

Software Development Network >> Johan Bellander's Q&A profile

Johan Bellander

Member List

Juxos64
CNH
Gabriele38
karthic
Belzicool
Joshd23
J_Mizza
mo.
amat2to0
AncientTones
Doug Simmons
JamesFM
Godfreydsa
Dana Hanna
Cyonix
shodan
Michael Barrett
orama
gue22
Ryan Osman
Only Title

Johan Bellander's Q&A profile

  • SQL Server Modify SSIS Package

    I have created an SSIS export package by right-clicking on a database, choosing 'Export Data', specifying all settings using the wizard, and choosing to Save the SSIS Package, with the SQL Server option checked. I now want to run the package, and schedule it to run on a regular (daily) basis. The problem I am having is that I can't find the SSIS Package anywhere! I have looked in Microsoft SQL Management Studio, at virtually every element in th ...Show All

  • Windows Forms Web Browser Sizing

    How do I set the height, width, top and left of a form to the Web Browser Control's web page specification in VB .NET 2005 Basically like in VB6 or with the AxWebBrowser control you have subs that say SetHeight and what not. Can someone please help me out here Thanks! Well if any body knows, I am still waiting for the answer on this one. I got the WB.Document.Size.Width to work but it not able to get the new windows size. I have been ...Show All

  • Visual Studio Team System How do I change the process template in which a project was created?

    I have multiple projects that were created during the beta with differing templates. Project1: CMMI Project2: Agile ... etc Now that we evaluated the templates, I would like to change the existing projects to use a new template, that may or may not be customized, and may be a third party template. What are the steps to change the templates If the answer is no, I can deal with loosing work item history but not source control history ...Show All

  • Smart Device Development error C3861: 'wcsftime': identifier not found

    I am converting a project from EC4 to VS 2005 and I am gettign this error right off the bat. The actual line : C:\Program Files\Microsoft Visual Studio 8\VC\ce\atlmfc\include\atltime.h(402) : error C3861: 'wcsftime': identifier not found This is coming up right on the StdAfx.cpp file which looks like this: #include "stdafx.h" #ifndef UNDER_CE #ifdef _ATL_STATIC_REGISTRY #include <statreg.h> #include <statreg.cpp> #endif ...Show All

  • Visual C# How do I tell when all threads in a pool are complete

    I have an app that uses a thread pool to ping all hosts on the local network. Each thread updates a listview with the status of that IP - alive or dead. When all the threads are done, I want to remove all the dead links from the list view. How can I tell when all the threads have done their job What is the best way to loop over the listview backwards (I assume backwards is best since the items are indexed...), removing each dead link (t ...Show All

  • Visual Studio Team System Beta 3 was supposed to come out with VStudio RC1 - but where is it?

    According to this announcement: http://blogs.msdn.com/somasegar/archive/2005/08/22/451026.aspx " Simultaneously with Visual Studio 2005 RC1, we will also release Beta 3 of Visual Studio 2005 Team Foundation Server (TFS). T" Now, Visual Studio 2005 RC1 has been released. So my question is: What has become of Beta 3 of TFS Next week I need to start evaluating TFS, but I don't want to go to all the trouble of installing Beta 2 if Beta 3 com ...Show All

  • Visual C++ Debugger problem "The breakpoint will not currently be hit. No symbols have been loaded for this document."

    I have recently install VS 2005 Pro and I cannot get breakpoints to work properly in my C++ Win32 application. After compiling for Debug and placing a breakpoint, when I run my program the breakpoint indicator becomes a hollow circle with an exclamation point and I see the above message when I hover over it. This makes no sense to me because I have verified the following: 1. Yes, I have compiled for Debug. 2. Output for my program indic ...Show All

  • SQL Server disk outage and the database

    I was at the SQL Server launch in Detroit and they talked about if a disk outage occurs with SS05, then the database doesn't go down, just access to that data. So, it was conveyed that in SS00 the entire database is lost. For SS05 however, whenever someone talks about this feature, it was always with table partitioning. Is this just conicidence, or something that table partitioning helps with and you need it If I didn't use table partitioning, ...Show All

  • Visual C++ arrow, delete and number keys don't respond.....

    Using VS2005 C++ beta 2 every now and then I can't use my delete, backspace, arrow keys or my side number pad while working in the VS enviornment.  I thought that I might have lost focus but the carret is still blinking where I was last at, and if I type the numbers or letters on my main keyboard then I can do things...  The worse is I can't delete.  At first I thought this was just in debug mode but it now started happening whi ...Show All

  • Visual Studio Team System Microsoft.Cci.Field and enumerations

    Hi How do you tell if a Microsoft.Cci.Field instance refers to an enumeration Thanks Hi Thanks Nick Once I managed to connect the debugger to FxCop, I was able to examine the contents of the various classes in the Microsoft.Cci library and solve all of the these problems myself. Writing these plugins would defineity be a lot easy if the Microsoft.Cci library documentation was published. I was also wond ...Show All

  • Visual Studio Team System How do I keep TFS services up all the time? Application event 9001 and 9002...

    Hello, I am having problems with Team Foundation services staying up on the server. I show application event logs of these services stopping and starting with no error associated: Team Foundation Core Web Service Application Team Foundation Source Control Server Warehouse Controller Application Work Item Tracking Web Service Application All of these events are 9001 and 9002. This is a single ...Show All

  • .NET Development KeyValuePair doesn't receive variables as parameters

    Hi, I'm writing an XML serializer that serializes (among other things) Generic types, such as IDictionary<>. In order to do that, I need to go over the KeyValuePairs in the object. I thought that if I use the GetGenericArguments() function, I'll get the key and value and then I could perform a foreach. Like so: Type [] arguments = type.GetGenericArguments(); Type keyType = arguments[0]; Type valueType = arguments[1]; ...Show All

  • Visual C++ Linking to static lib created with vc7.1

    I am trying to do a program where i need to use some static lib's created with vc7.1( i am new to this) so what is best practice since i get linker errors that msvcp80.dll missing and if i exclude then i get 10 thousend other error. co how to use a static lib wich is compiled with vc 7.1 lib should i use 7.1 lib, and if howto set this up Or you can just contact the owner of the of the lib and get the sources if applicable. Thanks,   A ...Show All

  • Windows Forms I can not get value from other form. Please help me about this.

    I tried to get value from other form but did not suceed such as :           Form2: form I want to get textBox value    Form1: form I enter value into textBox1 after that I open Form2 and I want to get value from Form1's textBox. Form1's code :    public Textbox Textbox1    {       get{ return textBox1;}    } ...Show All

  • Visual C++ What API to use to parse file names in a given directory

    Hi, Long time back I had used this windows API. What this API did was input = pointer to a directory Then you called it in a while loop and it returned the file names(full path) in that directory one by one. You had the option of doing this recursivley also. You could give wild cards like *, etc.. In other words it just imitates dir /s command and I want to do it programmatically. If some kind soul could please point me to the API I wou ...Show All

©2008 Software Development Network

powered by phorum