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

Software Development Network >> Pocket PC's Q&A profile

Pocket PC

Member List

Dariusdm
Petter Salminen
Teera Tosukhowong
DivyaNSingh
jpres54
Fr0Gs
RobertKangas
Youz
Peter_DK
Bill Christian
PinkDragon
LINGCHEN
quantumkev
DarrylW
happymozart
venkat_9200
J. Washburn
PureCode
SweptSquash
GerryJ
Only Title

Pocket PC's Q&A profile

  • SQL Server https & setting ServicePointManager.ServerCertificateValidationCallback

    Hi, In my CLR stored procedure, I made a https request. To by pass the security check, I change the property of ServicePointManager: ServerCertificateValidationCallback . But SQL server 2005 does not allow me to do this and gives me exception related to security. It seems the CLR assembly does not have permission to set the property of ServicePointManager: ServerCertificateValidationCallback . What kind of user should I use ...Show All

  • Smart Device Development print function

    does .net CF 2.0 support print function....How do i connect to my printer Can i perform print job it when i cradle my PDA or using the wireless or bluetooth connection to connect to the printer. Assume that it is portable printer. another alternative http://www.codeproject.com/netcf/CFPrinterClass.asp df=100 ...Show All

  • Visual Studio Team System OverrideMethodsOnComparableTypes

    This gets brought up for VB.NET saying overload '==' etc. In Whidbey, you can do this in VB.NET. In older versions, you can't. Bit annoying to get a warning about something you can't fix! Absolutely a bug. We will get this fixed in the next release of FxCop (1.34), current release date not known. Thanks for the problem report! Michael ...Show All

  • Visual Studio 2008 (Pre-release) How to visualize some XML?

    for example we have <book id="100">     <author>John Smith</author>     <title> Post a New <b>Message</b> </title> </book> ... and book should be a Button (id should be converted to color), author is a Hyperlink, title - TextBlock and <b> is a bold text. This is a common task, required for showing markuped text (like HTML). Do we need explicitly convert our XML t ...Show All

  • Visual Studio Cannot find server for Visual Studio help

    I am having trouble using help for Visual Studio 2005. I installed Visual Studio and then installed the MSDN Library for Visual Studio that came with it. Visual Studio itself seems to be working just fine. However, any attempt to use help or MSDN generates the following error message: Cannot find server. URL: ms-help/MS.VSCC.v80/...<<lots more>> The page cannot be displayed Cannot find server or DNS error. This happ ...Show All

  • Visual Studio New project wizard - porting from vs2003 to vs 2005

    I created, using CodeDom , a new custom project type with VS2003. The project creates a new form with a few components, several predefined methods etc.; just to be clear the project calls dte.LaunchWizard("CSharpExe.vsz", ref parms) I'm now trying to port this project to VS2005 and I had to modify the above call to : Solution2 sol2 = ( Solution2 )ApplicationObject.Solution; strTemplatePath = sol2.GetProjectTemplate( "Windows A ...Show All

  • Visual C# Is there a way of reducing the accessibility of override methods in derived class?

    Given a virtual public method on a base class, is it possible to make the override method in a derived class private so that users of the derived class cannot access the overridden method Are there any plans to support this in C# Any suggestions on how to achieve this in the meantime Thanks, Darren. On the purity of the "is-a" relationship in the oo paradigm, I agree. In this thread i was proposing that the C# s ...Show All

  • SQL Server Query on Custom source Component

    Hi in the acquireconnection method Using the below statment I can get a connection Object oledbConnection = cmado.AcquireConnection(transaction) as OleDbConnection; from the connection object I can get the connectionstring from the object by calling oledbConnection.connectionstring() property which will have all the details like DataBase, UserName & other Inofrmation but there is no password Info. How to get the password I ...Show All

  • Visual C# Parse a structured text file and extract data.

    I'm trying to parse a text file that has a certain consistent structure and load it into a string for processing.  Can someone guide me in the right direction   Basically this is a C# windows application that will call a batch file to run that will output a text file into a temp directory.  I need to parse this file and extract certain data from it.  ShouldI use some sort of regular expression or is there a be ...Show All

  • Visual Studio Express Editions Best way to do something

    I have a project and I'm not sure the right way to go about it - I'm after some ideas. Basically it'll be a program that takes ad bookings for a magazine and allows them to be placed on pages in magazine editions. I'm thinking of setting up a class for ads, pages and editions but my problem is that an edition will have properties like date, magazine, number of pages but also contain an array of pages then a page will have properties li ...Show All

  • Windows Forms How to get all the attributes of an HtmlElement?

    System.Windows.Forms.HtmlElement.GetAttribute can be used to get value of an atribute by its name, How can I get the name of all attributes for an HTMLElement Thanks i guess that would be one way to look at it---of course, if your html is well formed, then you just load it in an xmlreader, there you have it...no shortcoming ...Show All

  • .NET Development MMC Snap in .NET

    Hi All, I want to use C# to develop a MMC snap in for 3.0. Documentation says .NET library is available. But how do i set the reference for it using Microsoft.ManagementConsole; regards Sudhir Hasbe I was in the beta for MMC 3.0 (originally called 2.1) and I'm in the same boat as you. Here is the run down: MMC 3.0 was really made for Windows Server 2003 R2. R2 is superset of Windows 2003 SP1, actually it instal ...Show All

  • Visual Basic Press submit button on the web

    Hello, i am creating a webbot, but i have one problem, i need to press a submit button, i tryed this method: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=166883&SiteID=1 It works completly when i try to fill the username/password fields. I just cant press the submit button. Any idea The page i am trying to use the submit button on is: http://www.nordicmafia.net PS: Sorry about my bad English. ...Show All

  • Software Development for Windows Vista Dashed lines with InkOverlay

    Hi,   I am trying to set inkoverlay object's defaultdrawingattributes property with something that can draw a dashed line.  I have a simple application that can draw shapes and I would like the user to be able to select the dashed line from a pallette of tools that I have created.  When the user draws (strokes), the line will appear dotted/dashed.  I have searched almost every forum and can't find anything!  H ...Show All

  • Visual C# Why I can not get image from Northwind Database ?

    I can get image from my own database into picturebox but I can not do this with Northwind database. Please tell me how I can get image from this database. Thanks a lot [code language="c#"] //Original code ... //byteBLOBData = (byte[])(ds.Table[0].Rows[1][1]); //Should be 'Tables' not 'Table' and as the query //returned a single row, there is no Rows[1] ... byteBLOBData = (byte[])(ds.Tables[0].Rows[0][1]); //Original code ...Show All

©2008 Software Development Network

powered by phorum