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

Software Development Network >> Juan T. Llibre's Q&A profile

Juan T. Llibre

Member List

Zoheb Sait
Thomas Mathiesen
Chun Xiong
yy608
Mikkel Haugstrup
Sianny
Manasa
Scott
j0h4n
devjam
chrisSB
BigBJ
darinn
Herald Smit
domfos
Mike Diaz
eugene_Atlas
flape
John Saunders
Max Andrade
Only Title

Juan T. Llibre's Q&A profile

  • Visual Studio Upgrading VSS6d to VSS2005

    Hello. I’ve just (12-Dec-2005) downloaded from the msdn suscriptions site the latest vss2005. Is this the final release version I’ve read the forums searching for info about the "upgrade" process and I’m pretty clear about that. Only one question remain: Can I run the uninstall vss6 - install vss2005 steps with the vss database on a particular state or not Should I make my team to check all files in before the installation of 2005 Thanks   Hi, You don't need to checkin the files in the VSS database during upgrade. VSS6 uninstaller doesn't touch the registered databases or the con ...Show All

  • SQL Server Completely Removing SQL Server 2005 Express

    I've recently tried to load SQL Server 2005 Express onto the main server that services our small company of 10 people. The server is a W2K Server, and acts as our domain controller. I've had NUMEROUS problems trying to get SQL Server 2005 Express to work on this system - so much so that I've given up trying. However, in attempting to uninstall this, I've now encountered even bigger issues. It seems that the uninstaller leaves files behind (such as VSS Writer, Set up Files) that then will not uninstall themselves. So, being the novice I am, I tried re-installing SQL Server Express as a whole, removing the above files, then uninstalling SQL Se ...Show All

  • Visual Studio Express Editions Part 1

    TextBox2->Text=TextBox1->Text; ...Show All

  • Windows Forms ListView sorting

    hi there, i have a ListView on my form. Its 'View' property is set to 'Details' and it has several Column items in its Column Item Collection. I want the user to be able to click on one of the Column headings and see a little arrow facing down (Sort by ascending order) or an up arrow (Sort by decending) similar to Windows Explorer. How does one make this little 'arrow' visable to the user regards, there is good article on CodeProject that describes how to do it: Based on it I implement it in my project as I have internal class for comparing items /// <summary> /// Implements the manual sorting of ...Show All

  • Software Development for Windows Vista Find activity during Design Time

    I have to custom activities of which one is dependent upon the other, similar to the WebServiceInput/WebServiceOutput constellation. During Runtime I retrieve the first activity by name: FirstActivity first = executionContext.Activity.GetActivityByName( this .firstActivity) as FirstActivity ; which works fine. Now I would like to add a little bit more convenience to the design of these activities: The second activity has a property where you can set the name of the first activity and besides that I would like to set more properties which depend on the settings of the first one. So if somebody enters a name for the first a ...Show All

  • Visual Studio Team System Debugging a service within a site

    I've been using Visual Studio 2005 RC and have a web site and web service setup in the following structure: http://server/site/default.aspx http://server/site/service/service.asmx I have a solution that contains two projects:   = Solution     - Web site project       + references web service project     - Web service project When I try to debug this solution remotely, the IDE complains that no symbols are loaded for the service, though the site works fine.  Is there a reason why the debugger can't seem to debug both projects at once   If I debug the service by itself (l ...Show All

  • Windows Forms VSNET 2005 FINAL release can't open a form

    Hello, The new version of VSNET2005 FINAL release can't opens a form file that use Infragistics controsl. The error shown is the following: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. The designer loader did not provide a root component but has not indicated why. Hide      at System.ComponentModel.Design.DesignSurface.get_View() at Microsoft.VisualStudio.Shell.Design.WindowPaneProviderService.CreateWindowPane(DesignSurface surface) at Microsoft.VisualStudio.Design.Seria ...Show All

  • Visual Studio Express Editions Build error...

    Hello all, Posed this question already on another website: http://episteme.arstechnica.com/groupee/forums/a/tpc/f/6330927813/m/337001628731 I'm hoping I can get some more in-depth help here. Basically, VWDE has been kicking back an error on a line of code where there wasn't one before; ______________________________________________________ protected void Page_Load( object sender, EventArgs e) { //int OrderID = Convert.ToInt32(Request.QueryString.Get("OrderID").ToString()); SqlConnection conn = new SqlConnection (System.Web.Configuration. WebConfigurationManager .ConnectionStrings[0].ToString( ...Show All

  • Visual Basic Any way to SAVE IDE Layout?

    I'm working with multiple monitors which aren't all the same size ;-). I have to make VS stretch across the screen and then adjust it to get it all right. Any way I can SAVE that layout in the IDE Any way to save the layout for different "contexts" (one layout for editing, one for debugging, etc.) -Clay Try: Tools->Import and Export Settings...->Export selected environment settings, check All Settings->General Settings->Window layouts. Best regards, Johan Stenberg ...Show All

  • .NET Development Is a hyperlink containig the word google seen as non accessible?

    I've tried several hyperlinks in asp.net 2.0 to anything with the word google in it - <a href="blah.aspx">Google Analtyics</a> And I get an accessability error thrown from this but why Thats a good one!  It took us a bit to investigate what was going on, and we came across the issue.  The Accessibility Checker looks for certain "bad" words in links.  One of those words is "Go", thus if you had tried "Go To Paris" it would have also failed.  The easy way to fix this on your machine would be to edit X:\Program Files\Microsoft Visual Studio 8\Common7\Packages\1033\Accessibil ...Show All

  • Visual C# How can I draw a circle with radius and area writen on?

    I have made an calculator that calculates the area of an circle when a user input the radius. So i wounder how i can (using C#) draw the circle with the measure on. Sorry if it is bad english. Thanks to those who wanna help! Thanks do you have any good tutorials to recomend ...Show All

  • .NET Development howto modify a label's/textboxe's value that is a membr of a form in the windows application project from a web service project?

    i want to ask "how to modify a label's/textboxe's value that is a member of a form in the windows application project from a web service project " In my solution there are three projects! one of them is ASP.NET web service, other is classLibrary and another is a windows application... (build order 1.win app, 2.classLib,3.WebServ). firstly i create then show a login form(name: loginForm) that is in my win app project. then when user logins to the system and a form(name: userForm) opens that is in classLibrary project! and now that is important! when any client that is using my web service calls a method of the web service i want to ...Show All

  • .NET Development Cloning Generic list?

    Is there a better way to shallow-clone a generic List<> than create a new List<> with the old list as the constructor's argument List<Foo> list1 = new List<Foo>(); // Add a zillion references to list1 List<Foo> list1Copy = new List<Foo>(list1); The generic lists don't seem to provide the Clone() method. Creating a custom, inheirted List<> is something I'd like to avoid. Implement Icloneable interface in Foo Class. List < Foo > cloneFoos = new List < Foo >(); foreach ( Foo f in Foos){ cloneFoos .Add(( Foo )f.Clone()); } ...Show All

  • Visual FoxPro SELECT statement is showing unwanted display of data and is not passing data to a table.

    I'm using a SELECT statement to pull out data from a table... that is working great. What I'm trying to do is feed the selected data to a different table using REPLACE so that it can be used by a report. All of this is triggered from a command button on a form. Here's the code for the CLICK property of the button: SELECT store, stock, year_1, make_1, model_1, auction1, transport, recon, sold_for, fees, net_check, result ; FROM wholesale_table1 ; WHERE In_Date >= DATE ()-60 ; && sets a sixty day date range AND sold_for < 1 && removes all sold vehicles && store.value ='DODGE' -> uncomm ...Show All

  • .NET Development Web Service client and imported common types

    I have a couple of web services that import types from external XML schemas in order to re-use common types. When I create a client application (one client application that consumes both web services) for these web services (by using the Visual Studio Add Web Reference wizard based on the web services' WSDLs) the types are automatically imported into the client code in two separate namespaces (say Service1.AccountInfo, Service2.AccountInfo). AccountInfo is identically defined in both Service1 and Serivce2 and should be interchangable between the two services in the same client application; but the Add Web Reference wizard forces them i ...Show All

©2008 Software Development Network