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

Software Development Network >> Patrick Verleysen's Q&A profile

Patrick Verleysen

Member List

shecla
Ryan Adams
Rico Martinez
oehp
VickyP
Mat Wakefield
Qudsiah
aaks
Jon_S_
tash12457769
Jandost Khoso
wpfnewbee
drag00n
Vadivel
PaulDevine
mkanik
arfa
Brian Merz
Detroit
JLB4536
Only Title

Patrick Verleysen's Q&A profile

  • Smart Device Development How do I create a new application for Win Mobile 2005?

    I just installed .NET 2005 beta 2, downloaded and installed Mobile 2005 SDK, trying to create a new project specifically for Windows Mobile 2005, but in .NET "New Project" wizard dialog in "Smart Device" group I can see only "Pocket PC 2003", "Smart Phone 2003" and "Windows CE 5.0". How do I create a new project for Windows Mobile 2005 Please help. Gennady Thank you Ilya, I guess you are right. When I 'end process'ed the process 'iScript' something (I am not sure) by using TaskManager when the installation was hung, it finished smoothly without any error message. I was using Norto ...Show All

  • Software Development for Windows Vista CAZE / State machine authorization

    Would WWF be a candidate for a CAZE-style state machine authorization engine   How would that type of thing be implemented in WWF DNeigler, I'm not too familiar with CAZE-style authorization engines, but it seems like you could use the state machine workflow in a similar way to model the authorization rules of a business application. Arjun ...Show All

  • SQL Server Returning values from Stored Procedure

    Hi Using Following Stored Procedure, Which always returns Null, What s the error, CREATE PROCEDURE prLoginAuth ( @pStrUserName varchar(50), @pStrPassword varchar(50), @pOutput Varchar(20) Output ) AS Declare @V_Facilities Varchar(50) SELECT Facilities=@V_Facilities From UserLoginFacilities where LoginID=(Select LoginID From UserLogin where LoginName=@pStrUserName and Password=@pStrPassword ) If(@V_Facilities=null) Set @pOutput = @V_Facilities Return @pOutput; Else Set @pOutput = @V_Facilities Return @pOutput; GO Anyone correct this query , I want ...Show All

  • Visual Basic VB first time install

    I am a network administrator interested in program development. I installed VB 2005 Express Edition for the first time on a Win XP Pro SP2 Dell GX 260 Optiplex (1GB of RAM, 1.8 GHz processor). I log in and therefore install with admin rights. Upon writing a small program to view web pages, the IDE hangs when I start debugging to test the program. The vbexpress.exe CPU usage hits 99% and stays there. I have to use Task Manager to force the process to end. Has anyone else run across this on a first time installation of VB 2005 Express Edition I'll know more tonight. This is on my home PC, so I'll try that ...Show All

  • SQL Server AcquireConnection Error - Lookup Component

    Hi, Trying to get a particular SSIS is package working - while running the Package Installation wizard a package is reported with the following errors: AcquireConnection method fails with error code 0xC0202009 Then Lookup fails validation and returns code 0xC020801C The odd thing is the Lookup does not exist in the package, it did exist at one point but was deleted. I have tried searching the XML and can't find any reference to the Lookup Any suggestions appreciated... Thanks, John You may want to try a brute force here and search for all files with extension .dtsx on your ...Show All

  • Windows Forms Suspending Paint Event

    In the paint event of a control I'm using at work, we end up drawing some rectangles with GDI+ calls. Unfortunately, each time the rectangle gets drawn the paint event ends up firing again, thus it get's repainted 20 times.  Is there a way to temporarily suppress paint events I guess you should try using the ControlStyles enumeration, and ...Show All

  • Windows Forms WebBrowser control, catching Backspace

    With WebBrowserShortcutsEnabled = false I can prevent the user from doing Alt - Left Arrow to go back, but they can still use the Backspace key. How can I grab the backspace keypress in a webbrowser control and cancel it Thanks Hi, To do that all you need is to create a cache of previouse URLs and cancel navigation to them in the naviagating event like that: Private backURLs As New Collections.ArrayList Private Sub WebBrowser1_Navigating( ByVal sender As System.Object, _ ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) _ Handles WebBrowser1.Navigating I ...Show All

  • SQL Server Logging of SSIS package doesnt work when executed as a job

    I am having the same problems as those in another post. SSIS package works fine when executed in BIDS and through execute package utility but it doesnt work when executed as a step in a job. The other problem is that the logging also doesnt work when i try executing it as a job. So I have no clue about what to do without knowing what error it is. When I run the job it simply says the step has failed. I have tried most of the solutions posted in other websites most of them to do with using proxies with credentials but havent hit a solution. I would love to get any input on what to do. Thanks I finall ...Show All

  • Visual Studio VSIP equivalent DLLs in Latest SDKs

    I have developed an application in VSTS2005 Beta2 by using VSIP. I am converting the same application into Beta3 and I am using October SDK. Any help/suggestion would be appreciated if anybody can tell me which are the equivalent DLLs for the following in October SDK, which exposes the same functionalitiy. Microsoft.visualstudio.teamsystem.elead.common.dll Microsoft.visualstudio.teamsystem.elead.sdk.dll Microsoft.visualstudio.teamsystem.elead.vsip.sdk.dll Microsoft.visualstudio.textmanager.interop.dll Regards, sony Try this: Microsoft.visualstudio.teamsystem.elead.common.dll ...Show All

  • Windows Forms Manually Setting Mouse Position

    Hi, I want to be able to manually set the mouse position from within my application. Can anyone tell me how to do this with Windows Forms Thanks. Cursor.Position = new Point(50, 50);   Note that the position is relative to the screen, not the form.  ...Show All

  • Visual Studio Fatal Error HXC2064: Unable to initialize the full-text index engine. Reason code 205.

    Hi, I cannot compile Help 2.0 files anymore. Whether I use NDoc or HelpStudio, I got the following message : Fatal Error HXC2064 : Unable to initialize the full-text index engine. Reason code 205. I have found this FAQ http://helpware.net/mshelp2/h2faq.htm#HXC2064 and tried to register the listed dlls without success. The targeted assembly is small and do not contain tons of comments. Any ideas Gildas Hello Gildas - were there any changes to your machine that you can account for between when the compiler used to work and when it stopped working Did you install any new or updated products that you can recall Tha ...Show All

  • SQL Server Perl CGI and SQL Server

    I'm still new with Ms SQL server and perl cgi programming. can someone help me how to make connection to SQL Server using perl cgi programming http://forums.codecharge.com/posts.php post_id=43590 ...Show All

  • Visual Studio 2008 (Pre-release) How to use List and Table

    In a previous thread (Replacement for TextFlow) I was mentioning replacing TextFlow with TextBlock. Though I was able to use TextBlock for the inline elements (bold, hyperlink etc.), I couldn't find a way to display block elements (list and tables). How can I display them without using FlowDocument As detailed by our content schema, Block elements must ultimately reside inside a FlowDocument. Can you provide more info about your specific scenario and why a FlowDocument does not work for you ...Show All

  • Visual Basic Print directly to the printer

    Dear all...^^. I have a program needs to print directly to a Zebra TLP 2844-Z barcode printer. I tried the codes in http://support.microsoft.com/ scid=kb;EN-US;322090, but an error occurred when i run it, as follows: A call to PInvoke function 'test!test.RawPrinterHelper::OpenPrinter' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature. May I ask if any one has any other idea of printing directly to printer in VB2005 Thanks Raymond Here ...Show All

  • .NET Development Framework 1.1 and Citrix Metaframe

    Hi There I am running a WinForm application with .NET framework 1.1 on a Citrix Metaframe. Is it possible to get the user's actual machine name and not the serveur name  I am currently using System.Environment.MachineName of the .NET framework and it gives me the server name. Arnaud I've got a solution : the clientname session variable is available as environnment variable. Just do System.Environment.GetEnvironmentVariable("CLIENTNAME"); Arnaud ...Show All

©2008 Software Development Network