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

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

offa

Member List

Friedrich49886
Matt Garnham
Sarcastro
sz2080
Steve in Alaska
swamikns
Pavan526
B. Travis Wright
Rove
VegasDave
Marc Rush
Plepo
ATinsley
Csaba Gáspár
twinsun
agarg
TonyStoker
JackBin
Jasper Eenhoorn
tytus
Only Title

offa's Q&A profile

  • .NET Development dropdownlists and & dataview binding question

    I have the follwing code that populates multiple dropdowns with the same values: DataTable dt = new DataTable (); DataColumn dc1 = new DataColumn ( "list_value" ); DataColumn dc2 = new DataColumn ( "list_text" ); dt.Columns.Add(dc1); dt.Columns.Add(dc2); DataRow dr; dr = dt.NewRow(); dr[0] = 0; dr[1] = "No" ; dt.Rows.Add(dr); dr = dt.NewRow(); dr[0] = 1; dr[1] = "Yes" ; dt.Rows.Add(dr); dr = dt.NewRow(); dr[0] = 2; dr[1] = "Not Applicable" ; dt.Rows.Add(dr); DataView dv = new DataView (dt); this .ddlEquipRecvComplete.DataSource = dv; this .ddlEquipRecvComplete.DisplayMember = "list_ ...Show All

  • Software Development for Windows Vista How to convert a standard library project to be workflow project in VS 2005

    Hi , I have a few standard library projects been built for some time. Now I want to put workflow items in them . Wondering if there is a way to just click "add new item" instead of creating a brand new project and move all existing items into it. Thanks for any idea. Thanks, that was exactly what I was looking for :-), even if it's a year later after you posted it. Cheers Chris ...Show All

  • Visual Studio Team System Can't Install TFS RC on a Domain Controller???

    We can no longer install TFS (RC) on a domain controller This worked in earlier betas and CTP versions. But now I'm told with the installer that this is not a supported configuration, yet the installation guide talks about installing on a DC. I wasted all this time setting up the DC system and get to the point of running TFS install and am told I can no longer do this I've seen Microsoft respondents in the past indicate that you can install on a DC in these forums. What is going on here This is annoying. another server\workstation for Builds (since this can't run on the server any more), Is th ...Show All

  • Visual Studio Team System TfsWarehouse and Update the Team Project Report Definitions when migrating from TFS Beta 3 to TFS Beta 3 Refresh

    Hi: I just successfully migrated TFS Beta 3 to TFS Beta 3 Refresh followed the steps posted in MSDN site (Migrating to Visual Studio 2005 Team Foundation Server Beta 3 Refresh, as "Migrating Guide" in the following, see http://msdn.microsoft.com/vstudio/teamsystem/b3rmigrate.aspx ).  This is a very good guidelines for migration and I found no problem to do it.  Thanks to MS to save my team times to do the job.  However, I have 2 questions like to ask: TfsWarehouse: In this Migrating Guide, there was a step to manually create TfsWarehouse database in Set up the Team Foundation Server Warehouse section.&nb ...Show All

  • Visual C# Windows Look and feel

    I'm developing a windows application and I want my interface to have that windows look and feel. I tried changing the background colors, but i did not get what I really wanted (You know the way Microsoft word 2003 looks [the bluish look and that glossy feel] or the way this forum looks like). I also want to change the background of the menu bar and the menu items to get the same windows look and feel.  Lastly, I want to add icons to the menus and menu items.  I need help or references to resources that can let me do that. Many thanks, Derry Thanks for your help. I've tried all the various options suggested and not seen w ...Show All

  • Windows Forms Form Refresh

    I have 2 forms A and B. Form A has some controls and a button (Add...) at the bottom that dynamically opens form B.   Form B has some textboxes and a button (Add) that inserts some values into a database. OK...here is what I am trying to do.   When the user clicks the Add button on form B.  It will affect a datagrid on form&nbs ...Show All

  • Windows Forms Using Dataset from another form

    Hi all, I am the follow cenario: A form with DataGrid and a Typed DataSet already filled by DataAdapter where I show the data to the user. When I click in the Edit button, I open another form with Textboxes to edit the data. How can I bind the DataSet from the first form to the controls of second form at design time I tried to do the follow: - Create an instance of the Dataset in the second form - Bind the controls to this Dataset - After create de second form as follow: frmLng vFormLng = new vFormLng(); frmLng.dsData = this.dsData; frmLng.BindingContext = this.BindingContext frmLng.Show(); However, the co ...Show All

  • Visual C++ Compile help.

    Hey, I just got some source files from someone that I could edit, and then compile into .exe, i've never used visual c++ before so i'm a newbie, but I would like to know how I would compile a bunch of existing files that someone else made into a .exe I don't really know much about c++ or anything, I can just edit basic stuff to my likeing, we're talking about game sources here. Anyone know how I can compile this bunch of txt into a .exe Highly appreciate your time in helping me. Thanks Hi: you are going to be a bit more specific if you want us to help you. With Visual C++ 2005 Beta-2 you can use File.New.Proj ...Show All

  • Visual C# Eval in VB equivalent in C#

    What whould be an equivalent commant in C# to the Eval in VB Thank you. There isn't one built in ( as far as I know ), but you probably could use the CodeDom to evaluate it. Also see if http://www.codeproject.com/csharp/ExpressionEvaluator.asp#xx1246441xx  is what you are looking for ...Show All

  • Visual Studio DEBUG ERROR coloader80.dll

    When I try and run a win32 app with debugging ( i.e I hit F5), I get an error message saying that it could not find the COLOADER80.DLL and suggests that I repair the installation, or manually register the dll with regsvr32 <Path to> coloader.dll . The application runs fine if I execute it without Debugging. * I tried reinstalling but to no avail. * I checked and the dll is present on the machine here: C:\Program Files\Common Files\Microsoft Shared\VS7Debug * I also tried regsvr32 C:\Program Files\Common Files\Microsoft Shared\VS7Debug\coloader80.dll . I get a message saying that the dll has been succesfully register ...Show All

  • Visual Studio Team System FXCop: Exclude specific files from analysis?

    Is it possible to exclude whole files from code analysis My scenario is where I have a web reference that generates a web service proxy class. This reference will get updated periodically so I don't want to supress 500 messages every time I update it. Is it possible to exclude a whole file I still want the rest of the files in the project to be analyzed. Has this been addressed since your original post I'm using the IdeaBlade toolset, and it generates base classes that you don't modify and final classes that you can modify. I need to exclude the base classes from fxcop in team system so I don't keep gett ...Show All

  • SQL Server SQL Native Client Issue

    I downloaded and installed Visual Basic 2005 Express Edition, followed by Sql Server 2005 Express Edition. When I ran the command SQLCMD -S SERVER/SQLEXPRESS I got the following error: **** HResult 0x35, Level 16, State 1 Named Pipes Provider: Could not open a connection to SQL Server [53]. Sqlcmd: Error: Microsoft SQL Native Client : An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.. Sqlcmd: Error: Microsoft SQL Native Client : Login timeout expired. **** How to reso ...Show All

  • SQL Server why doesnt this work?

    i am new at T-SQL and am trying to delete entries in a column that are not integers. i have the following code. why does it not work. T-SQL select invoicenumber from [control register] where convert(int, invoicenumber) like '%' if @@error > 0 begin delete from [control register] where invoicenumber = invoicenumber end go gives me the error in Query analyser: Server: Msg 245, Level 16, State 1, Line 1 Syntax error converting the nvarchar value '10-3-05' to a column of data type int. @@error is supposed to pick up the error. why is it not. please could you reply urgently at chris@captivedesign.co.za thanks in advance ...Show All

  • Microsoft ISV Community Center Forums Inserting information from a Userform to a text box

    I have a Word document that asks for the same information several times. What I want to do is create a user form that asks for that info once then when I click add it puts it into the word doc in those specific locations. I thought using text boxes would be the best way to go. But how do I tell it that I want the info to go there Thanks Tiger Hi Tiger There are several ways of doing this. I've used bookmarks and inserted information after these, but I like the following method where there are multiple places to put the same information because it is easier to create the initial document and ea ...Show All

  • Visual Studio Team System Help about incrementation and iteration

    I don't understand if once i have all the use cases i should split them and in each iteration i add more use cases, or i should consider all the use cases on each iteration. The msf talks about versionning but i can`t clearly see how to make this versionning. Versionning means splitting the use cases There are a few strategies - hence your confusion. The goal is to deliver value incrementally. As such, you typically first address the high-value aspects of the solution (sometimes this is within a use case, sometimes it spans use cases). You also need to work on the "infrastructure" or "plumbing" of the solution so that the high-va ...Show All

©2008 Software Development Network