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

Software Development Network >> Scott Fisher's Q&A profile

Scott Fisher

Member List

BasildonBond
PGordini
RahulAhd
chefZ
pdimarco
ArunDeivanayagam
Romiko
Robsterw
Coder0xff
Sameer Murudkar - MSFT
Vollstrecker
Senthilkumarm
luckyco
Premal Mistry
china_chinese
Brian Rose
FearTec
Christophe De Langhe
Bob Abraham
chall3ng3r
Only Title

Scott Fisher's Q&A profile

  • .NET Development Use WMI to get the memory size of Remote Computer

    I wanna use WMI to get the memory size of Remote Computer. Now, I just successd in one computer ( OS:win2000 server). The other can't work. The problem still occur in LAN. There are two kinds error message in following.   type  'System.Runtime.InteropServices.COMException' system.management.dll other information: can't get the RPC server or type  'System.UnauthorizedAccessException'  system.management.dll othe ...Show All

  • Visual Studio Tools for Office VSTO crash :)

    VSTO crashes after i try the above code : this .sendThread = null ; this .sendThread = new Thread ( new ThreadStart ( this .SendThread)); this .sendThread.Start(); // in the SendThread function i try to ......     1 add the range to the sheet rangeAddress = "=Sheet1!$A$1" rngName      ...Show All

  • Windows Forms Application Identity not set

    i just started to get InvalidDeploymentExceptions out of nowhere. each time i call 'Application.LocalUserAppDataPath', the exception box pops up. the 'localuserappDataPath' is returned nonetheless. how can get rid of this can i at least get rid of the exception message box i get about 20 of them each time a run the app, which is extremely annoying. WM_THX thomas woelfer yes i still have the problem, and sorry, n ...Show All

  • Visual C++ SortedList with Integer key

    How can I declare a SortedList with an integer key The following doesn't work: SortedList^ sl = gcnew SortedList< int , Object>; The error is that type 'int' is not expected. Hi, SortedList can take any keys that implements IComparable interface. Int32 is one of them. So you can use int as the key to the SortedList without any special declaration. For example, it is fine to do the following: ...Show All

  • Visual Studio Express Editions Sound

    Hi im making a VB Program in Visual Basic 2005 Team SUite the problem is ow can I add sound to my prog I believe the My namespace has the ability to play sounds. If you want to play anything other than wav tho, I think you need to use DirectShow ( in the PSDK ) or Windows Media Player. ...Show All

  • Visual Studio Grouping problem

    Hi ... can anybody help me ... I have table T1 and I show only some data in details group that pass some bussines logic and in footer I show the summary of this filed. And this is OK ...sumary shows only sum of shown data ... But I have table T2 that is linked with T1 with 1:1 link option ... And I wnat to calculate summ of data in T2 that is linked with T1 ... only that rows that was shown ... I dont know if I was clear enof.. Probl ...Show All

  • SQL Server ADOMD.NET 8.0 dependencies for connecting to both AS 2000 and AS 2005

    I've got a C# application developed with Visual Studio .Net 2003 which uses Adomd.net (8.0) to access cubes on SQL Server 2000 Analysis Services as well as SQL Server 2005 Analysis Services. In the MSDN reference page I noticed that I can set the connection parameter "ConnectTo=Default", and now, after installing the SQL Server 2005 Client Connectivity components, I can make connections to both AS2K and AS2K5 from my development machin ...Show All

  • Visual Studio Express Editions Upgrade Visual Basic 6.0 to VB 2005

    How to upgrade from visual Basic 6.0 to 2005 Hi Revoldo, There are a bunch of resources out there that describe upgrading from VB 6 to VB.NET  2005. Here are some links that should help: http://msdn.microsoft.com/VBRun/default.aspx pull=/library/en-us/dnpag2/html/VB6ToVBNetUpgrade.asp And there is even a code advisor that helps with the migration: http://msdn.microsoft.com/vbasic/previous/2003/downloads/CodeAdvisor ...Show All

  • Smart Device Development Hotkeys in .NET CF

    I want to setup hot keys in .NET CF as the device I'm using has a keyboard.  Any tips/recommendations to deal with hotkeys in .NET CF Figure this would be useful for anyone writing .NET CF apps as it'll speed up UI. Thanks, Jeff. Hi Jeff, You can via P/Invoke tie into WinCE’s Hot Key functionality.   See http://msdn.microsoft.com/library/default.asp url=/library/en-us/wceshellui5/html/wce50conaccessibilityhotkeys.asp for more ...Show All

  • .NET Development [C#] How can i stop a socket?

    Hello, I'm using diffrent thread in my application. One thread is used to receive information on an UDP socket; try {      while ( true )     {          Datagrame = udpSocket.Receive(msg);          //Action to do     } } catch (ThreadAbortException Ending) {     //action to do when stopping }   ...Show All

  • Visual Studio VS2005 Install Problem

    Hi! While trying to install the latest release of VS2005 I keep getting the following error: "Suite Integration Toolkit Executable has encountered a problem and needs to close. We are sorry for the inconvenience." Does anyone have any idea why I get this This usually means the media is corrupt. How did you get the CD/DVD If you got it off MSDN as an ISO, make sure you bur ...Show All

  • SQL Server Is it possible to create a bar code in SQL reporting?

    I need to be able to create a bar code in SQL reports. Do I need to get a three party tool or do you have anything that can help.   Thanks As Inamori has stated. Everything works fine until the report is compiled into a productions server. At that point the barcode is shown as clear text. So what exactly is the fix. Was one ever found ...Show All

  • Smart Device Development Menu Item destroy buttons in command bar

    UINT dwDlgMenuID = GetDlgMenuID(); if ( dwDlgMenuID != 0 ) { m_wndCommandBar.InsertMenuBar( dwDlgMenuID); } I have been struggling for several days now.I am moving my .Net 2003 code to .Net 2005. I am programing an Pocket PC 2003 applicaiton. I can't seem to correctly insert a menu item into the command bar. Currently, I hadd some buttons first. Then I proceed to add some menu item to the bar. But what I get is the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. I loaded a mesh and it gets drawn weirdly....

    I'm trying to load the airplane formthe dx9 samples. For some reason it gets drawn weirdly: http://img20.imageshack.us/my.php image=dx9thinger4vh.jpg Here's how I'm doing it: public class Model { Mesh mesh = null; Material[] materials = null; Texture[] textures = null; public Model() { } public Model(Device device, String filepath) { ExtendedMaterial[] tempMaterials; mesh = Mesh.FromFile(filepath ...Show All

  • Visual C++ Tips for speeding up debugging (stepping through code)?

    I've got one particular large C++ project that, in VC 2005, when stepping through code in the debugger, it takes approximately 2 seconds for each hit of the F10 key (i.e. each line of code) to be executed. I've tried many things to attempt to speed it up: disable intellisense, renaming feacp.dll, removing all additional output windows, watch, breakpoints, etc, removing navigation bar from text editor window, disabling anti-virus on the machine ...Show All

©2008 Software Development Network

powered by phorum