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

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

Adrian_Peirson

Member List

Raj1979
Valentin
Richard Mixon
danielgary
aarron
Be_Ta
India62
gg1
Davenmcd576
Usman9852000
JMcL
p_metzler
Christopher_N
Dave the Zionist
ReNgA
Los Calibra
Mr. Rare
ZMAN!!
Dan Freeman
Malb
Only Title

Adrian_Peirson's Q&A profile

  • Visual C# Where can I find Provider Configuration in ASP.NET Web Site Administration Tool?

    Where can I find Provider Configuration in ASP.NET Web Site Administration Tool I have read the article "Web Development with Visual Web Developer 2005 Express Edition and SQL Server 2005 Express Edition, Part 1" in http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnsse/html/VWD_SSE.asp but when I open ASP.NET Web Site Administration Tool from Visual Web Developer 2005 Express Edition Beta 2, where can I find  Provider Con ...Show All

  • Visual Basic Can't add new form

    Yesterdday I added power toys and My.windows.events.extensions.  Today I wanted to add a form to my project.  I tried the add new item button and got only my templates, with the two choices being the above and search for more templates online. I tried project menu -> add windows form, with the same result. I uninstalled power toys to no avail. I found nothing like windows events extensions, or my.windows, or microsoft. window, etc., ...Show All

  • .NET Development SQL Data class / structure?

    Someone on a board somewhere took a look at my code and said I shouldn't be manually assembling strings for SQL queries, I should be using an SQL Data class (or was it a structure). I can't find a good, clear reference to this. Advice Dave, When you say, you are assembling queries, do you mean that you are appending just parameter values to the existing query skeleton or you are building the query on the fly If you are just appending the ...Show All

  • SQL Server Obtain sqlceresultset table schema with GetSchemaTable

    I have a SqlCeResult pointing to a table : Public conexion As Data.SqlServerCe.SqlCeConnection = New Data.SqlServerCe.SqlCeConnection( "Data Source=iPAQ File Store\GestionAlmacenN.sdf" ) Public ComandoCargaProductos As Data.SqlServerCe.SqlCeCommand = conexion.CreateCommand Public ResultSetProductos As Data.SqlServerCe.SqlCeResultSet Private Sub Form1_Load( ByVal sender As Object , ByVal e As Sy ...Show All

  • Visual Studio Express Editions Error starting my project ...Root element is missing ...

    If anyone knows how I can get my project back working It worked fine. Stop working at it. Restarted it a while later and I get ... {"Root element is missing. (C:\\Documents and Settings\\jmwatte\\Local Settings\\Application Data\\EyeToEar\\EyeToEar.vshost.exe_StrongName_withABunchOfNumbers\\1.0.0.0\\user.config)"} ... And I pray on my knees that somebody knows how to get everything back to normal again . I work in C#2005 Express Edition Beta ...Show All

  • Visual Studio How to build VC++.Net Target as .Net Framework 1.1 with MSBuild or VS2005

    I have one project writting with managed C++ in VS2003. Now, I have to migrate it to VS2005. But, I want use MSBuild or VS2005 to build it target as .Net 1.1 assembly. How can I do I have found the ways (as MSBee) to build C# and Vb.Net target as .Net 1.1, but the MSBee can not be used to build .vcproj. Ming, C++ projects cannot be built with MSBuild, unfortunately. The only way to get a Managed C++ project built against .NET Framew ...Show All

  • Windows Forms FileNotFoud Exception???

    Hello everyone! I'm working on a new creature (first real one) and when I introduce it to my local terrarium it gets destroyed. The error that is being dumped to Trace is a bit odd (see below): **** An exception occurred in a 'shrieker':  System.IO. ...Show All

  • Visual Studio 2008 (Pre-release) Avalon Custom Components

    Hi, I am having a lot of trouble creating a custom component for XAML. The component does not seem to work with XAML, it does not add itself to the toolbox, but it works fine for a Form Windows Project. I used component as the base class, and no I did not use any Windows.Forms controls on the component. Can any one tell me how you should create a custom component for XAML Seeing as creating a WinFX project you do have XAML components in the ...Show All

  • Visual Studio 2008 (Pre-release) Animation not working in code

    I set some animations in a WBA. First I register the name: Application.Current.MainWindow.RegisterName(myElement.Name, myElement); When I try to set a storyboard and set an animation on this element I get 'The name 'myElementName' could not be resolved in the name scope of 'MS.Internal.AppModel.RootBrowserWindow' like the name is not registered. This code used to work in Sep CTP. Did something change for Nov CTP regarding ani ...Show All

  • Visual Studio Team System Override Link Demand

    I'm back with more questions : Basically, the following J# code snippet: public class ItemType extends Enum { //The values that will appear in the drop down list public static final int DESCRIPTION = 1; public static final int VALUE = 2; //Verify that the value in the properties window is valid public static boolean valid(int value) { return(value >= DESCRIPTION && value <= VALUE); }// end val ...Show All

  • Visual Studio 2008 (Pre-release) Replacing the +/- in a TreeView

    Is there a good way to replace the +/- buttons on a TreeView HierarchicalDataTemplate doesn't seem to be the right choice, and I don't know how to use a ControlTemplate with a TreeView. Thanks Hi Jordan, Have you given Microsoft Expression Interactive Designer a shot at this ( http://www.microsoft.com/expression ) Though we don't allow you to author HierarchicalDataTemplates in the tool, if you only wanted to change the template of ...Show All

  • Visual Basic Reading from file errors...

    Hi everybody.. This is the problem I have: I have a .txt archive which contains lines for configuring labels, buttons, and other controls of my form. This archive is written in spanish and some letters have an accent. I can read wit no problem the line, but when I assign the value I get (string type) to the text property of the control, the accent letters did not appear at all. Now I tried configuring my regional settings, before I had Eng ...Show All

  • SQL Server generate table or database schema

    what is the sql servre equivalent to 'describe' keyword. how do we generate the schema of the database and tables of a database. schema here refers to column names and its types. Hi, have a look at the INFORMATION_SCHEMA views, in your case the INFORMATION_SCHEMA.Columns Select * from INFORMATION_SCHEMA.Columns HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Express Editions How to Format date from 01/01/06 to 01, Jan 2006 in VB 2005

    I am having a problem.  I just installed the new version of VB 2005, and I don't know how to format the date. For example in VB 6.0 I do as fallow: CODE:   Me.panelDate.Caption = Format(panelDate, "dddd"", ""dd MMMM"", ""yyyy") DISPLAY:   Sunday, 01 January 2006   If I do similar using the VB 2005 CODE:   Me .LabelDate.Text = Format(LabelDate.Text, "dddd"", ""dd MMMM"", ""yyyy" ) DISPLAY ...Show All

  • Visual Studio Tools for Office runtime errors - Outlook add in

    Hello - i am new to this world of vsto :) - system= vs2k5 RTM, vsto RTM, xp sp2, office 2k3 sp2 I have done a lot of searching to find this answer so am posting here in the hope of some insights. I have a basic add-in which just puts a button bar and 2 buttons with a msg box tied to the handlers...  Works fine. I have another add-in which i must have some errors in - after loading this add-in the basic working add-in will fail.  Even ...Show All

©2008 Software Development Network

powered by phorum