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

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

HaloX_69

Member List

carem
the_evil_one
Phil Brammer
iemad
Bill YU
Shalini
Reginald
Lalaa
Sanjay Mishra
shasunder
Danny Yoder
alesouli
JasonDeegan
Deepak Sivaraman
LGS
spth
Bill.Net
Dana Reed
Miguel Gasca - MSFT
boilermaker
Only Title

HaloX_69's Q&A profile

  • Visual Studio Team System Problem capturing events from TFS (using Web Service Notify(string xmlstr) method)

    Hi,  We tried to build a prototype for capturing the events from VSTS as follows - 1. A windows application - EventingClient - It contains a button - Subscribe - on click of which the following piece of code gets executed to subscribe to workitemchangedevent. //Logon to the VSTS Server  LogonToVSTSServer( "xyz046247.testdom" ); //set the delivery preference to immediate delivery via SOAP DeliveryPreference DP = new Deliver ...Show All

  • Visual C# How to write "javadoc" in C#?

    Hello, Could anyone tell me how to write documentation in C#, like you do in java. And how do one compile and view this Thanx:) NDoc currently does not support C# 2.0 very well. Microsoft will be releasing an in-house doc generating tool that supports 2.0 sometime in the next few months. Announcements will be posted on the Developer Documentation and Help System forum. http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=66& ...Show All

  • .NET Development Remote proxy has no channel sink

    Hi, when i communicate com+ clinet with com+ server , i am getting error "This remoting proxy has no channel sink which means either the server has no registered server channels are listening, or the application has no suitable client channel to talk to the server" I am using serviced component class not dotnet remoting. my client and server machine is win 2000 professional. please suggest. Re ...Show All

  • SQL Server How to insert a record in the middle of a DB

    Well, how do you do it   I've not seen any report on this... so could it be next to impossible   Say you have 10 records, 1-10 and you want to insert a new record between record 4 and record 5 in a SQL database, just how do you code it    And oh, each record uses the auto ID increment feature. Here's an idea: CREATE TABLE MyTable (id int identity(1,1), col1 varchar(16)) GO INSERT IN ...Show All

  • Windows Forms System Process and returning a value to a form

    Below is a sample of a class I am trying to get to work. I would like to start a system process(ipconfig) and return the results.Imports System Public Class Machine     Dim myProcess As New System.Diagnostics.Process()     Function IPConfig() A ...Show All

  • Visual J# Hide standard control's properties in designer

    Hi, I inherited Button control from Windows.Forms... but i would like to hide vertain standard properties so that it will not shown in designer... Is there anyway i can do that Thanks Hi, I don't think i have enough expertise to comment here. Could you please post your query on WinForms Forum - http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=8&SiteID=1 . Thanks. ...Show All

  • SQL Server Commercial Application using MSDE or SQL Server 2005 Express

    Hi, I'm currently developing a commercial application in VS2005 that will catalogue hobbyist type data such as Music and Movies and I am considering using SQL Server 2005 Express for the client database. My question is how popular is MSDE and/or SQL Server 2005 Express in commercial software products I can't think of any application that I could buy off the shelf that uses the light-weight version of SQL Server whether that be MSDE or SQL S ...Show All

  • SQL Server multiple joins on the same table

    I'm new to SQL 2005 & C# - I'm a MySQL/PHP crossover. I'm using s Stored Procedure and I'm trying to do multiple joins onto one table.  I have 6 fields in one table that are foreign keys of another table: Table1 --------- id PrimaryCode SecondaryCode1 SecondaryCode2 SecondaryCode3 SecondaryCode4 SecondaryCode5 Table 2 --------- id Title CommCode The fields in table 1 (except is obviously) ho ...Show All

  • Visual Basic VB2005 and MS Access

    Just a simple question here. I am curious if its best to use SQL for databases or can I use Access (.mdb files) databases I'm very new to 2005 btw. And porting from vb6. Thanks in advance. Hi It really depends on the complexity and number of users that will be using your program concurrently. If you have a large user base then Access is definitely not the way to go whereas if you only have one or two users and want an easy way of ...Show All

  • Visual C++ Why AfxGetResourceHandle causes Asserts?

    My scenario is somehow complicated but I try to simplify it: I have a CLR class libraray that wrapps some functionalities of a MFC dll. The MFC dll has a class with a method that calls AfxGetResourceHandle() method, when I use the corresponding method on the wrapper the Asserts are generated. The method is trying to get a handle of a resource that is defined inside the MFC dll, why I got asserts ..\Microsoft Visual Studio 8\VC\atlmfc\in ...Show All

  • Visual Studio Express Editions Is it possible to upgrade vb4.0 apps to vb2005?

    Hi all, I have just installed VB 2005 express after not having used VB for some years. I have a number of older projects that I would like to update, preferably without rebuilding from scratch. Is it possible to do this in VB 2005 from VB4.0 project files etc The Upgrade Wizard was designed for Visual Basic 6.0 applications so I don't think you will have much luck with 4.0. You can upgrade code snippets but not ...Show All

  • Windows Forms Windows Installer Uninstaller and Conditions

    Hello, I have two problems. I created a new windows setup project in VC2005 Pro. There I added a checkbox page with two checkboxes. One to create a shortcut on user's desktop and one to create a shortcut in user's program menu. My problem is, that the installer always creates both shortcuts regardless of the state of the checkboxes (CHECKBOXA1 and CHECKBOXA2). I added a folder condition to "User's desktop" and "User's program menu ...Show All

  • SQL Server A little MDX problem

    Hi, I need some support for a MDX problem. We have a cube with a measure, are region (with hierachy, but this doesn't matter at all) and two time dimensions (with the usual hierachies). The business problem is now: You select a date (on any level) from Time1. If you would place the region on rows and Time2 on colums (the days) with nonempty enabled, you would get a number of members back (about 1000 numbers in Time2 per day in Time1). I ...Show All

  • SQL Server "product level is insufficient" message during flat file import

    I'm using the import wizard to create a new table from a flat file source.  The table gets created but no data gets copied.  What's wrong   Here's the report: Operation stopped... - Initializing Data Flow Task (Success) - Initializing Connections (Success) - Setting SQL Command (Success) - Setting Source Connection (Success) - Setting Destination Connection (Success) - Validating (Error)    &nbs ...Show All

  • Visual Studio 2008 (Pre-release) Implicit parameters in lambda expressions

    Consider v.FindAll(x => x > 5) We could use an implicit parameter in order to supress the parameter list. So we need a keyword to refer to the undeclared parameter, for instance "it" or "_1". The previous code would be equivalent to: v.FindAll( => it > 5) or mayby: v.FindAll( it > 5) For an unnamed second parameter we could use it2 or _2 etc. Is there any problem with this new simplification   ...Show All

©2008 Software Development Network

powered by phorum