Louis Frank's Q&A profile
Visual Studio Express Editions Visual Basic Express Edition
Hello, Thank for your help, i have french version...I have one troubleshooting, i don't find the tools, ClassDiagram, for Vb Class How do process for find, normally with right button, i don't have in contextuel menu Must do, load in charge tools I don't know Can you help me Thank you... http://msdn.microsoft.com/vstudio/products/compare/default.aspx Says... the class diagraming is not a part of VBE. ...Show All
Visual C++ CString::Format issue
Hi, I've recently been forced to change my project from using a MBCS to Unicode. This has thrown up a number of problems with my code one of which is below. text.Format ("Row %d,Col %d",ln,col); Thats is the line that I had in when using MBCS, I know how to format strings etc under unicode, and the problem isnt the change, it is what would that string appears as under MBCS, I cant seem to find much on what the %d thing would do, so if some one could tell me how the string text would appear after that code was successful, that would be great Thanks Will Thats what I just said, i'm saying the reason ...Show All
SQL Server upgrade to 2005
I am running MSDE2000 will the installation of MSDE2005 (sqlexpr.exe) recognise this installation (and it's databases) and upgrade it just to be sure ... Regards Patrick It is simple. Setup will automatically detects your SQL 2000 components. Please check the instance name of your SQL 2000. When you install SQL 2005, use the same instance name. Then setup will prompt for upgrade. That is it. Be sure to back up your database files in case it will fail. ...Show All
Visual C# Generic.Dictionary ContainsValue doesnt work
Problem with Generic.Dictionary and Generic.SortedDictionary. ContainsValue function of both of these classes work with usuall datatypes. But when you make a collection of the objects of a class that you have defined yourself it doesnt work. I know that it requires you to implement IComparable which i have done. And this implementation works fine for the other function - Sort- that demands it. Please help. The help says: Dictionary<T>.ContainsValue uses EqualityComparer<T>.Default to find the value. EqualityComparer<T>.Default uses IEquatable (if T implements this interface), and falls b ...Show All
Visual Studio Express Editions Connecting to sql server
I am wanting to write a visual basic front end to my sql server 2000 database. I have downloaded visual basic express 2005 and it only seems to want to connect to an sql server express database. Is it possible to connect visual basic express to sql server 2000 and if not whats the best way to go about this You should be able to access the database through code. I am running vs 2005 not the vb express so I can not test this. Try droping a datagridview on the form. Add this code to the forms load event <code> Private Sub Form1_Load(ByVal sender As System.Obj ...Show All
Visual Studio Express Editions VSTO in Visual Studio Express
Does anyone know if VSTO v.2 will work within the VS Express We have solution engineers on our team who might be able to pick up the Express version relatively easy and we'd like them to use VSTO to create Office SmartDocs. Thanks in advance! Roman - No, VSTO functionality will not be in the Express Editions of VS2005. Check out http://msdn.microsoft.com/howtobuy/vs2005/ for a breakdown of the different Visual Studio 2005 products. You'll notice that "Visual Studio 2005 Tools for the Microsoft Office System" is a product of its own, but is also included in Visual Studio Professional and a ...Show All
.NET Development Possible to use MembershipProvider classes in win forms?
Trying to see if it would be possible to use the same MembershipProvider for windows forms and web forms. Of course the default controls would not be available, but can the same provider be used Thanks! Can I get fries with that ...Show All
Visual C# Pass by Whatever
Hi! I am confused by the insistence of both Java and C# that passing a reference type is not pass-by-reference but pass-by-value. I take it that since you get a copy of the reference, they consider it pass-by-value Then, what is passed in pass-by-reference A handle (pointer to a pointer) And, if so, isn't it a copy of the handle that's being passed As you can see, I am missing something. Please, lay it out simply for me. (Pass-by-value--I get.) Thx! AFAIK, a reference type is passed, but if you change the value within the method, then a copy is made. If you use the ref keyword, then the reference continues to refer to the same ...Show All
SQL Server Derived Column Task failing with error 0xC0049067
I have a package that fails as soon as it hits the first Data Flow that contains a Derived Column task. The task takes three date columns and looks for a date of 6/6/2079. If it is there, it is replaced with a NULL. This task worked fine until I installed the Non-CTP version of SQL 2005 SP1, earlier today. (I went from RTM 9.0.1399 to SP1 9.0.2047)Does anyone have any ideas Here is the error I am trapping: An error occurred while evaluating the function . The "component " Update Max Date Value to NULL " (346)" failed because error code 0xC0049067 occurred , and the error row disposition on "input colu ...Show All
Visual Basic USB serial port control using Visual Basic 2005 SerialPort .NET component
Does anyone have experience or an example of using VB 2005's SerialPort control for a USB Serial port connection I can get it to work with a standard serial port, but not with a USB serial-port device. My current solution uses the 3rd-party PortController, but this is unsatisfactory as they want US$400 for the privilege!!! Maybe someone has a freeware version of a similar software I am using, but only with the correct driver, and also only after change my first USB-Serial adapter. After driver installation, it is like a com port in my computer. The cable-adapters costs 10% or less. ...Show All
Visual Basic Visual Basic 2005 Naviation Menu
I created my website locally and added a menu to it. The menu works fine locally but when I publish the site to a server. I get an error message when doing a mouseover. Also the arrows for the sub menus do not display. Below is the script for the menu and below that the error message I get from the server. Any ideas on fixing this would be greatly appreciated. < asp : Menu ID ="Menu1" StaticDisplayLevels ="1" Width ="100%" runat ="server" Orientation ="Horizontal"> < Items > < asp : MenuItem Text ="GSD Funnel" Value ="Funnel" NavigateUrl ="Default.aspx"> < asp : MenuItem Text ="Add New ...Show All
Visual Studio Creating Custom Control in Visual Studio using report controls
Hi, I need to create a custom control (User Control) in Visual studio using "Chart", "Matrix" and "TextBox" controls of Reporting services. Which CTP version of Visual Studio supports for solving the above issue. Thanks ...Show All
SQL Server SSIS won't install!
Hi I have installed SQL Server 2005 but Integration Services is just not there. I have uninstalled and reinstalled several times and in the process uninstalled an old version of Visual Studio.NET (manually because it wouldn't uninstall automatically) and Visual Web Developer, just in case they were interfering with Integration Services. No luck, in fact it got worse, now Analysis Services also does not work because it can't find devenv.exe! I have installed exactly this same software on another clean PC (ie. no previous Visual Studio variants on it) and it installs perfectly. There seems to be some kind of clash between old versions ...Show All
Windows Forms Move the focus from one tabPage to another How?
Hi guys I am getting a bit in a muddle with the tabControl I have a tab control with 5 pages How can I do this I am on Tabpage 1 I press a button I want to move on tabpage2 Also When hiding the tabPage by removing it and then readding it later i want to readd it to the same position (index) How can I do this Thanks Sorry never played much with the tab Control vbjunkie Hi, In regards to the second half of your question (removing a tab and then adding it again later to the same index) you can use the following: tabControl1 .TabPages.Insert( index , tabPage); Where "tabControl1" is the nam ...Show All
Visual Studio different fontstyle in a textbox
is it possible to has different font format in a textbox eg. : in a textbox consist of LINE1 & LINE2 (LINE1 & vbcrlf & LINE2), LINE1 fontstyle = Normal & LINE2 fontstyle = Italic thanks. ...Show All
