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

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

johnconstantine

Member List

BinaryBoy
taurean
Dustmaker
tonyhinkle
MuscleHead
Randy_
shian
Jake Pratt
sirji
indiana_jones81
Fernando Celarino
akenig
Sagar Joshi
Kevin Kwan
James Miles
orc
kentsoftwareromaniatim
Trajecto
Joe Horton
Marthinus
Only Title

johnconstantine's Q&A profile

  • Visual Studio Express Editions visual C++ errors

    Whenever I try to view the properties of a project visual C++ has a fatal error and closes. Thanks, gandaliter Try re-installing. It seems that there is something wrong in the installation. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual C++ Microsoft Dynamic Link Libraries (dlls) - What ones must be given to the end user?

    Compiler: Visual Studio.NET 2002 Hi everyone, You will probably think I am a bit dim for asking this question but it is one that does confuse me. How do I know what standard Microsoft dlls (Dynamic Link Libraries) must be sent out with my software so Windows users (even the previous Windows release users) can use my programs I was going to link statically (as I got the impression that doing so would automatically put the dll in the final executable). Then I got some errors which got resolved when I linked dynamically instead. So even though the optimal answer would be to link statically, please answer assuming I link dynamica ...Show All

  • Windows Forms crystal reports not displaying data

    Help! I'm developing a desktop application that uses several crystal reports.  I use an ADO.NET dataset and set the datasource for all my reports in code.   Up until a week ago, I never had any kind of problem with this.  Then suddenly - as in it ran fine one minute and not the next - all my reports stopped showing data.  I get ...Show All

  • Visual Studio Express Editions problem installing vb express

    It wont install! It says that its installing components for it, but when it has about 3 bars left, it doesnt go any further than that. By what means are you installing the software, are you using the web installer or the ISO (Manual Install). Also I would make sure that your operating system is up to date by connecting to windows update and downloading the updates. ...Show All

  • .NET Development DataTable's question in class ?

    Please tell me why I received errors when doing this: class MyClass : DataTable { public MyClass():base() { DataTable dt = new DataTable(); this = dt;// errors occur here, what can I do to let dt to "this" } } Thank you for your help. you cant reassign "this" if MyClass inherits DataTable this is already a DataTable, and Calling Base initializes it as a DataTable: class MyClass : DataTable { public MyClass():base() { Debug.Assert(this is DataTable); } } ...Show All

  • Visual Studio Trouble installing VB 2003 version

    Hello, I just got a new computer and when I tried to install VB Version 2003 I got this message under Step 1(Prerequisites) "Setup has detected that some of the system components that are intalled on your computer do not match the versions required for Visual Basic.NET. You must install a different version of these components" And when I click on it is says: "Setup has detected that another program requires the computer to reboot. You must reboot the computer before installing Visual Studio.NET Prerequisites. " I clicked OK and the computer reboots but I keep on getting the same message when I try to intall it again. I have no ...Show All

  • Windows Forms Filelist in listbox - How to open in default editor (for any extension type)

    Hi,   I was wondering if someone could point me in the right direction for opening a file in it's "default" editor when double clicked in a listbox. I know how to catch the event, but not sure how to know which application to launch. How can I determine (at runtime) which files are associated with which file extensions I know this is probably stored in the registry, but I have yet to do this Thanks for any suggestions. ...Show All

  • Windows Forms install: incorrect syntax near the keyword "ON"

    Sounds like a registry problem. The message box posts this error two times in the box. It is at the very end of the install. I have winxpPro VS.Net release version .net framework 1.0 admin priveleges (member of Administrators) I have tried this as install for "just me" and "everyone" though I don't  believe it is related to iis or sql server, they are ...Show All

  • Visual Studio Team System questions on iterations/classifications

    First I understand conceptually what iterations are - I've read the MSF documentation - I think it fits quite well with what we're doing... My question is do iterations show up anywhere other than as fields in work items   Are they anything more than query criteria Do they play a role in source control - for example let's say we're stabilizing an iteration for QA or something, but some developers want to continue with development into the next iteration - is there anything akin to associating changesets with the iteration Or am I barking up the wrong tree - is that the function of a branch Looks pretty cool so far - keep it coming ...Show All

  • Visual Studio Team System WebTest playback where form enctype="multipart/form-data"

    Hi. I've been having some issues with the replay of a webtests that submit a form having enctype="multipart/form-data". The web test recording tool seems to deal with it just fine, and all the expected actions are performed, however when played back in VS2k5 the scripts generated application errors (i.e not VS tool errors) In our case we removed the enctype attribute and all was fine except we couldn't upload attachments (we were lucky that this was not essential). Something I noticed was the lack of Content Type Header when there was no file attached. I'm no guru on the intricacies of form submission, but I was expecti ...Show All

  • Visual Studio Express Editions Which Data Type??

    Can anyone point me to a simple introduction to the data types in SQL2K5EE I come from an Access background and I am trying to get a hold of having MORE POWER!! :-) I just need a simple little explanation of the data types and what they're good for. Thanks in advance... Have a look at the following links... SQL Server 2005 Express Edition Documentation and Samples (December 2005) http://www.microsoft.com/downloads/details.aspx familyid=9697AAAA-AD4B-416E-87A4-A8B154F92787&displaylang=en SQL Server 2005 Books Online (December 2005) http://www.microsoft.com/downloads/details.aspx f ...Show All

  • .NET Development Absolute Position of Control on Web Form

    Is there a way of setting the absolute position of a control on a web Form In most samples, positioning is done with a table. I want to do it programmatically by setting the absolute position of a control added programmatically to the page. Your help is very much appreciated Beat Hi, Please take look at the code snippet below. Adding a TextBox dynamically and then settings its absolute positioning. Code sample uses .NET 2.0 Beta 2 ----------------------------------------------------------- CODE SNIPPET ----------------------------------------------------------- protected void Page_Load(object se ...Show All

  • SQL Server datatype casting in derived column

    Here is my expression in a derived component: "Failed insert into PONL_WELL. WELL_NO=" + (DT_WSTR,10)PROP_NO PROP_NO comes from ms sql server , and the derived component datatype for this column is DT_WSTR. The destination will be ms sql server, and i have a data conversion after the derived component to cast from DT_WSTR to DT_STR. However, the derived component failed everytime giving me Error: 0xC0049064 at Load Ponl_Well, Derived Column [1342]: An error occurred while attempting to perform a type cast. Anyone know how i can eliminate the data conversion component and just do my string and column concatenation ...Show All

  • .NET Development Generating an OGC compliant web feature service

    I am very new to VS.NET, but following the examples available have successfully implemented a service providing the location of a mobile device (with GPS on-board) and a client to access this information. Ideally I would like the service to be an OGC compliant web feature service so that I can get third party tools to interact with it.  Are there any add-ons available that would help me achieve this goal from within VS.NET Hi Pete, I've found quite a few controls and code samples for writing applications that access OGC compliant WFS's from within Visual Studio, but I don't know of any add-on ...Show All

  • Visual C++ Flaw in C++ 2005 compiler?

    After setting a ref type = nullptr, I should not be able to reference the object, but this is not the case.  Even after GC::Collect, the object is still there.  What on earth is going on #pragma once using namespace System; ref class Managed { public: Managed(); ~Managed(); !Managed(); void Write(); }; #include "stdafx.h" #include "Managed.h" Managed::Managed() { } Managed::~Managed() { Console::WriteLine("Managed destructor has been called."); this->!Managed(); } Managed::!Managed() { Console::WriteLine("Managed finalizer has been called."); } void Mana ...Show All

©2008 Software Development Network