lx1973's Q&A profile
Visual Studio Team System Anyone working on a Crystal Clear process template?
Our group is adopting the Crystal Clear methodology so I'm wondering if any in the community is working on a Crystal Clear proces template. Best, Jason I'm not aware of anyone doing it. Your best bet is to search the internet for it. ...Show All
Windows Forms activate another form while close current form in VC .Net
If one use dialog.Show(), it will wait until the form activated closed then close itself. Borland C++ could allow you close the form and activate another form. How do we do it in VC++ .Net 2003 Thanks. ...Show All
Visual Studio Team System Where can I ask an in depth question?
This is the only forum I could find for Team System (I noted that there are some regular newsgroups set up for other languages). Since this is designed to be general, where can I ask a specific question about working with an object within the QualityTools.UnitTesting.Framework namespace How about Visual Studio Team Edition for Software Testers http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=19&S ...Show All
Windows Forms How Do I: Bind a TextBox to a specific column in a DataRow from a DataTable?
I have a datatable, and depending on all kinds of factors i want to iterate each row using a For..Each loop. When the correct row is found I want to bind a column from that row to the Text property of a textbox. The problem is that I can quite figure out what my binding should like: Pseudo-ish code: For Each row as New DataRow in DataTable1.Rows If row.Item("id").ToString = "1" Then   ...Show All
Visual Studio Team System Testing generics
Apologies if this is posted in the wrong place - please let me know where would be more appropriate. I am still trying to come to terms with the way the unit testing in VS2005 Beta 2 works - it's a slghtly tortuous process, but that probably says more about me than anything! I am stuck with generics. I have a class as follows: public class Example { public Example() { mList = ...Show All
Visual Studio Tools for Office actionspanecontrol v.s. usercontrol
I am new to vsto 2005, and have a few questions. 1- is task pane and action pane the same thing 2- in creating a word project , I can do : this .ActionsPane.Controls.Add( new UserControl1 ()); this .ActionsPane.Controls.Add( new ActionsPaneControl1 ()); is there only one actionpane for a word document, can we add more and how 3- what is the difference of usercontrol v.s. actionspanecontrol thanks. The A ...Show All
Visual C# Context Menu
I had tried adding a context menu to a form with a menu item. But upon running the program, and upon right click, I could not see the context menu appear. Is there any other settings that need to be done Please advise. You should assign the context menu you've created to the control's ContextMenu propery, in order to make use of it. Form for example, you can assign context menu to its ContextMenu property. Hope t ...Show All
SQL Server Stored Proc
I am working on a vb.net app w/SQL Server 2K backend. App uses microsoft's Ent. library Data Access Application block for data access. The app is working fine. I have stored procedures that will not return the desired results. Below is a sample proc. SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO SET NOCOUNT ON Go IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'RaidSiteCaseCount') BEGIN &nb ...Show All
Windows Forms Missing Wizards,Builder,Library in MS Access 2003
Hi All, Suddenly all Wizards,Builder,Library in MS Access 2003 was missing.I try to used add in-manager still fail try re-install the result was same. some message of this said if the registry was not correct path.Any advise ...Show All
Visual Studio Datatypes supported by VS 2003 crystal reports
Does crystal report support CLOB data I have to bind a stored procedure which returns CLOB data to my report. I am presently unable to do this. Do we need to specify some settings for this or is there any equivalent datatype in crystal reports. Please reply soon It is very urgent. Thanking in advance. Hello, We do support CLOB data-type when going through ODBC. Is this an Oracle database Do you know wh ...Show All
Visual C++ yet another c2248 error
I'm another user (paid ) getting this compile error message now that the project was converted from .net 2003 to .net 2005 this is a show stopper and I need a resolution of some kind so any ideas /help would be appreciated . C:\Program Files (x86)\Microsoft Visual Studio 8\VC\atlmfc\include\afx.h(879) : error C2248: 'CObject::CObject' : cannot access private member declared in class 'CObject' C:\Progra ...Show All
Visual Basic Locking a member Variable in Memory
Variable life time is normally not a problem in VB but but I'm working in the context of a webservice and variable persistence is quite different. In a normal VB program Member variables are the variables common to all routines.... and not declared in a function or subroutine. They are assumed to have a lifetime for the lifetime of the program. In a normal program I can do this: Class Member variable Subroutin ...Show All
Visual Studio Express Editions Can not use a Sub using graphics
This is my code. Sub Proces( ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me .Paint Dim i, j As Integer For i = 0 To 200 For j = 0 To 200 If rd < alpha Then If grid(i, j) = 0 Then grid(i, j) = 1 aantal = aantal + 1 e.Graphics.DrawRectangle(Pens.Beige, i + 10, j + TextBox1.Height, 1, 1) End If End If Next Next rd = randomgen.NextDouble() Label1.Text = CStr (rd) E nd Sub I can n ...Show All
Windows Forms double click for button
hi, i would to make my button to listen to double click event with the following code, but it seems does not work...or m i using a wrong method can anyone help me Private Sub Button1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.DoubleClick MessageBox.show("It is a double click") End Sub thank you i only using the double click event...there ...Show All
Visual Studio Express Editions A Tall Form Opens in the Middle
I have a vb.net form that's relatively tall (about 800). When I open that form, instead of opening at the top of the page, its opened towards the middle and the user would have to scroll up to get to the top. Does anyone know why that happens and what to do about it hi, you are wellcom anyway SJWhiteley said b4 there are very good programs didn't succeed for small things like the taborder best regard ...Show All
