Software Development Network Logo
  • Visual Studio
  • SQL Server
  • VS Team System
  • Visual C#
  • Visual Basic
  • Visual FoxPro
  • Game Technologies
  • IE Development
  • Microsoft ISV
  • .NET Development
  • SharePoint Products
  • Visual C++
  • Windows Forms
  • Windows Vista
  • Audio and Video

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

Declan_

Member List

tradle
TJ2007
beesol
santosh2001
Booli
tass_flint
Donaghy
Brad3000
Tamas Pocker
barkingdog
bobbins
NewToReportingServices-MJ
LML
Marco Bergonzini
ddoolit
Gergi
Sqnyy
CruzPedro
RossDempster
comspy
Only Title

Declan_'s Q&A profile

  • Visual C# will the bug fixes available for connect.microsoft.com users ?

    Hi, I am one of the connect users of microsoft products. Will the bux fixes/ the service packs will be available for the connect users it will be very useful if we get intermediate fixes available. Thank You Mohan Raj K. Mohanraj_k wrote: I mentioned the hot fixes of the products like visual studio and it's service packs if any . Sorry. I thought this forum would be for all products also. I don't see where you mentioned Visual Studio. This forum is just about bug reports for this website. Are you interested in whether hot fixes and service packs will be available for Visual Studio If you're interested strictly in Visual Studio, I can move this thread to a different forum. Hot fixes aren't ge ...Show All

  • Visual C++ Multiple inheritance and function overloading

    class A { public : int f() { cout<<"A::f()"; } }; class B { public : int f(int i) { cout<<"B::f(int)"; } }; class C : public A, public B { public : int g() { f(); } }; Why does the above program give following error error C2385: ambiguous access of 'f' in 'C' error C3861: 'f': identifier not found, even with argument-dependent lookup Where is the concept of function overloading and method signature go PS: The above program code compiles if you give A::f() inside function g() Right .. so in this case function signature is different int f(int) ; and int f() ; so when u call f() it should be ideally be invoking int f() i.e. without any ...Show All

  • Windows Forms SelectionStart for control object

    I have several textboxes that I only want the user to enter numbers into. So I wrote a little routine to do this for a specific txtbox. I added the code txtbox.SelectionStart=100; to ensure the cursor always ends up at the end of the numbers. Worked fine until I moved the code to it's own procedure (probably I should call it a method) anyway... private void DelText ( Control tb) { Regex Num= new Regex ( "[0-9]" ); int l=0; l=tb.Text.Length; for ( int i=0; i<l; i++) { if (Num.IsMatch ((tb.Text.Substring (i, 1)))) { } else { tb.Text=tb.Text.Substring (0, i)+tb.Text.Substring (i+1, l-i-1); } } tb.SelectionStart=100; } now I get 'Control does not contain a definition of SelectionStart', Ho ...Show All

  • Visual Studio Tools for Office Remove link in sharepoint

    Hello all! I'm trying to edit a document library in Sharepoint Portal Server so that the users personal site isn't linked from the "Modified by"-column. Does anyone know how to do that Kind regards, Peter This forum is specifically for questions concerning the VSTO technology. VSTO really doesn't have anything to do with Sharepoint. You need to ask in a Sharepoint newsgroup. Try the groups available through this interface http://www.microsoft.com/office/community/en-us/default.mspx d=1 ...Show All

  • .NET Development pass values between web pages

    I have 2 pages and I want to pass values from one to other. I looked at this link http://msdn2.microsoft.com/en-us/library/6c3yckfw.aspx and I found a solution. When I implement myself, I have some problem: Source page: ------------- public partial class TreeView : System.Web.UI.Page { public string SelectedNodeText { get { return TreeView1.SelectedNode.Text; } } } Target page: ------------- private string selectedNodeText; protected void Page_Load(object sender, EventArgs e) { if(Page.PreviousPage != null) { TreeView treeView1 = (TreeView)Page.PreviousPage.FindControl("TreeView1"); selectedNodeText = treeView1.SelectedNode.Text; BriefRiskDescriptionTextBox.Text = sel ...Show All

  • Visual Studio Team System file check in bug!!

    hi, i often work with multiple IDE's open to work on projects separately. today, in one IDE i checked out files and modified them. later, i opened another IDE, checked out files and edited those as well. both IDE's were using the same workspace, to my surprise neither IDE showed all the files checked out (i assumed they would). i closed the second IDE leaving those files checked out. after more modifications with the first set of files in the first IDE i finally checked those in. now, i launched a third instance of the IDE (still, only two running now) to return work on the second set of files. to my amazement, those files did not appear in my "pending changes" list. searching for those files showed them to be checked in with th ...Show All

  • Visual Studio Express Editions Arrays of arrays. Variant

    Hi there. I hope u can help me. Here it is my problem. Dim array as Variant 'This array wil be an arra of arrays redim array(length) as Variant But I cant try its elements like arrays. I would like to do smething like this: (array(i))(1)'the fist element in the 'i' - array, but i cant then, i try with: redim (array(i))(other_length) as Variant' but I cant do it. then I try: dim ar as Variant redim ar(other_length) as Variant ' this works, but when array(i) = ar msgbox ubound(array(i)) 'it fails. Type Missmatch. always Can u do something better, i hope u do. thx This is VB6, if your using the variant data type, VB.NET doesnt have a variant data type it uses Object. The forums are intended for VB.NET only s ...Show All

  • Visual C++ Running problem with a C++ executable (Debug build)

    Hi, I produced a debug build C++ executable program using MFC in VS 2005. The program runs perfectly with the computer in which it was created, but it can't run with other computers that don't have similar development environments but are equiped with all necessary dlls. An error message saying configuration is incorrect appears whenever the program is launched. MFC is set to be used in a shared dll in the program. To locate the reason that causes the problem, I blocked each possibly relevant environmental component in the system, such as .NET, Visual Studio, and directories containing libraries that were linked into the program. Despite these, the program runs normally in the computer where it was created. Should anybody have any ideas ...Show All

  • SQL Server How to add reference to SSIS script task

    Hi ALL I cannot add the reference to the following: "Imports Microsoft.AnalysisServices.AdomdClient" in SSIS script task. All the objects that i declared become underlined because there is no reference to the above library. When i go in SSIS script task and open the code to add the reference it does not the list the above library. I am able to add reference in Visualstudio but not in SSIS. Please adivse, it is very critical and urgent for my task Thanks. Does this help http://sqljunkies.com/WebLog/knight_reign/archive/2005/07/07/16018.aspx Ed ...Show All

  • .NET Development Role based security: IIS based remoting server doesn't hold my principal

    Hi, I have a VB.Net Windows form based user authentication system. The form authenticates the user info against a server through Remoting that is hosted by IIS. The authentication process runs well all the time. Once the authentication is done, I set up my customized identity and principal and set the principal to the current thread on the server before returning the call back to the client. The thing that suprises me is that, when my client gets back to the server the next time (client gets back through a remoting reference to the same server object that did the authentication), the security principal of the current thread on the server has changed! It went back to Windows principal again, instead of my own principal I just set. ...Show All

  • Visual Studio Team System Issues with Windows Sharepoint Services while Installing TFS

    Hello All, I am installing TFS. while installing TFS we are geting following errors " Error 32000.The Commandline '"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\Bin\Stsadm.exe" ...' returned non-zero value: -1. " and then doing everything what MS says we get this error. " Error 32000.The Commandline '"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\Bin\Stsadm.exe" ...' returned non-zero value: -2130246864 " Can somebody please tell me what is this. I am so excited about using TFS as my Development environment. And we are not able to setup it properly Any help !!! Shail Hi Shaile the trail version you are using shou ...Show All

  • SQL Server MDX Query returning all upper level defenitions??

    Hi, I have created a query like this: SELECT non empty CrossJoin(Descendants([Centro Custo].[All Centro Custo], ,Leaves), Descendants([Tempo Mes].[All Tempo Mes].[2005], [Tempo Mes].[Mes], Leaves)) on Rows, {[Measures].[Valor com Imputacao]} on Columns FROM [Controlo Gestao] WHERE ([Tipo Medida].[All Tipo Medida].[REAL]) What is happening is that this query on reporting services is returned with all upper level defenitions.. My intention was to have only 3 columns... [Centro Custo], [Tempo Mes] and the selected Measure, what i am facing is alot more columns like... [Centro Custo].[Level 01].[Member_Caption], [Centro Custo].[Level 02].[Member_Caption], [Centro Custo].[Level 03].[Member_Caption], [Tempo Mes].[Ano].[Member_Caption ...Show All

  • Windows Search Technologies Uninstalling Windows Desktop Search

    I'd like to uninstall my windows desktop search but can't find it in the add/remove programs. How can I uninstall it Brent, Have you installed any WDS add-ins (MUI pack, Lotus Notes Add-in, etc.) If you have, please try to remove those prior to removing WDS. Paul Nystrom - MSFT ...Show All

  • SQL Server Dling support?

    Hi All. What can we do to let the power that be know that there are many of us that want Dlinq to support SQL ev They say they are considering it, how can we help them deside Mike Greenway Cool, Great, WOW What I REALLY want is LINQ and I thought DLINQ was the ONLY way to get it. ADO.NET's Entity Framework looks like it is VERY handy. If it is truly going to be available in Aug. I'm going to delay writing that part of my code until then. I never liked SQL strings. Thank You, again. Mike ...Show All

  • Visual C++ Constructors for global variables are not called???

    I have a VC++ project B that is linked into a static library "B.lib". This library is linked into project A which creates A.exe. The constructors for the global varaiables in B do not get called. 1. If I have golbal variables in A then there is no problem - the constructors for those get called. 2. I f the solution (Project A and B) get linked on my coleagues computer then there is no problem. 3. The whole soltion is shared between us via rational clearcase so we have the same sources and the same project files. - so it must be one of the flags of visual studio - but which Thanks, D. dannyg View Public Profile Find all posts by dannyg Add dannyg to Your Buddy List ...Show All

©2008 Software Development Network