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

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

TruePsion

Member List

Robert Wang
Johannes Hansen
Wojo
ZardoS42
Brian_W
Wayne.C
Barry-ELX
SHutchinson
Soonyu
Steven McCarty
Atlantaazfinest
Peto_SVK
KavyaKonda
Dwight Kulkarni
Ken_orgami
steal
Fluxtah
zoezoo
mwoehlke
Alan Robbins
Only Title

TruePsion's Q&A profile

  • Internet Explorer Development Internet explorer 7 MUI pack

    Hello, I have Xp pro with multi-language user interface for the dutch language(and other languages). What means that xp is basically english but everything else is in dutch (menu, help etc...) Now my problem started with IE7 install I wanted to install the dutch IE7 version but I got the error message that the language of the operating system is not supported by this download (IE7-windowsXp-x86-nld.exe) So I installed the english version that did work BUT now all my IE7 menu etc.. is in english now Is or will there be a MUI pack for IE7 that will change my menu' back to dutch If there will be a MUI pack when is the release date If allready available please send me the correct link. Help would be appreciated. ...Show All

  • Visual Basic instr function for special chars

    how do I do an instr for a special character eg: a quote. Instr(1,a$,vbQuote) doesn't work. Hi Bolo I may be missing something, but I don't see any connection with the VSTO technology in your question This seems more a question about the VB. NET language. So I'm moving you message to a more appropriate forum ...Show All

  • Smart Device Development Beta of Microsoft Certification Exam 70-540

    Microsoft Certification Exam 70-540 is available in Beta form right now! This is a Technology Specialist exam for application developers in the mobility space. The Preparation Guide is available for the Exam at: http://www.microsoft.com/learning/exams/70-540.mspx . To register visit one of our independent testing providers: * Thomson Prometric: http://www.prometric.com/ContactUs/T...rs/default.htm * Pearson VUE: http://www.vue.com/ms/ Please use the following promotional codes when registering: Exam 71-540: BTA540 Best of luck! Howard Dierking Product Planner Developer and Database Certifications Microsoft Corporation Another fortnight passes and still no update. I have lodged a suppor ...Show All

  • Windows Forms AcceptButton problem

    I have a dialog window with some buttons. Button2 is my CancelButton and have the DialogResult set to Cancel. Button1 is my AcceptButton but I have set the DialogResult to None because I don't want this button to close the form. I only want it to be affected every time I hit the ENTER or RETURN key. When I click another button on the form and after that hit the ENTER key, the AcceptButton is not affected. How do I get it to allways be affected when I hit the ENTER key I read something about using eventhandlers for keyUp events for other buttons to "guide" the keystroke back to button1_click event handler. Do I have to make keyup eventhandler for every other button on the form to make ENTER key allways affect button1 or ...Show All

  • Visual C++ Does VC++ Express Edition support Refactor ?

    Does VC++ Express Edition support Refactor like Eclipse & JBuilder do If not, will the Enterprise Edition cover this function fiNAL.Y wrote: Does VC++ Express Edition support Refactor like Eclipse & JBuilder do If not, will the Enterprise Edition cover this function Somebody asked for C++ refactoring back in December 2005. See http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=98711 to see what became of this request (and to vote on it). No edition of VS2005 has refactoring support for C++ ...Show All

  • Community Chat C# version of Password Stars:

    Windows Forms apps make it too easy to create something without writing much (if any) code. For example, to have a user enter a password displaying only asterisks is simply done by changing the textbox property. But isn't it more satisfying to actually program your own code for it, as in this Console application Module Module1 Sub Main() Dim ch, word As String word = "" Console.Write( "Enter your password: " ) Do ch = Console.ReadKey( True ).KeyChar 'get character without display If ch = Chr(8) And word.Length > 0 Then 'backspace to delete Console.CursorLeft = Console.CursorLeft - 1 'move back one column Console.Write( " " ) 'erase last star Co ...Show All

  • Visual C# Controls without a user interface

    Hi, I would like to develop C# components without a user interface, you know just a service you can use on forms, that sit in the bottom area of the form designer, but I'm unable to find the way to do it in the documentation. Do you have any good ideas Thanks for your help. Cheers, Mikael ...Show All

  • Visual Studio Team System Problem with source control (Data is Null. This method or property cannot be called on Null values)

    Hi, VS hangs up during project loading. Re-getting the project from source control does not help. VS installation does not help either :(  The following error in the server's event log: Edit: it does not hang. After a few minutes in unfreezes and says 'look into your server event log'. the project is open as source-control ounbound. TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 6/26/2006 12:48:55 PM Machine: VSSERVER Application Domain: /LM/W3SVC/3/Root/VersionControl-1-127957963704837131 Assembly: Microsoft.TeamFoundation.Common, Version ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. RocketCommanderXNA Mouse Issue

    I've successfully compiled the RocketCommanderXNA. However, when I run it I cannot click on any menu items. My mouse is moving around the screen but nothing I do allows it to work. I've looked at the source and it looks as if there are hot keys, but those do not work either. Also, whenever I attempt to debug and step through the code, it pukes on a renderTarget line and I can't debug in that fashion. Anyone have any idea whats going on and can point me in the proper direction Thanks! I also found this, the reason is that there is no mouse "Click" logic on the main menu screen. "\GameScreens\MainMenu.cs" As a save there are hot-key's set up for the menu "// Hotkeys, M=Mission, ...Show All

  • SQL Server What system stored procedures have changed between SQL 2000 and SQL 2005?

    What system stored procedures have changed between SQL 2000 and SQL 2005 You can find all the changes (breaking, behavior, deprecated etc) from the link below:   http://msdn2.microsoft.com/en-us/library/ms143532.aspx   In addition, there are individual topics that addresses backward compatibility issue. Below are some examples:   Mapping SQL Server 2000 System Tables to SQL Server 2005 System Views http://msdn2.microsoft.com/en-us/library/ms187997.aspx   Compatibility Views http://msdn2.microsoft.com/en-us/library/ms187376.aspx   ...Show All

  • Visual C++ Bypass printing dialog while printing using ShellExecuteEx

    Hi I use ShellExecuteEx to print a ".gif" file to a specific printer(which I set as default printer, prior to the operation). This printer driver is used to perform a specific task and works with only my application and can't be used for printing outside my application. It works fine on Windows 2000. But on Windows XP/2003, instead of printing the .gif, it opens up the .gif in Windows picture and fax viewer. From here I can give printing command but I want it to happen automatically. Now my application keeps waiting for the "Printing is finished" message from my printer driver. When I give the print command from outside my application to print that .gif, the same print dialog opens up i.e. it is the default ...Show All

  • Software Development for Windows Vista Nvidia 7900GTX

    Problem with windows Vista RC-1 Buuild 5536 & Nvidia 7900 GTX. is there any driver for that thanks ! ...Show All

  • SQL Server Changes at subscriber not propogating to Publisher

    We have a merge replciation with SQl 2005 as a publisher & sql 2000 as subscribers. Recently, I modified/added some columns to two tables using sp_repldropcolumn & sp_repladdcolumn. these columns are porpogated to Subscribers. However, the changes at the subscriber to these new columns are not getting to publisher. If changes are made to these new columns at publisher, they are propogated to all subscribers without any issue. Any sugesstions . Thanks ...Show All

  • Visual Basic Debugging Error

    Hello to all, I am a newbie to VB programming and currently I am viewing the vb '05 express tutorials. I am getting an error that I cannot find any information on. Right now in the tutorials, we are creating an RSS reader application. When I click to refresh the RSS feeds I get the following error: System.Net.WebException: The remote server returned an error: (404) Not found at System.Net.HttpWebRequest.GetResponse() at RSSReader.RSSManager.ProcessNewsFeed(String rssUrl) Can anyone provide help with this Please feel free to email me at: greg.petrosh@gmail.com Thanks Greg ProcessNewsFeed(String rssUrl) The Url page specified can not be located on the server (standard 404 error)...make sure you have t ...Show All

  • Visual C# a quick question regarding viarable scope

    In the scope of a "button click" event, I declared a string variable "result". In a for loop within this event, I tried to access "result' but with a compiling error " use of unssigned local variable". My question is: Why "result" is not visible in the for loop Thanks. Codes: private void btnGo_Click( object sender, EventArgs e) { string result ; Point newPoint = new Point (1, 1); Circle newCircle = new Circle (2, 2, 0.5); Cylinder newCylinder = new Cylinder (3, 3, 0.5, 4); Shape [] newShape = new Shape [3]; newShape[0] = newPoint; newShape[1] = newCircle; newShape[2] = newCylinder; for ( int i = 0; i <= newShape.Length - ...Show All

©2008 Software Development Network