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

Software Development Network >> Brendan Comerford's Q&A profile

Brendan Comerford

Member List

nildorn
Weidong Ding
TheLe
Tommy
folen
ISantos
Dominic Morin
Aaron128
NFG
marla
PeeJayGee
djMaurice
LeeH1972
asifbhura
Abu Yaman
Marcin2k
DJPO
RotcivL
xarcson
sirck sirck
Only Title

Brendan Comerford's Q&A profile

  • Visual FoxPro With ... EndWith

    How does nesting work with With ... EndWith Does VFP work out which object I am referring to if I just enter .cDescription for example Is there a potential for ambiguity if the 2 objects have the same property I would like to use nested With ... EndWith but I am wary of introducing some difficult to find bugs. It should work fine with simple nesting. I prefer not to use nested WITH..ENDWITH for maintainability and readability. Just my .02 ...Show All

  • Smart Device Development Compiling error C1190 while building solution for Visual C++.net project

    Hi, all, I am using Visual studio 2005 to make a Visual c++ project. I was trying to make a simple UDP socket and threading program. The device manager i am using is wm 5.0 for Smartphone, and wm 5.0 Smartphone emulator. Here is what I have in the header file: #using <mscorlib.dll> using namespace System; using namespace System::Threading; using namespace System::Data; using namespace System::Net; using namespace System::Net::Socket; When I was trying to compile it, an error message popped up:"fatal error C1190: managed targeted code requires a 'clr' option", and I was trying to find this " ...Show All

  • Visual FoxPro Need to run "BUILD EXE" command in an EXE file

    Hi All, We have about 100 projects. Time to time we need to recreate the individual EXE files for all projects. We want to create another executable program which is going to create all individual EXE files when needed. In foxpro command window we can run BUILD EXE command, but if we try to run it within the executable, we get error "Feature is not available". Is there any way around this Thank you very much for your help in advance. Vedat ARAL No. You can't build a new exe but you might however compile individual pieces at run time. ...Show All

  • SQL Server SQL Server Operations Guide - Q. for Dave Wickert

    Hi Dave, You produced a really cool SQL Server 2000 Analysis Services Operations Guide some time back which i, as a DBA, found very useful. Do you have any plans to update the document for SQL Server 2005 If so, when will it be available   I'm looking to get my hands on it (or a draft copy) as soon as possible if that's feasible. Many thanks, Kyle. Thank you for the kind words. Unfortunately there are no plans at this time to update the white paper for AS2K5. I certainly do hope that will change. However, there is lots of cool AS stuff out there. My team's latest work has been on Project ...Show All

  • .NET Development ShowModalDialog - Select Text

    Is there anyway to select text within a Modal Dialog Box Thanks, Tim I've been searching for an answer to this as well, and the only way that I'm aware of is to put the text in a textbox/textarea and optionally remove the borders of the control. Marking the textbox as "readonly" will cause the text to NOT be selectable though, so users will be able to modify the text in the box. Also, if it's an option, consider using the ModalPopup control from the ASP.Net Control Toolkit ( http://www.asp.net/ajax/ajaxcontroltoolkit/samples/ ). Cheers! ...Show All

  • Visual Basic ? difference between: Me, MyBase and Parent

    I don t know what the difference is between these three items: me, Mybase, parent When do we use each of them. Also is the quivalent of this in C#: Me or MyBase Gracias Amigos:) Me is a reference to the current object. Often optional to use, but helps clarify your code when accessing methods and properties with objects with similar names. MyBase is a reference to the base object: the current object may have inherited from a base object. Used when you explicitly want to access a property or method of the base class. Parent is the 'owner' or container of a control or form (Graphical controls) and is not relevant to a ...Show All

  • SQL Server .query / .value failing when elements have "xmlns" attribute

    I'm having difficulties running the queries I'd like to against xml type columns containing SOAP response envelopes from web service calls I'm making. I've reduced the problem to a fairly small representative example: declare @testxml XML set @testxml= '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">   <soapenv:Body>     <MySoapCallResponse xmlns="myvalue">       <Ack>Success</Ack>     </MySoapCallResponse>   </soapen ...Show All

  • Windows Forms DataGridViewComboBoxColumn and Enum values

    Hi, I'm trying to use a ComboBoxColumn in a DataGridView to allow editing of an enum value in a class. E.g public enum Stuff {    Apples,    Pears,    Oranges } public class MyTestClass {     public Stuff MyStuff { get { return m_MyStuff; } set { m_MyStuff = value; } }     public string MyString { get { return m_MyString; } set { m_MyString = value; } }     private  Stuff m_MyStuff = Stuff.Apples;    private string  m_MyString = "Test";     public test() {  } }   So I want to use a Dat ...Show All

  • SQL Server Unpublishing an article

    Hi: If I want to unpublish an article thru Enterprise Manager, it does not allow me to uncheck it at publication properties. It only allows me to uncheck articles if I delete the subscription first. Does anybody know how tp do this in Enterprise Manager without deleting the subscription Thanks SQL Server 2000 does not support unpublishng an article with active subscriptions. This has been relaxed in SQL Server 2005 and works the way you are expecting. ...Show All

  • SQL Server Error on Attaching SQL server 2005 DB

    Hai When i try to attach (using raw .mdf & .ldf)  DB that was detached from another SQL Server 2005 instance. I got this error The database 'Content' cannot be opened because it is version 611. This server supports version 603 and earlier. A downgrade path is not supported. Could not open new database 'Content'. CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 948) How can i slove this Error Regards It appears you are attempting to attach to some pre-RTM version of SQL. You'll want to ensure that you are using the released version of SQL2005, and not a previous beta/ctp version.   ...Show All

  • SQL Server Configuring Environment for first time

    Each time I start of SQL Server Management Studio, I get the following message "Microsoft SQL Server Management Studio configuring environment for first time". I had a simiiliar message with Visual Studio 2005 and fixed it by setting the setting to look on local disk drive. I cannot find a similiar setting in SQL Server 2005. Any suggestions on how to resolve mwharton - I have the same question. Did you find an answer anywhere Harold ...Show All

  • Visual Studio Team System Procedure for using Build Server with Multiple Branches

    I have question in regards to properly using the Build Server with multiple branches of an application.  As an example lets say I have a simple solution (called TEST) with a web 'project' and a class library.  When I first setup my build type, I set it up to build the TEST solution.  I run the build and it creates build number: 20051008.1.    I then "Branch" my solution in Version Control to keep a build history.  So I create Branch20051008.1 in Version Control. So now I have 2 branches - the main line - TEST solution, and the branched build version Branch20051008.1.  Through testing a couple days ...Show All

  • Visual Basic how to change struct to array under wince?(I have code but only run under other window platform)

    The following code is I found at http://www.codeproject.com/vb/net/Marshaling_Structures.asp . But under wince and VB.NET,it could not be compiled. Please help me and give some way to solve it. From Structure to byte array: Private Structure Test Dim Var1 As Short Dim Var2 As Short End Structure ‘Start here Dim Tst As Test ' Stuctuer variable Dim ByteArray() As Byte ' initialize Structure (Dummmy Values) Tst.Var1 = 911 Tst.Var2 = 7 Dim Ptr As IntPtr = Marshal.AllocHGlobal(Marshal.SizeOf(Tst)) ReDim ByteArray(Marshal.SizeOf(Tst) - 1) 'now copy strcutre to Ptr pointer Marshal.StructureToPtr(Tst, Ptr, False) Marshal.Copy(Ptr, B ...Show All

  • SQL Server "Exception has been thrown by the target of an invocation"

    Receiving the following issue when opening a new integration services project: "Exception has been thrown by the target of an invocation" Has anyone experienced this issue I have done the following steps to try to resolve the issue however none of these items have worked: 1. un-registered and re-registered the DLL's in the binn dir for SQL server 2. Un-installed SQL Server and re-installed it. 3. Ran windows update to see if I was missing service pack updates. 4. updated MDAC and Jet engine. I am at a total loss on this and will most likely reformat the machine if no one else is having this iss ...Show All

  • Visual Studio Express Editions application run at windows startup??

    how could I make my application run at windows startup,, and thanx in advance . Add your program to Start button > All Programs > Startup ...Show All

©2008 Software Development Network