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

Software Development Network >> Paul Mc's Q&A profile

Paul Mc

Member List

Scott Cadillac
Michael Coomer
Tim Wong
jgroleau
QldKev
timlajaunie
JinGuoLi
hdkulu
gaius
k.Rahul
Anil Yashavant
Function
sebapi
SPGMuthu
FavorFlave
3dMark
Leao
ytithorcle
amy0625
Cesar.NET
Only Title

Paul Mc's Q&A profile

  • Smart Device Development background services

    http://www.pocketpcdn.com/articles/services.html is this still up to date somebody who has experiences withit Even better, does somebody understand it :) and knows how to use it. The sample files can you find below. I want an alltime backgroundservice that for example always on 3 o' clock do function. ...Show All

  • Visual Studio Team System Associating server folders with comment.

    Hello, Is there any way that I can associate a server folder with some text properties or comments or anything like that Thank you, Hello Martin. I want to associate development branches with "Software Change Request" numbers. I have a simple structure: $/TeamProject/Mainline $/TeamProject/Branches For every change request I branch the mainline into a directory in Branches called ‘bxxx’, where xxx is a sequential number. I want to associate ‘bxxx’ with the change request number (or numbers) that it was created for. Thank you, Hisham. ...Show All

  • Windows Forms When I publish my sample 'Personal Website' to my Windows Server 2003 Enterprise Ed. I get this error...

    The CodeDom provider type "Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" could not be located. I have .NET Framework 2.0 installed, and setup in the properties for the web. I also have installed SQL Server 2005 on my Windows Server 2003. I cannot find any help on the web so I am hoping somebody here might have the answer. I am very new to .NET programming so forgive me for being dim. I'm almost getting the same thing for a new page i created on my local machine winxp sp2 IIS Error 1 The CodeDom provider type "Microsoft.VisualC.CppCodeProvider, Cp ...Show All

  • Visual Studio Express Editions win32 application

    i have read abt this frm the forum and followed steps given in the following link : http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx but still i am getting the following error: 1>c:\documents and settings\administrator\my documents\visual studio 2005\projects\test\test\stdafx.h(28) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory i am missing something . plz help Looking at http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx, step 3 is the problem. You should add C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include to include directori ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. VB.NET & Direct X

     Is it possible to write game programs using Direct X in VB.NET I think it is common to use VC++ . Is there any weaknesses in VB.NET that there is not many code samples As you know both Andy (ZMan) and Myself are compiling resources for managed directX. You could always post your list of links to the current post on Inner Realm . Inner Realm - Managed DirectX Links and Resources ...Show All

  • Windows Forms How to prevent a white screen

    Hi, All,   I use a loop to create a large number of files on fly. I want to use a lable control to show which file is created. When my application is runing a few sceonds, I got a white screen. How can I prevent this issue My code likes this: for(i=0;i<1000,i++) {    WriteToFiles();    lblFile.Text = filename[i];    lblFile.Refresh(); }. Thanks, ...Show All

  • Visual Studio 2008 (Pre-release) Soliciting community feedback: ClickOnce and permission elevation prompts in the internet zone

    In the CTP and Betas of .NET 2.0, any ClickOnce-deployed application that desired elevated permissions was only allowed to prompt if the application were Authenticode-signed. Were such an application not signed, the deployment would simply fail. Subsequently, with the RTM release of .NET 2.0, this decision was reversed. Now, any ClickOnce application deployed from the Internet zone can prompt for permission elevation. Ostensibly, this would enable hobbyists, community apps and open-source projects to be able to publish their applications without spending the time and resources on Authenticode-signing. Given that Clic ...Show All

  • Visual C# MFC OnKeyDown's UINT nChar vs KeyEventArgs in c#

    Is there any way to get the equivaleny UINT nChar (used by CWnd's OnKeyDown method in MFC) from a KeyEventArgs instance in c# You can use the KeyCode and cast that to a Char or you can use the KeyValue property. What is the problem your are trying to solve ...Show All

  • Visual C++ ATL included in PSDK?

    Is the ATL included in the Microsoft Platform SDK So can I use the WTL with Visual C++ 2005 Express and the PSDK thanks! I looked in the latest Platform SDK ( Windows 2003 Server SP1 ) in the include folder and I see that alot of ATL code is included in the PSDK. So I see not reason why you couldn't use the ATL headers (which contain most of the ATL library ) from the SDK to build applications using Visual C++ Express Edition. This, combined with the use of WTL (which offers abstractions for Windows controls ) should enable you to build MFC-like apps using only free tools / libraries (I'm going to ...Show All

  • Visual C# hiding console window?

    Coding an app to keep Tor open, due to a bug in my router or my ISP being annoying (not clear which) the tor client disconnects after about an hour. So every hour the Tor client has to be reopened; now I don’t want to have a console window sitting around all the time, so how can I keep the console window for the current app from being displayed (I figured out that I can do it by having one app asynchronously open another as a with WindowStyle.Hidden and then closing the first, but that’s so ugly) So how can I keep the console window from being displayed Don't use a console app. Use a window app, and simply ...Show All

  • SQL Server SQL Express TCP/IP Configuretion

    Hi All, I just configure the SQL TCP/IP but after I configure, I can't connect to the server via SQL Management tool. I am getting this error: Cannot connect to WPCC\SQLEXPRESS. ------------------------------ ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1) For help, click: http://go.microsoft.com/fwlink ProdName ...Show All

  • .NET Development monitor

    Hi, I would like to write a little program which monitors a specified Service, and if it isn't running, starts it how is this possible please Thanks Hi You can use the ServiceController object to query the status of a service and start it if it is stopped. The following example checks the status of the Messenger service and if it is stopped will start it. This requires a reference be made to the System.ServiceProcess object: Dim controller As New ServiceController("Messenger") 'Determine the state of the "Messenger" service Select Case controller.Status Case ServiceContr ...Show All

  • Visual Basic Putting event handlers in another class

    Okay guys, girls I'm kinda confused here. Let me short explain what i'm have and what i'm trying to do. I have a form (Form1), with a TreeView (TreeView1) and a ContextMenu. The ContextMenu has a few items in it to add, delete, sort, etc... items in the Treeview. Standard, when you doubleclick on a contextmenuitem it creates a new empty event handler in the class Form1. Like this: Public Class Form1 Private Sub AddNodeToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddNodeToolStripMenuItem.Click End Sub End Class What I want to do now is to put al ...Show All

  • Visual Basic Convert script to VB.Net

    I have a simple script (.vbs) that reads an Access Database and writes records to a text file.  Trying to convert to VB, but having problems.  Can anyone provide help   What I really need is an example of a VB.Net program that reads the records in an Access database and writes them to a text file.  Got some of the code in VB, but cannot get it right. Thanks VBS Code: On Error Resume Next FileDirARC = WScript.Arguments.Item(0) FileNameARC = WScript.Arguments.Item(1) FileDirOut = WScript.Arguments.Item(2) FileNameOut = WScript.Arguments.Item(3) FileARC = FileDirArc & FileNameArc FileOut = FileDirOut & FileNameOut ...Show All

  • SQL Server Using XML fields in Report Models

    It is possible to use a XML field in a report model The data type "XML" is not present in the list of datatypes. ...Show All

©2008 Software Development Network