notoryus's Q&A profile
Smart Device Development XML in compact Framework 2.0
Hi all, The compact Framework 2 is supposed to support XML, but when I add : Imports System.Xml Imports System.Xml.XPath in my code, I get an error sayng that XML is not a member of System !! What do I do wrong Thanks in advance, Emphyrio That's because there's no System.IO.dll. System.IO namespace is located in System.dll and you do have reference to it. ...Show All
.NET Development MySql and SqlDataAdapter
I'm tring to use a SqlDataAdapter to access some data in a MySql database. The problem is that the SqlDataAdapter.SelectCommand.Connection.Open() does not like my connection String which is: " DRIVER={MySQL ODBC 3.51 driver};Server=10.10.0.229;port=3306;Database=dbName;Uid=myUserID;Pwd=myPassword; " If you take out DRIVER={MySQL ODBC 3.51 driver}; and port=3306; it runs but then it doesn't find the database. The error reports tha ...Show All
Visual FoxPro line/column numbers are not displayed
In the status bar of my source code editor there are no column or line numbers. I go to Edit-->Properties and the checkbox "show line/column position" is properly checked. The help says that the numbers aren't displayed if wordwrap enabled. It is unaccessible in my editor properties dialog box. I cannot enable it because it dimmed. What else is missing here Thanks. Try SET MESSAGE TO in the command window. I find some of the VFP to ...Show All
Visual Studio Team System the request failed with http status 404
when I tried to open the team explorer I got the following error the request failed with http status 404 I'm also getting this error. Using a clean install (single server) Beta3Refresh in a virtual machine. On the virtual machine I can open and use Team Explorer fine. Creating projects/opening their portal all works smooth. I installed Team explorer on a client WinXP SP2 machine (my actual dev box) and when I open Visual Studio and choose ...Show All
Windows Forms Custom Designer Window
Developing a cutom designer form for my control. Form has a treeview control in it. How do you embed a propery designer window inside a form in runtime. The property designer window is like when you are in design mode and rig ...Show All
SQL Server Works fine inside BI Dev. Studio, but fails when scheduling it in SQL server 2005.
Hi! We are currently developing a project in SQLIS using the BI dev. studio. The package executes with no problems in the development environment, but when I try to deploy it and execute it using the SQL Server Agent, the package fails. "Work flow" ----------- 01. Build a package deployment utility (Rebuild all). 02. Runs the deplotment utility. 03. Checks that the latest package has been installed. 04. Creates a new job in SQL Server, usi ...Show All
Windows Forms MonthCalendar control - formatting problem
I'm using VS 2005 Beta 2 and I have a Windows form with a MonthCalendar control on it. I have the control configured to show 1 row by 1 column, essentially a single month at a time. When the application is executed, the dialog displays and the MonthCalendar control behaves as though it is to use as much space as possible to show as many rows and columns as possible. Actually viewed as a 2 x 2 matrix. What gives Is ...Show All
Windows Live Developer Forums Msn seems to be something wrong in my computer>
Hello there, (to everyone). I wanted to ask everybody opinion about these problem i facing. First, there is no question and solution on the help section of msn messenger. Hence, my msn messenger cannot send file, i mean transfer file to my buddy. Is all my friends i cannot transfer any file. ( i scan before my computer and no virus indicate). Continue, for my hotmail i cannot send attachment. ---------------------------------------------------- ...Show All
Visual Studio Integrating help with MSDN 8.0
Is there any way to integrate aditional docs (ie. DirectX SDK help) with the MSDN 8.0 MSDN Express has a Collection Manager (ms-help://MS.VSExpressCC.v80/dv_vsexpcc/local/CollectionManagerExpress.htm ) so you acomplish this task easily. But I haven`t found a way to do the same with full MSDN that comes with VS2005. Archive Manager was stripped as I understand. So as I see it, full MSDN has less functionality than Express Correct me if I`m wrong ...Show All
Windows Forms Bug: When i show a form object on AfterSelect event of TreeView it opens in back of main form
I don't know whether it is a bug or i am doing somthing wrong but when ever i try to create a form object and show this, it opens up behind of the main window from which you are trying to open it. private void treeView1_AfterSelect( object sender, System.Windows.Forms.TreeViewEventArgs e) { if (e.Action.ToString() != "Unknown") { Form2 form = new Form2(); form.Show(); ...Show All
Visual Studio How to dynamically toggle search terms highlighting?
Do I really have to change the setting in Tools->Options->Highlight Search Terms and re-issue my search each time I want to toggle the highlight of the search terms or is there another way to do that Regards, Gaetan. No answer ... ok looks like it may not be possible. I remember a past release of the MSDN documentation tool allowed a on-the-fly toggle of the highlight of the serach terms. What is ...Show All
Visual Basic "Cross-thread operation not valid" exception
Hello, I have exceptions like this only if I run my application in debug mode and do some actions (It's an application created with VS2003 and converted to VS2005, in 2003 there wasn't these exceptions). I know how to fix them, but I just want to know if it is advised to fix these exceptions because they didn't cause problems if not debugging. Thank you very much. Alex Bell Absolutely fix them, jus ...Show All
Visual J# System.InvalidOperationException Every Time I try a particular Web Reference
Greetings Fellow J# Developers! I am currently working on a project which requires me to make references to the Autodesk Vault Web API. This API apparantly at some point passes in an array of INTS or LONGS. Although I cannot post the code from their end (on account it is closed source), I can post my code that is generating the error (though I don't feel it will be of any help). I posted this to the Autodesk Vault user group, ...Show All
Visual Studio Walkthrough on class designer
I can't find a good walkthrough on using the class designer. The library has lots of How Tos but they are circular and never show an in depth example of using the designer to create a new class or module or any of the other choices. I looked at the channel 9 programs but a walkthrough is much more useful. Can anybody point me to an in depth article or walkthrough dennist Your references should ...Show All
SQL Server Get list of all Databases in an SQL server
Hey all, I have a pretty simple question, how do i get a list of all databases on a given SQL server I just want a list of them, how is this done I know that you can use SMO, but I am acutally trying to do this without using SMO. Can it be done Thanks to anyone who helps Hi, there are many options, some of them are listed below: --SQL2k5 Select name from sys.sysdatabases --Pre SQL2k5 S ...Show All
