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

Software Development Network >> Sam Johnson's Q&A profile

Sam Johnson

Member List

enric vives
jiterbug
Ted.
MMMalik
mike11d11
Adriaanse B
Beast Forever
F.Costa
ckrepps
Vijay R
Pedro Martins
djdotti
James Lissiak
Kirk Evans
PeterZ
benschi
dron747
Rakesh Jha
cues7a
samymelbourne
Only Title

Sam Johnson's Q&A profile

  • Visual C# Help needed please.

    Hi here is my problem and im not sure how to fix it so any help would be great. Problem XP pro has just notified me that my system has dramaticly changed and i need to reactivate it. I have changed nothing and last install was C# Express. I have had a number of crashes in the past and had to reactivate to fix so i know im about maxed on this coppy of XP. I am presently disabled and unable to purchase a new copy should it be needed, not to memtion I dont feel i should have to sence i have changed nothing sence the computor was first build and this copy of XP Pro installed on it. Is there any way to fix this or a MS phone number for the proper part of saport i can call to remadie it before the 3 day limit Im now reciving ever 60 se ...Show All

  • Visual Studio Team System Microsoft.Tools.FxCop.Sdk.Introspection.RuleUtilities.IsInterface -> Microsoft.FxCop.Sdk.Introspection.RuleUtilities.OOPS!..

    I was using some old FxCop version with my custom rules set. After migrating to new FxCop i've got a kind of a stuck - after change Microsoft.Tools.FxCop.Sdk.Introspection old namespace to Microsoft.FxCop.Sdk.Introspection new namespace i've got realised that RuleUtilities.IsInterface is now obsolete. How can i check TypeNode whether it deals with an interface now Thank you in advance! Hi, I have the same problem but with variable I have to put rules with fxcop if the element is a private variable. Do you know how to do that Thanks a million ...Show All

  • Visual C# *****trying to delete this msg.

    *****trying to delete this msg. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Could C# be the future of gaming?

    Since XNA is using C#, and is is a more intuitive language than C++, is it possible that in the future that C# will dominate, espessially in AAA titles. Could XNA be ushering a new way of programming in the main stream I think the 20% performance decrease is an extreme. I think you'll be looking at under 10% in the vast majority of cases, probably just a couple of % points. I think most developers wouldn't even worry about it unless they're working on next-gen stuff. ...Show All

  • Smart Device Development updating .NET CF 2.0 on PocketPC

    I wrote a application and was able to install it on a Dell Axim without any problems, but when I go a try a install it on a HP iPAQ I get a message "Requires a newer version of the Microsoft .NET CF then what is installed" I went to Msoft site and download what I thought was the update, but when I go to install it and message appears indicating that the software is already installed. I went to Add/remove prgram and found what I thought was the program and when I am about to uninstall it I get amessage indicating that this program is need for VS 2005. I understand that the program is need for Vs2005 but Do I have to uninstall it to update the Pocket PC. How do I update the .NET CF on the Pocket PC. Thanks! ...Show All

  • Visual Studio 2008 (Pre-release) Install Issue Orcas RC1

    I have the following installed .NET Framework 3.0 (RC1) Microsoft Windows Software Development Kit (SDK) for RC1 Visual Studio 2005 But the Orcas RC1 tells me that i'm missing .NET 3.0 Runtime Files which are Installed..So i'm at a loss here,any help will be appreciated...Thxs OS: Windows XP Pro with Media Center 2005 I checked my system, and it didnt appear (but not totally sure) to have any old .Net 3.0 components installed. But Im sure that I have not install any older version of Orcas CTP kits, because VS2005 would not show the option to create a WinFX application. So I tried the command line installation to skip the check. The installation completed with no error. When I start up VS ...Show All

  • Visual C++ Export/Import a Bitmap to a DLL

    Hi: I want to export a bitmap to a DLL. Then I want to import it from it. Do you have any idea Thank you... By "external editor" I mean a graphical editor like Adobe Photoshop, Corel Painter, Paint etc. After adding to resources, the image is still stored in separate file, therefore you can edit it using any graphical editor. ...Show All

  • Visual Studio Express Editions problem with assigning values to cells in excel

    Hi. VB don't want to asign values to excel cells, this is my code: Dim oExcel As New Excel._ExcelApplication Dim oWorkbook As Excel.Workbook = oExcel.Workbooks.add oExcel.Visible = True oWorkbook.Worksheets.Add() Dim xlws As Excel.Worksheet = oExcel.oWorkbook.Worksheets.Item(1) xlws.Cells(1, 2) = "Number" Please help me!!! Any sugestions mmmm...that line seems towork just fine for me...the first time you call it it references the default workbook...all further calls create a new workbook with the default number of sheets ...Show All

  • Smart Device Development Managed Camera API raises an Unknown Exception ?!?

    Hi All, I tried to run the following code: Microsoft.WindowsMobile.Forms. CameraCaptureDialog myPictureTaker = new Microsoft.WindowsMobile.Forms. CameraCaptureDialog (); if (myPictureTaker.ShowDialog() == DialogResult .OK) { string myPicture = myPictureTaker.FileName; Image MyImage = ( Image ) new Bitmap (myPicture); pictureBox1.Image = MyImage; } myPictureTaker.Dispose(); The line that shows the dialog 'myPictureTaker.ShowDialog()' raises an unknown exception when run on my Windows Mobile 5 IPaq hw6915. The actual exception details are: System.InvalidOperationException was unhandled Message="An unknown error occurred." StackTrace: at Microsoft.WindowsMobile.Forms.CameraCaptu ...Show All

  • SQL Server Nested IIF's

    I need to evalute two different fields in some text boxes. =IIF(Fields!BadAddressFlg.Value > Nothing , "Red" ,IIF(Fields!BadPhoneFlg.Value <> "G" OR Fields!BadPhoneFlg.Value <> Nothing , "Red" , "Black" )) If the valuefor bad address > nothing or Badphoneflg <> G or <>Nothing then the color needs to change to red, any of these can be true not all of them. I tried the switch, choose, all of them and if I take one of the fields out then I get it to work but I cant get them to work if they are both like this. Thanks Stokh I got the answer =iif(trim(Fields!BadAddress.Value) <> "" or (trim(Fields!BadPhone.Value) &l ...Show All

  • Visual Studio 2008 (Pre-release) create a toolbar in my xaml design to drag from

    im trying to create a toolbar in my design to enable me drag and drop controls. i was able to drag the controls around the screen, but that's not what i want. i need to keep the original controls in the toolbar while being able to drag a copy of them to another location. i really need help.. thank you hey, ive tried the code above or drag and drop and it's completely correct except that u need to add a background color to the canvas u dragging to, just to be recognized, like so: < Canvas Margin = " 130,9,18,72 " MinHeight = " 50 " MinWidth = " 50 " Name = " canvas " AllowDrop = " True " Drop = " canvas_Drop " B ...Show All

  • Visual Basic Combobox Question

    Heres access for you! How do you retrieve (dont let me loose you here) I am used to me.combobox1.column(2) to retrieve data from the third column in a record I noticed that either it doesnt exist or it is name something different How would you retrieve data from a record from 3 columns over from the first Davids Really Learning Gotta get that binding source right: pseudo... MyDataSource.ParentTable                                                .ID ...Show All

  • Visual Studio MsoControlType, where is the office.dll

    I'm developing a VSPackage. It looks like I will need to use MsoControlType.msoControlPopup, I know it is in the Office namespace, the help docs indicate the functionality is in office.dll but I cannot locate this on disc, where is it located, is it now a .NET namespace If you are using VS 2005, use the new Microsoft.VisualStudio.CommandBars.dll library. If you are using VS.NET 2002/2003, use C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Office.dll ...Show All

  • Visual Studio Team System Trial edition of Visual Studio 2005 Team Edition for Database Professionals

    The RTM (Final) Trial Edition of Visual Studio 2005 Team Edition for Database Professionals can be found at: http://www.microsoft.com/downloads/details.aspx familyid=7DE00386-893D-4142-A778-992B69D482AD&displaylang=en The Trial edition requires that you have Visual Studio 2005 Team Suite installed. You can obtain a trial version (a rather large download) of Visual Studio 2005 Team Suite at: http://www.microsoft.com/downloads/details.aspx displaylang=de&FamilyID=5677DDC4-5035-401F-95C3-CC6F46F6D8F7 We have decided to implement Datadude, but can't find the standalone SKU. We don't want to have to install the $uite, and it looks like we shouldn't have to. Where are the bits for the stand alone version of DB ...Show All

  • Visual Basic filling a bitvector32 in a loop

    Dear all, I can fill a bitvector32 like this: Dim InBytes As Int32 dim i for i = 1 to 1000000 InBytes = i 'for example Dim InBitVector As New System.Collections.Specialized.BitVector32(InBytes) next i and then I can read out the individual bits (need this for a graphics conversion). Problem: this gets VERY slow, and I trailed that to the Dim InBitVector statement. Is there ANY way to assign an Int32 number to the InBitVector WITHOUT using the dim statement Thanks, Kees Hi Renee (not a guy, I guess, from the double 'e' ), I am unclear how the bitconvertor.ToInt16 is going to help. I was aware of the bitconvertor and I knew a bit abo ...Show All

©2008 Software Development Network