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

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

Adatacorp

Member List

I-DotNET
interscape
steveinoly
BernhardR
BarryTannenbaum
Martin Thorsen - MSFT
Jose Bonilla
Kenneth H
jonpfl
magicali
Merdon
danclarke_2000
Bob Sculley
_Werner
Brain_Dead_Mind
Arnshea Clayton
Jack0000
kanlinkan
Reutener
tommy123456
Only Title

Adatacorp's Q&A profile

  • Visual Studio Team System How to add user to group in a single-server workgroup setup?

    The step of adding domain user into TFS group is documented well. However, how to add a local user into TFS groups is not documented. If I have a team in a workgroup environment, how can I add other users into a TFS group Thanks!   Thanks! My team is in a NT4 domain. So I want to use Workgroup mode of TFS. After I configure the users as you stated, when users log on to TFS, does he will be prompted to input the user name/password ...Show All

  • Visual C++ Can't define Indexer property

    After recompiling the following code with VS 2005 Beta 2, an C# assembly can't calling the indexer. //C++: [System::Reflection::DefaultMember( "Parameter" )] public __gc class NativeObjectConfigurator : public System::Collections::ArrayList { public :     __property ParameterInfo* get_Parameter( int index);     __property ParameterInfo* get_Parameter(System::String* name); }; //C#: NativeObjectConfigurator no = ...Show All

  • Windows Forms Server Setup Package Taskvision 2.0

    On the WindowsForms.Net site there is a new release of TaskVision built on .Net 2.0. The description states the following: Task Vision - WinForms PM The TaskVision application demonstrates a full n-tier application for the management of personal and business related tasks. The sample comes with a ready to run demonstration client, full client source code, and a server setup package for running a priva ...Show All

  • Windows Forms Getting a Strange Click-Once error at Install time - please help

    I am able to successfully publish my files to install.inventorymanager2005.com but when I click on the Install button it gives me a bland error message that the program was not formatted correctly. Click on Details and you get this: PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50215.44  System.Deployment.dll   : 2.0.50215.44 (beta2.050215-4400)  ms ...Show All

  • Visual C++ what is the L before a string mean?

    I'm new to .net 2005 and saw this generated code this->btnUpdate->Name = L"btnUpdate"; What does the L mean before the "btnUpdate" string I've tried looking everywhere on the net for an answer with no luck. thanks Being more specific, prepending a string literal with L makes the literal of type const wchar_t*, as opposed to const char*. ...Show All

  • Windows Forms Is there BeginUpdate() functionality for the DataGridView?

    I have a DataGridView bound to a DataView. A certain points I temporarily sort the DataGridView on specific columns to build filter lists. During these "temporary" sorts on the DataView I would like stop the sort from being applied on the DataGridView, which causes it to redraw. Then after the filter list is created I reapply the DataGridView's last sort. ComboBoxes have BeginUpdate() and EndUpdate() for when changes are made t ...Show All

  • Visual Studio Team System Can multiple team projects use the same source control tree?

    I've read through as much as the TFS docs as I could find, but I've yet to see an answer to this.  Can multiple Team Projects use a single source control tree or does each one have to have its own tree Here's my situation: We have a good size main tree that has 90+ projects (dll's) in it.  There are perhaps a few dozen teams that contribute to these and each team has anywhere between 2-5 projects.  All of the teams must chec ...Show All

  • Software Development for Windows Vista Activity Properties

    hi all, i know that i can bind activity properties to workflow properties using the designer; but is it also possible to bind activity properties to properties of other activities and: is it possible to bind activity properties not to a certain activity but to the parent activity’s properties if you know something, please tell me. :-) thanks in advance, regards, .k Yes, you can bind an a ...Show All

  • Visual C# How to pass reference parameter to unmanaged dll

    Hi I have a function in unmanaged(VC++) dll which is accepting a refernce parameter void check(UInt32& c) { c=20; } I want to call this function from my managed code(C#) so i used the following code class Program { [DllImport("samp.dll")] public static extern void check(ref UInt32 c); static void Main(string[] args) { UInt32 s = 0; check(ref s); Console.WriteLine(s.ToString ()); Console.ReadLine(); } } but it shows me the error&quo ...Show All

  • Visual Basic How To Add Coulmn in table MS Access database

    I'm using VB2005 , 2003 I have created my database, but with time I need to add or delete some columns in my table, How can I do it ReneeC wrote: What I am working on IS ADO.NET accept for table Creation/Persistence and is only intended to local Access databases. Are you saying that DAO would be better Jumping in here again...The primary advantages for using DAO are performance and full support of Access database ...Show All

  • Visual Studio Express Editions Problem with classes & objects???

    This has happened on 2 PC's (work & home) with both VB Express & C# Express. I'll use C# as the example. When you create a form you automatically get "using Foo;" created at the top. I'll use System.Data as an example. Since it's already "using System.Data", I expand that and add OleDB to the end of that. No intellisense but no worries, it works. I create the connection object as such: OleDBConnection conn = new OleDBConnection(); T ...Show All

  • SQL Server Problem to view the report in http://localhost/ReportServer

    My report was successfully previewed in report designer and deployed from report designer to http://localhost/Reportserver , without any error but when I view it by IE browser. The following error message displays: An error has occurred during report processing. Cannot create a connection to data source 'f_MsOdbcOracleEmLims'. ERROR [08001] [Microsoft][ODBC driver for Oracle][Oracle]ORA-12154: TNS:could not resolve service name ERROR [I ...Show All

  • Visual C# for() and foreach() with the "else" clause

    This is a simple C# language improvement suggestion. Frequently a collection needs to be examined to check if a certain condition IS NOT met, and do some actions. In traditional languages, one had to introduce a boolean variable: bool found = false ; foreach ( elem in collection ) {     if ( condition(elem) )     {         found = true ;         break ...Show All

  • Visual Studio Package with PLK : Visual Studio IDE messed-up

    I finally received my LoadKey today . I've put all the necessary resource entries with the loadkey and registered my package again in the registry, ran devenv /setup and devenv /splash. I then started VS2005 again... Amazing what I saw then... I had 2x the File menu, 3x the Edit menu, etc. All my toolbar icons are repeated 2, 3, 4 times. All my entries in my menus are duplicated x times. What is this When I unregister it, everything i ...Show All

  • Software Development for Windows Vista Delay activity - 60 days timeout perid error

    Hi , I have delay activity that is set on period of 60 days. Code for timer initialization: daWaitingForDocuments.TimeoutDuration = TimeSpan .FromMinutes(60*1440); //60 days Value from quickwatch inspector: daWaitingForDocuments.TimeoutDuration {60.00:00:00} System.TimeSpan this code is inside constructor, and it doesn't throw exception. But when state machine workflow enters state with delay activity it throws exception Ti ...Show All

©2008 Software Development Network

powered by phorum