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

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

baolsen

Member List

joseangel_yanez
Tony Ba
HelOz
Quicksilver
David Eccleston - DX MVP
AmiVora
RobertW
Keith Hill
gruflee
piyush mathur Infosys
JOHNLOGIC
Rab Lucas
pyefleet
BISWAJIT DAS
Mark64
SirKnight
chmur
Khookie
Newland
Julie MacAller
Only Title

baolsen's Q&A profile

  • Visual Studio Team System TFS Beta 3 Refresh: Upgrade to Final Questions

    We are about finished with our benchmarking phase and close to being ready to use TFS on a real project.  We are thinking about installing TFS Beta 3 Refresh on a production server.  Since .NET 2.0, VS 2005 and SQL Server 2005 and SharePoint are all released products the only beta software would be TF Server itself.  What do folks think   Would it be foolish to install on a production server or relatively safe   The only reason I am considering this is that our production server is a dual 3.2 GHz machine while our current test server is a dual 500 MHz machine. WRT TFS RTM, will the RTM&n ...Show All

  • Windows Search Technologies Preview problem

    I have Microsoft Windows Desktop Search installed on a number of computers but on one the preview is not working. No e-mail, contacts etc are previewed. Only a message saying in Swedish "Det gar inte att visa en forhandsgranskning" (approx "preview can not be shown") is shown. Any ideas what to do Thanks Anders Sneckenborg Hi Anders, Just a few quick questions.. Is Outlook Open while you are trying to index it What version of Outlook are you running Do you know if there are any group policies or machine preferences in place that may stop Outlook from indexing the Exchange Server directly E ...Show All

  • SQL Server SSIS Doubts

    I am having this question in my mind from when I started using SSIS.. In a package I have an OleDB source and a flat file destination. and I hook up the source to destination in SSIS and run the package.. it works .. fine.. but internally what is done does SSIS performs BCP out Going from OleDb to flat file it just reads the data. There is no Bulk option for reading data out of SQL, because it doesn't have to worry about page allocations, changes to indexes, triggers etc. Its just reading pages from memory/disk. Going the other way it uses the BULK load operations as Jamie mentions. FYI these are avail ...Show All

  • .NET Development Compatibility of various SQL Server Editions?

    Is SQl Server 2005 Express Edition software compatibile with SQL Server 2000 software A few months back I upgraded my computer system. However I did not re-install the SQL Server 2000 Developers Edition software which I purchased, 2-3 years ago. I recently installed Visual Basic 2005 Express Edition along with Sql Server 2005 Express Edition. I believe the latter software was to replace the MSDE software available in SQL Server 2000. Would it be OK for me to now install my SQL Server 2000 software If OK, then this means that it would be running along side my Sql Server 2005 Express Edition software. Thanks Gary Al ...Show All

  • Visual Studio Team System Strange exception when running tests

    When I tried to run my tests I have this strange error: Managed Debugging Assistant 'LoadFromContext' has detected a problem in 'C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\vstesthost.exe'. Additional Information: The assembly named 'Microsoft.VisualStudio.QualityTools.ExecutionCommon' was loaded from 'file:///C:/Program Files/Microsoft Visual Studio 8/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.QualityTools.ExecutionCommon.DLL' using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFro ...Show All

  • Windows Forms Performance and Many Child Controls

    Hi, I have the need for a ListView like control (used in Details mode) that can contain one of several different child controls in each cell. I am using 9Rays FlyGrid as the ListView-like control, and placing a myriad of child controls into this FlyGrid and painting them over the specific cells they "belong" to. My problem is that the scrolling performance of this ListView window is horrendous. I have located the slowdown to the OnMouseDown method (Taking up to 1 second each time the scroll-down button is pressed) which adds up to multiple seconds quickly if pressed multiple times in succession, making it unusable. I a ...Show All

  • Windows Forms OpenFileDialog "hangs" on Windows 2000

    I have a WinForms remoted application using a simple OpenFileDialog control.  When I instantiate the dialog, the program hangs and never responds.  This only happens on Windows 2000.  The program functions perfectly on Win XP & Win 98.  The user is running the program as a local Admin, so Code Access Security should not be a problem (it s ...Show All

  • Visual Studio 2008 (Pre-release) Locbaml strange behaviour

    Hi Guys, While i am using locBaml to generate resource file from csv file, i had the folowing error: Each row must have the 2nd column as the key to the resource. My command for generation is: locbaml /generate AuthoringMain.resource.dll /trans:c:\resource\text1.csv /out:c:\ /cul:zh-CN I do not find anything worng with it Any ideads Thanks! Based on the error message, 2nd column of your CSV file does not contain resource key. When you do locbaml.exe /parse , all the correct keys should appear in the 2nd column of the CSV file. You shouldn't change them in translation. Pl ...Show All

  • Visual C# where is the code analysis tab ?

    I had installed the vs 2005 RTM version. I can't see the code analysis tab in the project properties windows. where is it Code Analysis only comes with Visual Studio Team System. It does not come with Visual Studio 2005 Professional and below. What version do you have installed ...Show All

  • Visual C# Exception calling MoveNext in MessageEnumerator on MSMQ queue

    We have a line of code that goes something like: while ( messageEnum . MoveNext ( TimeSpan . FromMinutes ( 5 )) | outstandingCount > 0 ) { ... } This works fine on machines with MSMQ installed locally that are part of a Domain (and the current user is logged in as a member of that domain) However when we have the software installed on a machine with an identical MSMQ setup but which is not a mamber of a domain but part of a workgroup and the user is logged in as a user (with administrator priveleges and full control permissons on the specific queue) on that machine we get the following exception An in ...Show All

  • Windows Forms ShowInTaskbar Issues

    Hi...i got 2 form (Form1 and Form2) in Form1 i got this private void button1_Click( object sender, System.EventArgs e) { Form2 frm = new Form2(); frm.Show(); } in Form2 i set ShowInTaskbar = false And i Got this private void button1_Click( object sender, System.EventArgs e) { this .TopMost = true ; } When i press button in Form1 twice, it will create 2 instance of Form2, if i make one of those instance as topmost (always on top), by clicking the button if i click the instance (that always on top) the other instance will show up too how to prevent this sorry for my ...Show All

  • Visual C# Verify Function Signature at compile time using System.Attributes

    Is there a way to verify a function signature at compile time in C# What I want to do is invoke functions with agreed signature at runtime. Can System.Attributes be used for this purpose How should I proceed P pardgr8 wrote: Is there a way to verify a function signature at compile time in C# What I want to do is invoke functions with agreed signature at runtime. Can System.Attributes be used for this purpose How should I proceed No you can't use attributes for this. You would need to modify a C# compiler to do it, or write a tool that can run as a post compilation step. ...Show All

  • SQL Server SQL Sever Express CTP June 2005

    Hello. I installed SQL Sever Express CTP June 2005 along w/ MS Visual Web Developer express beta2 in July '05. Because my office has Visual Studio .Net Enterprise 2003 and SQL Server 2000, our network administrator recommended that i remove the Express editions, and install the Visual Studio .Net 2003 Enterprise Edition. When i did the uninstall process, i successfully removed VWD express, but SQL CTP june 2005 is still un my system, even though i performed an uninstall and it is no longer showing in the control panel>add/remove programs list. what should i do to remove SQL CTP from my system i wish to install SQL Server 2000 as a develo ...Show All

  • SQL Server Memory Error

    After modifying a dimension, I got this message browsing my cube. Does anybody know what it means There is no error during the deployment .... ------------------------------------------------------------------------------------------------------------------------- The query could not be processed: o Memory error: While attempting to store a string, a string was found that was larger than the page size selected. The operation cannot be completed. ---------------------------------------------------------------------------------------------------- Regards Ayzan Try re- ...Show All

  • Smart Device Development Info User PocketPC

    Hi, How can i control if an user insert a system password and how can i control if system password is right What are library that i use for find a user information in compact framework Where do i find a documentation on Compact framework Thanks Alessandro Graps I'm not sure what you mean by system password - Windows Mobile does not support multiple users. As for NetCF documentation, check out MSDN ...Show All

©2008 Software Development Network