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

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

LouisPeter

Member List

Michel Paulissen
Sean Hayes
Rashar
Dave_Novak
j2k
rolf cerff
Expressman
pdurbha
monkeynova
William Xie
The.B
Shrek.NET
newyuppie
adorablefaith
hrubesh
Amos Soma
Amit V
Julian V
vijayan n
UltimateSniper
Only Title

LouisPeter's Q&A profile

  • Visual Basic Printing screen through code

    Is there code to print screen through VB what is this regarding from the very short description, you havent created a control or a variable named "rtb". Thats the problem, its no where to be found therefore you get the compiler error ...Show All

  • Visual Studio Sandcastle December CTP - BuildAssembler throws XML exception.

    Hello All, I have been using the Sandcastle December CTP and found a small section of code which causes BuildAssembler.exe to generate an XML exception. I have included the code (do not be concerned with the functionality of the code, it is purely for recreating the exception) which you can use to reproduce the exception. The code compiles without any errors or warnings, but for some reason BuildAssembler.exe does not seem to like it. I have also included details of the exception to help trace the problem, but if you copy my attached code you should be able to recreate the same exception. The code which causes the exception in BuildAssembler. namespace XMLTagsDemo2 {     /// <summary>     /// Re ...Show All

  • Commerce Server Commerce Server BizTalk Orders Adapter

    Hi, I am using a commerce server orders adapter with BizTalk. It is running fine however everyday I get an error from the Commerce server orders adapter and I have to reset the host as this error fails BizTalk. The error I get is below; The Messaging Engine received an error from transport adapter "CommerceServerOrders" when notifying the adapter with the BatchComplete event. Reason "Object reference not set to an instance of an object.” Then I get this error message that follows; Failed submitting message to BizTalk.  Message: .  Stack trace:    at Microsoft.CommerceServer.ServiceAgent.TryHandleWebMethodException(Exception ex, SoapHttpClientProtocol serviceProxy)    at Microsoft.Commerce ...Show All

  • Silverlight (formerly WPF/E) Does Feb 2007 CTP for WPF/E support Canvas.Resources ?

    Hi, Can we have reusable things like defining a brush once and reusing it several times using canvas.resources.This question was asked for Dec CTP but does Feb CTP support this. Example: <Canvas xmlns=" http://schemas.microsoft.com/client/2007 " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " > <Canvas.Resources> <ResourceDictionary> <LinearGradientBrush x:Name="arcenciel" StartPoint="0,0" EndPoint="1,1"> <GradientStop Color="Yellow" Offset="0.0" /> <GradientStop Color="Red" Offset="0.25" /> <GradientStop Color="Blue" Offset="0.75" /> <GradientStop Color=&qu ...Show All

  • Visual Studio Express Editions How to clear textboxes text

    Hi! Members Pls tell how to clear all textboxes text in the same form within a single click on the button. without using this sytax: textbox1.clear textbox2.clear - - - - and so on. in button click event Thanks Amit does this help for each currentControl as Control in Me .Controls if TypeOf currentControl is TextBox Then Dim theTextBox as new TextBox theTextBox = DirectCast (currentControl, TextBox) theTextBox.Text = "" end if next ...Show All

  • Visual Studio Express Editions Creating Win32 DLL project

    Hello I am using Visual C++ 2005 Express Edition. I require to create a DLL project. In the File>New>Project.. I do not find template to create a win32 DLL project. Could anybody provide how and where to create a win32 DLL project using Visual C++ 2005 Express Edition Thanks. regards, Amitabh. To enable the wizards for Windows-Apps/DLLs and LIBs, you need to change the file ”%ProgramFiles%\Microsoft Visual Studio 8\VC\VCWizards\AppWiz\Generic\Application\html\1033\AppSettings.htm” Uncomment the lines 357-359 to: //WIN_APP.disabled = true; //DLL_APP.disabled = true; //LIB_APP.disabled = true; And uncomment the lines 441-444 to //WIN_APP.disabled = true; //WIN_APP_LABEL.disabled = true; //DLL_APP.dis ...Show All

  • Windows Forms StatusBar ToolTip Crashing

    Hello All, Quick Background: I have a UserControl that uses a StatusBar and ToolTip to allow a user to navigate data displayed in the control. On the main application there are a number of buttons that will create a new Form at runtime and place a static instance the main applications single instance of my control on the newly create Form. This was done because generating the UserControl is complicated and costly as far as memory and rendering is concerned. The Problem: If I place my control on one of these newly created Forms and the user hovers over an item that has a ToolTip it works fine the first time. The problem comes in that when the user closes the form the UserControl is removed and the Form disposed, and a user will click ano ...Show All

  • Visual Studio Sandcastle August CTP: where clause not part of the doc

    When you use a where clause to specify a constraint on a generic argument, it does not make it into the signature in the documentation. Example: public void MyMethod<T>(T myParam) where T: class { } Thanks, Karlo Karlo - This is a bug in our syntax generation logic. I have logged an issue and we will fix this in our future CTP. Anand.. ...Show All

  • Visual FoxPro Words Spell Checker not working

    I have a spell checker button in a form that uses microsoft word, here's my code: oWord=CREATEOBJECT("Word.Application") oWord.WindowState=2 _CLIPTEXT= bookstore.frmdesc oWord.Documents.Add.Content.Paste oWord.ActiveDocument.CheckSpelling() oWord.Visible=.F. =oWord.ActiveDocument.Select cText=oWord.Selection.Text cText=LEFT(cText,LEN(cText)-1) REPLACE bookstore.frmdesc WITH cText _CLIPTEXT="" oWord.Documents.Close(0) oWord.Quit(0) thisform.Refresh bookstore.frmdesc is a character field in a table, it's the text field in the form thats being spellchecked. my problem is that when the spell checker window pops up, it will highlight mispelt words but it won't show any of the suggestions. I've had other problems but they p ...Show All

  • Visual Studio Team System Automated build tests not continuing after failure?

    Hi all... I have a TFS server running builds for a project, with several unit test projects. The build uses TestToolsTask-1.1 to automate running tests (all of our test projects are *.UnitTest.dll). There are five test projects in total. However, if a test should fail in (say) the second of those .dlls, the remaining three test projects don't get executed. The remaining tests in the second dll are run, but any subsequent test projects are ignored. The tests don't fail, or abort - they simply don't appear on the build output. I see two test runs; the first passes all tests, the second has two failures. The remaining three test projects are nowhere to be seen, and don't appear in the build log either. Does anyone have any suggest ...Show All

  • Windows Forms Halting another installation with C#

    Lets say I have my program running in the background and I execute a setup.exe file and then the program halts the "install setup" showing information about what I'm about to install How can I see the difference between a setup install and lets say a normal application like winamp when it is executed Basicly I just want my program to take control whenever I try to install something new to my computer. Is it possible Appreciate all the help I can get! / David Sorry, you'll never get this to work reliably. There's nothing special about an install program that makes it stand-out from a normal program. Other than maybe its name, which is not guaranteed to be "setup" or "instal ...Show All

  • Visual Studio Team System Steps to install SP1

    I cannot find the answers on any of the SP1-sites/blogs. I have a number of PC's running VS2005 against TFS. When i update TFS to TFS SP1, must i also update all the client machines to VS2005 SP1 Or can i just update TFS and not (yet) update all the clients On the TFS-server, must i also install VS2005 SP1 I know that i must install the 'pre-SP1-patch' and the TFS-SP1, but since there is VS2005 installed on the server (not for C# or VB, etc, but Team Explorer) must i install the VS2005-SP1 for that part Thank you, Dennis Ok, thnx for the info. We will update to VS2005 SP1 on the clients soon, but i can't update them all at once ;-) At least they don't stop working... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Second map channel in ModelProcessor

    I'm currently exporting some custom data in my own model processor. I get the vertex position from the first channel in geometry.Vertices.Channels and the uv coordinates from the second channel. I'm using the fbx file format saved out from MAX8. I want to export a second set of uv coordinates but can't seem to get them to come through. ie the number of geometry.Vertices.Channels is always two. I've tried using the specular and opacity channels in MAX for the second map channel but with no luck. The second texture referenced also doesn't seem to be exported. Is there any special channel I need to use or anything I'm missing Any takers Shawn Do I need to extend the fbxImport ...Show All

  • Visual Studio Express Editions There is no editor available for vb

    Hi,   Using Visual Basic 2005 Express Edition for several months and build an application that still works, b ut needed on some parts an apdate.   Starting the View Design editor, I got the following error.   There is no editor available for: C:\ .vb Make sure the application for the file type .vb is installed.   There are more errors.   The properties window isn’t accessible and also the application properties window.     Under Tools/Options. Windows Form Designer. An error occurred loading this property page.   Under Tools/ Import and Export Settings Wizard The operation cold not completed. ...Show All

  • Visual Studio Express Editions no visual studio template found

    I just installed the recently released Visual C# 2005 Express. When i tried to create a new project. I got this error message "no visual studio template found". I went to the "event viewer" in "Administrative Tools" to see the log. I found the message : "The Visual Studio template information is out of date. Regenerate the templates by running 'VWDExpress /installvstemplates' or reinstalling Visual Studio.  Note: corrective action requires Administrator privileges. " I reinstalled the VC# but the problem is still there. Anyone met this problem before I have the same problem. Reinstalling does not solve the problem. I've tried 'VCSExpress /installvstemplates' and I get an error message : Invalid ...Show All

©2008 Software Development Network