Ultrageek's Q&A profile
Visual Studio Express Editions package "Microsoft Report Designer" has failed to load properly
When starting Visual Web Developer 2005 Express Edition the following message appears: package "Microsoft Report Designer" has failed to load properly Any suggestions Hi: Aaron's blog has several things you can try to get rid of package load failures: http://blogs.msdn.com/astebner/archive/2005/09/06/461804.aspx Hope that helps! Ravenna ...Show All
Smart Device Development How could i create a database application in VB 2005 for windows ce?
hello! i've been searching the internet for the answer to this question, but i didnt find any that is useful to me. i would also like to know everything that is connected with the database application im intending to write. thanks a lot. Hi, You can use the EDB class to create,copy and delete database. I hope the following links will help you. http://www.developer.com/net/cplus/article.php/3327171 http://msdn2.microsoft.com/ ...Show All
.NET Development SslStream and SSL protocol not recognized (i think)
i wrote this simple apps to connect to an IRC server but it doesn't work :( using System; using System.Collections.Generic; using System.Text; using System.Net; using System.IO; using System.Net.Security; using System.Net.Sockets; using System.Security.Cryptography.X509Certificates; namespace provaSSL { class Program { static void Main( string [] args) { try { string certName = "" ; TcpCl ...Show All
SQL Server Version of OLEDB / ADO
I want to use SQL 2005 to import data from Visual Foxpro 6.0 free table / database into SQL 2005. Whethter I should install the latest Microsoft OLE DB Provider for Visual FoxPro 9.0 SP1 or previous mdac Please advice and many thanks. I think the data access forum is probably a more suitable place for this query: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=87&SiteID=1 -Jamie ...Show All
Visual C# how to use trimend
can any one help me to understand a role of this method "trimend()"with an exemple Quoted From MSDN - "Removes all occurrences of a set of characters specified in an array from the end of this instance." So... private string TrimEndExample() { string OriginalString = "My World Is Under Attack!" ; string NewString = OriginalString.TrimEnd( new char [] { '!' , 'k' , 'c' }); ...Show All
Visual Studio Team System Organizing Projects
We are getting started on Team System and would like some guidance on organizing projects. We are going to have a web based product and a smart client product with components that are going to be shared among them. If we are going to do project references among the two solutions we will have to go with one Team Project as source code cannot be shared among team projects according to this: http://msdn2.microsoft.com/en-us/library/ms242910(en-US,V ...Show All
SQL Server Querying multiple tables for rows
Good morning! On this beautiful day (just as yesterday ) I have created a SQL statement that returns from the tables verbs, verb, nouns, etcetera the rows in which the field 'Parent' equals the field 'Name' from the table 'orphans'. SELECT verbs.Name, verbs.Parent, verbs.TedID FROM orphans, verbs WHERE orphans.Name = verbs.Parent UNION SELECT verb.Name, verb.Parent, verb.TedID FROM orphans, verb WHERE o ...Show All
Visual Studio 2008 (Pre-release) Hosting Indigo Services in a Windows Service
The below two messages are taken from the Indigo newsgroups. I haven't received any response over there so I'm trying here as well. -------------------------------- Does anyone from MSFT have any insight into this Are there certain security settings that I need to be setting to allow my Indigo services using the netProfileTcpBindingto work when being hosted from a Windows Service What are the differences between hosting services in a ...Show All
Windows Forms RequiredFieldValidator in WinForms
Hi all, I am an ASP.NET app developer so don't mind this silly Q ;) I have many TextBox controls on my WinForm that is required (cannot be empty) and I want to validate this when the user clicks the OK button. In WebForms apps I  ...Show All
Visual Studio Tools for Office rounding chart corners in Excel
Im looking too programmatically round the corners of an excel chart using VB8. Manually its located in the format chart area, under the patters tab there is a round corners check box right under the shadow box. In intellisense I did find the shadow option With chart .ChartArea.Shadow = True end with but I dont see the round corners option and havent seen any examples of anyone doing it online. Any help you could provide would be much apprecia ...Show All
Visual C# Designer.cs error
I am getting the following error on a build: Warning 1 The name "Description" is already in use by another component. K:\fms\admin.Designer.cs 2151 0 ok, so I check around in the Designer.cs file and see the following: this .descriptionDataGridViewTextBoxColumn1.Name = "Description" ; // this is the only other line using "Description" this .descriptionDataGridViewTextBoxColumn.Nam ...Show All
Visual Basic StringTokenizer in VB.NET and highlighting
Is there anything like a StringTokenizer in VB.NET e.g. If I've got a String "artificial intelligence", how to divide it into two strings Another question is about highlighting particular words. e.g If I have a short text "He is a professor" in a Label. What I need to is to highlight the word "professor" by displaying it using different colour. split(" ") ...Show All
SQL Server strange refresh of the parameter area
Hi, I have a couple of parameters on a report that prompts the user. My problem is that I fill a value in the 1st parameter and to fill the next one I have to click twice on the input because of a strange refresh that my browser does when I left the 1st parameter. This is happening for all parameters, not only between the 1st and the 2nd. Do you have any idea how can I make to avoid this because is so unfreandly for the user! ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How do I set the Viewport in directx / c#?
I want to render into a portion of my window. I'm assuming that you use the Viewport structure but I can't find any examples. I'm using a camera based on the dxut camera from the sample framework. I can do this in openGL but can't seem to figure out the way to do it here. Any help would be appreciated. Depends on which version of DirectX you are talking about. I will give you a hint in both directions. C# Vie ...Show All
SQL Server Create a database based on an existing one?
I want to create one databse with exactly the same tables as another, is that possible Yes, you can use the Transfer object to create a script that recreates all objects in a target database. See the ScriptTransfer() method. ...Show All
