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

Software Development Network >> Andrew Park's Q&A profile

Andrew Park

Member List

Charles Berry
Ben Taylor UK
snark112
Shabdar
jjoravec
Ilanth
Jason Manfield
mike24
jspliff
P Liedman
majkeli
KombatNT
Jayasurya
Frank Laszlo
GaryIsMyName
Shinigami
E. Richards
swin
Marketa Pobudova
Maciek Sarnowicz MSFT
Only Title

Andrew Park's Q&A profile

  • .NET Development WSE 3.0 Labs Messaging

    Pleased to say I got this up and running this morning, sending the Soap messages to my server over the custom transport SMTP. Pretty cool. For anyone else, three minor things: 1. The lab has an email address example in the client app.config rather than the server: < add key = " SmtpServer " value = " mail.mailserver .com " /> 2. I had to add a line to send the credentials to the mail server I was using in the Send method for the new .NET 2.0 SmtpClient in the MailBox class client.Credentials = new NetworkCredential (" email@somewhere.com " , "password" ); 3. The default install for me was under my profile, if you ...Show All

  • Visual Studio 2008 (Pre-release) WPF and shadows

    Hi, I am interested in generating shadows for several pieces of geometry in my 3D application, and I was wondering if access to the stencil buffer is restricted when using WPF. If this is the case, is there any way (built in or otherwise) of generating shadows at a reasonable speed Thanks in advance. WPF doesn't allow access to the stencil buffer nor does it have shadows in V1, sorry. Shadows have been one of our biggest feature requests. If the shadow is going to be on a plane, you could do something like find the silhouette edges, project them onto the plane, and draw the projection in black. ...Show All

  • SQL Server Is Sql Mobile a generic database engine?

    Hi, I am about to write an application of the Pocket PC 2003 SE. I plan on using CF2.0 and VS 2005. The application will need to store several different peices of information, I immediately thought of using a database. I have read somewhere that Sql Mobile 05 will only allow databases on the device via replication with Sql 2005. I don't want to use replication. I just want to store several diffent peices of information for use with my mobile app. Would Sql mobile be suitable or should I stick to something like persisted ADO Data tables Thanks for your help Graham Yet another URL of interest: http://www.micr ...Show All

  • Visual Studio Team System Is there an API to manage work Items

    Hi, I have an application that I would like to integrate with the Team System work item database. I would like to be able to manage the work items in my own app, at the same time keeping them in synch with the Team System db. What would be the best way to do this Is this possible from a Java application thanks Okay I know there is an SDK which will allow you to do this..but only from a .net language......I would have thought that there should be a webservices api for this stuff aswell..especially since thats how the .net managed code comunicates with the DB. Providing a webservices api wil ...Show All

  • Visual FoxPro how to change field values?

    I am looking for a way to address fields to change their values. I cannot understand how it can be done in VFP. For instance, if I use two statements which open a database table with a few fields in it, what do I do next USE DatabaseVfp1 tcp_ip IN 0 as cTableAlias SELECT ALL FROM cTableAlias cTableAlias.fieldName1 - what does this expression give me Is it the field value or just a field name Can I write: cTableAlias.fieldName1 = "myString" for instance if it is a type string field From the way VFP handles tables and queries as I can see so far it hardly can be called OO language. In Visual dBASE it is much more con ...Show All

  • Visual Studio Team System MSTest Command Line Error - Test 'x' cannot be found.

    When I run the test harness from the command line: mstest /resultsfile:test.xml /testmetadata:tests.vsmdi /testlist:BuildVerificationTests I get the following: Microsoft (R) Test Execution Command Line Tool Version 8.0.50727.42 Copyright (C) Microsoft Corporation 2005. All rights reserved. Loading tests.vsmdi... Starting execution... Test CheckExpectedTypeGoodParameters cannot be found. No tests to execute. However, through the IDE the tests operate without a problem.  Is there any way to get a more detailed log to figure out why MSTest isn't locating the test   When I run it without the testlist parameter it manages ...Show All

  • Visual C# How can I give percentage values to the columns of a listview?

    Hello, I think the title says it. I want to give percentage values to the columns of a listview. How can I do that Your help would be greatly appreciated. I don't want to use fixed value sizes in the listview columns because the program may be used on diffrent screen resolutions and the user may resize the form. Thanks. ...Show All

  • Visual Studio Tools for Office KB 907417 & 908002

    Hi; Asking new because I think this got lost in the message it was a reply to... Just to confirm, if I have run the latest windows update and it shows no updates for Word, then the fixes in KB907417 should be on my machine - correct I have never run the fix in KB907417 and on my dev machine it has version 7.10.5077.0 but my test system, which shows no pending office updates, has 7.10.3191.0. So it looks like I do have to install it. Do we run this same update for Word 2002 and Word 2000 Or is there a different update in their cases And for our customers, I assume we have to point them at this fix Or will it be included ...Show All

  • Visual FoxPro Public Variables

    Somebody can tellme how can I use a Public Variable declared in main.prg to use in all forms in an application Actually, I want to check a Password to assign diferent access to change data or only for consulting. Declaring Public in Main seems not have effect in forms. Thank you Public variables declared and assigned in your main program most certainly should be visible inside your forms unless your main.prg has ended when you call your forms . Can you confirm that your main program contains a READ EVENTS command ...Show All

  • Visual Basic How to get Windows Directory

    I was programing on Visual Basic 6 and I was good. Since days I have purchased Visual Basic 2005 and I liked it very much, it is stately. There are a lot of differences, e.g. in VB 2005, there is no API. My question is: How can I get Windows and System Directory Can anybody help me, please   Thanks   Environment .GetFolderPath( Environment . SpecialFolder .Desktop ) gets the desktop folder. Change the enum passed to the function to get the folders you want. ...Show All

  • Windows Forms set client area of control that inherits from panel

    Hi everyone  I have a control that inherits from the panel control, but I need to be able to do some custom drawing in the top 30 pixels of the control and add some controls, the rest of the control area is for controls to be added to at design time. What I'm looking to happen is when a control is placed in my control at design ...Show All

  • .NET Development filter xml element value or dump to dataset to filter?

    I have an xml file as the following: <company> <id>000</id> <address>foo</address> etc. </company> I need to search this file and get all values within the company element where the id equals a variable. I tried using (XmlTextReader.ReadString() = variable) which worked but it was too slow to be feasible. Is there a better way or should I just dump this file into a dataset and filter it there How slow is it what is your goal, and what is the current "speed" maybe we can speed it up. Loading it to a DataSet will probably take longer. ...Show All

  • Visual Studio Express Editions Adding TextBox in GridView

    I am using GridView in Asp.net Visual Studio Express edition. How to add textbox for every row in gridview. I am working on shopping cart in Asp.net and i have to add textbox to all rows displayed. Also tell me how to add checkbox control such that users can check the desired rows. The checkbox control in gridview displays only the values in database.If we want to add seperately not involving database. Willfin David. Take a look at this MSDN Article, Editing the Underlying Data in a GridView . ...Show All

  • Visual Studio "Microsoft.Sdc.Tasks" project is not getting recognized

    I have created a web service with default settings. Copied the contents of the Install folder <from the GDN2[1].0.051004.000.zip file> onto a new folder called Build. I created a DevBuild.proj file with the following contents: < xml version = " 1.0 " encoding = " utf-8 " > < Project DefaultTargets = " Full " xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > < Import Project = " Microsoft.Sdc.Tasks " ></ Import > < PropertyGroup > < BuildConfig > Debug </ BuildConfig > </ PropertyGrou ...Show All

  • Visual Studio Team System How can I delete a Team Project

    Hi, How ca I delete a Team Project, I try, but ins't works. Any Idea. Use TFSDeleteProject to delete a team project from Team System. The TFSDeleteProject command-line utility is located in <drive >:\Program Files\Microsoft Visual Studio 8\Common7\IDE Usage: TfsDeleteProject [/q] [/force] </server:<server name>> <team project name > [/q] - Do not prompt for confirmation. </server:<server name>> - The name of the Team Foundation server. [/force] - Continue even if some data cannot be deleted. <team project name> - The name of the project. Use quotes if there are space ...Show All

©2008 Software Development Network