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

Software Development Network >> Jeff Barclay's Q&A profile

Jeff Barclay

Member List

Matthew Yeh
Oscar Ivan Gil
Narcomancer
Stevezilla2000
LA-3243 Jerry
Joshua Sells
Nailara
Cutter1703
GSM_GCV
stryderblaze
chjmiller
cbarru1
jcooper
CET PRG455
KhalidMirza
BMcCool
StevenLK
MladenP
NitinNetaji
Paris42523
Only Title

Jeff Barclay's Q&A profile

  • Visual C# Create updates of my Setup project…

    I make a Setup Project in Visual Studio 2005 for my application. All works well but when I’m going to distribute an update in a new builded version of my application my clients have to first uninstall my application and then reinstall the new one. I get the following error when I try to install my app again: Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel. How do I do to make the new release be installed over the old one The Setup projec ...Show All

  • .NET Development Connectionstring

    I have a big project in my VS2005.  It has several projects including a DataLogic. This datalogic contains a single dataset. Everything is running very smoothly on my local 2005 database. Now when i publish the complete webapplication to our live server, the connectionstring is compiled wrong into the DLL. I can not believe that i have to recompile the compleet application with the correct connectionstring every time i want to publish the application to our live server.  And change it back to the development values. What is the best way to solve this issue Should i work with the machine.config (If yes... How...) Kind regards D ...Show All

  • Windows Forms Databind to collection object

    I've created a customized collection and want to databind it to a DataGridView. After some research, I found that I need to create a bindingsource control and then bind to the specific collection object. The first problem is that I need to retrieve the collection instance for some additional method calls. How can I get the underlying collection instance back I found that the databingsource will use BindingList<T> as its internal store. How can I convert it back to my specific collection so that I can make additional method call your custom collection should inherit from BindingList. . . if you have a class FooBar. . . and a ...Show All

  • Windows Forms Opening MDI Childs with DB content by clicking in a treeview

    Hi out there! I'm currently making a program with MDI structure, but right now I'm stock: In parentform  I have a treeview generated by records from a database - the single Nodes have the recordID stored in .Tag When I click on node: Office Employer 1 a Child form opens op showing the data connected to this Employer ID. BUT - here comes the proble ...Show All

  • .NET Development Disable all interupts

    Hi , How can i disable all hardware interrupts Thanks. Well, IIRC, this would require that your code was running in Ring 0, which would mean that if you were doing this in Windows, .NET is out, you'd have to write it using C++/assembler or some such system-level language. In addition, disabling all hardware interrupts would mean that most device drivers would fail, and the OS would come crashing down around your ears. Hardly an ideal situation, what are you trying to do ...Show All

  • Visual Studio Team System Fxcopcmd.exe file option

    I have diffcullty in asscessing the file to check in other directory other that primary c: drive is there some problem with my statement or it is not possible to be done What difficulties are you seeing Can you post your exact command-line and the error output you've noticed It is certainly possible to reference files other than those on the primary drive. There must be something else going on for you. ...Show All

  • Smart Device Development VS 2005 C# Debug/Release

    I get a Debug build (ends up in the Debug folder) whether I select Debug or     Release. I also wanted to turn on Optimization int the Release Build.   (like C++ or is there no such option) Does it matter in C#, if you select DEBUG or RELEASE And is the distinction between the 2 sub-directories 'bin' and 'obj'. It seems to build the same stuff in both with Obj have sub-directories for     Refactor and TEmpPE( ) and includes a bunch of .resources files. My program (a board game) run REALLY SLOWLY, and it is not just the Drawing. I was thinking of porting to C++, asI did a comparison (E-Sieve) and C++ is ...Show All

  • Windows Forms ComboBox problem (NullReferenceException)

    Hi all. I have a problem with a ComboBox. When I leave my form I always get this Exception. I already wasted a lot of time trying to find out whats happening. If the control is correctly initialized why I always get this exception when I close the form Any ideas Besides this the event SelectedIndexChanged is thrown a lot of times even when the user dont change nothing. Any ideas about when this event is thrown during the control lifecycle Thanks in advance for any help. Best regards LFS Hi, I'm using C# and Visual Studio 2005. I provide a sample of the code I'm usi ...Show All

  • Smart Device Development linking library for smart device in visual studio 2005

    Hi, I am trying to create a smart device application in visual studio c++ 2005.The applications(Miracl) has libraries.When I compile the application as win32 console application (vc++2005) I able to compile it.But when I tried to compile the same application with smart device(visual studio 2005 using c++),i am getting linking errors lnk2001 and lnk2019 saying "unresolved external symbol" for all the functions.I am copying the error log below.Can anyone guide me on this.Thank you. error log: 1>------ Rebuild All started: Project: smart_dev, Configuration: Debug Pocket PC 2003 (ARMV4) ------ 1>Deleting intermedia ...Show All

  • Software Development for Windows Vista Require WF Webcasts Power Point Presentations

    Hi guys I urgently need the Power Point Poresentaion (ppt ) files for the following web casts on WF. Please provide links for download. Workflow Authoring Styles – Mixing XAML and Code Thursday, January 26, 2006 10:00 A.M.–11:00 A.M. Pacific Time Presenter: Bob Schmidt Windows Workflow Foundation offers developers several alternative ways of defining their workflows. In this talk, we will explore each of the alternatives, and discuss some of the key factors that can influence your choice of authoring mode. Workflows can be (1) defined entirely in code; or, more typically, can be (2) split between a XAML ...Show All

  • Software Development for Windows Vista Clarification on persistence & workflow states

    Hello, I'm working through WF Beta 2 hands on lab 3, exercise 2, task 3. I'm looking at the output in the lab doc from running the console app (which does match mine) but I'm a little unclear as to why some of the output appears as it does. Below I've listed the various states the workflow engine reports going through. Some of these I think I understand, while others I'm not too clear about. Could someone please help my understanding by commenting on these states The following states are recorded in the document's ouput display and also by running the workflow. I've listed my understanding (please correct any mistakes) of why the st ...Show All

  • Visual C++ How can I disable UNICODE?

    I am trying to build an example from a tutorial using Visual C++ 2005 Express Beta 2. But when using the MessageBox function, I get the following error: error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [22]' to 'LPCWSTR' I tried casting the string to LPCWSTR and the program compiles, but the strings are corrupt. I am just starting Windows programming, and don't want to deal with Unicode yet. Is there a way to configure Visual C++ 2005 Express to not use Unicode All API functions are availabel in 2 versions and this is controlled by macros, so MessageBox maps to MessageBox ...Show All

  • Visual C++ Exposing the base constuctors from derived classes.

    Hi, I'm trying to extend the std::basic_string class by adding some additional overloads here and there... I know that you can "re-expose" functions ahta re hidden by the derived class by using "using BaseClass::FunctionName". However, I can't do it with base constructors... it goes something like this: class BaseClass { public: BaseClass( int i ) { cout << "Base: " << i << "\n"; } BaseClass() { cout << "Base\n"; } void print( char *str ) { cout << str; } }; class DerivedClass : public BaseClass { public: DerivedClass( float f ) { cout ...Show All

  • Software Development for Windows Vista Change Title in Sequential Workflow

    When the designer is embedded in my custom application, the workflow shows a title that says "Sequential Workflow". It's posible to change that title Thanks in advance Hi pearljam You have to set the property Header.Text of your custom designer, like this: [ Designer ( typeof ( CustomSequentialWorkflowDesigner ), typeof ( IDesigner )), Designer ( typeof ( CustomSequentialWorkflowDesigner ), typeof ( IRootDesigner ))] public partial class MySequentialWorkflow : SequentialWorkflow {    ... } public sealed class CustomSequentialWorkflowDesigner : SequentialWorkflowWithDataC ...Show All

  • Visual Studio 2008 (Pre-release) List

    I followed the code from one of the LINQ lesson showing how to retrieve information from the List object as follow: ...... List products = GetProductList(); ........ static List GetProductList() {   List productList = new List   {     { ProductID = 1 , ProductName = "Chai" , Category =   "Beverages" , UnitPrice = 18.0000M , UnitsInStock = 39 },     .....   } } The compiler returns an error saying that "Error 1 Using the generic type 'System.Collections.Generic.List<T>' requires '1' type arguments" I understand what a generic is, but I'm clueless what&nbs ...Show All

©2008 Software Development Network