bmann225's Q&A profile
Visual Studio Express Editions Is it possible to upgrade vb4.0 apps to vb2005?
Hi all, I have just installed VB 2005 express after not having used VB for some years. I have a number of older projects that I would like to update, preferably without rebuilding from scratch. Is it possible to do this in VB 2005 from VB4.0 project files etc The Upgrade Wizard was designed for Visual Basic 6.0 applications so I don't think you will have much luck with 4.0. You can upgrade code snippets but not the project as a whole. ...Show All
Visual Studio Express Editions I dont have System.Web.HttpUtility
I cant figure out why i dont have System.Web.HttpUtility In the object browser it shows its there but when i do system.web. there are only 3 items involving asp in the next menu Why cant i see it Have you added a reference to System.Web.dll http://msdn2.microsoft.com/en-us/library/wkze6zky(VS.80).aspx Best regards, Johan Stenberg ...Show All
Windows Forms apply visual style to .net winform application
Hi, I was wondering how I could create and apply styles to my .net winform application You can apply style to windows XP thanks to .mmstyles files, but is it possible to do something similar for one particular .net winform application, i.e. without using the OS style Thanks ...Show All
Visual Studio Express Editions need help
hello expertes, im new with visual web developer 2005,so i need some assistances.so my ques, is it possible to connect my SQL server database into visual web developer data source, to stublish a new connection if its possible then what would be the proper way to do it thnakin you himel The group here is mainly for installation and registration problems with the Express Products, If you drop over to http://forums.asp.net and try there you are going to get a better answer as the asp.net teams hang out there... But to help have you looked at the learning examples from the Web Developer home pag ...Show All
Visual Basic Adding a new Data Provider in Visual Studio 2005
Adding a new Data Provider in Visual Studio 2005 Please could someone explain how I can add a new Data Provider from a 3rd party to the Data Sources dialog in VS2005 (1) Click on New Data Source from the Data Sources tab on the Solution Explorer. (2) Data Source Configuration Wizard - Select Database, click Next (3) Click New Connection button (4) Add Connection Dialog - Click Change Button (5) How can I add a new Data Provider to the list I have already installed Othe 3rd party data provider for the .NET 2.0 framework and added the correct reference to the project. Any help appreciated, thanks. ...Show All
SQL Server SQL Server to SDF
This was posted on another forum, no one there seemed to know the answer: What I want to do: Export data from SQL Server 2005 to SQL Mobile SDF on the desktop. One would think to use the Export from SQL Server 2005, but no provider seems to exist when I tried this. Euan Garden pointed me to SSIS. I installed this, and now get: First of all, In the VS2005 Server Explorer Data Connections, I am able to create an SQL Mobile connection, and mess around with the SDF, so at least something works. However in SSIS, I add a Sql Server Mobile Destination Data Flow block, and get "System.IO.Filenotfoundexception Could not load file or assembly 'Mi ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX Game Programming Languages
Good afternoon experts, I've been working in the MSDE .NET platform for quite a number of years on a business level. I am familiar with C++, C#, and VB .NET. Since I have been diving a little deeper into game programming with DirectX, using Tom Miller's book in C#, supplemented by Zman's code changes, I have been working primarily with managed C#. I have noticed that many AAA game studios use C++ for thier programming. Before I head into putting my thoughts into code, and developing my engine, My question is this; What are the advantages / disadvantages of using C++ to C# in game programming Is there any definitive reason to choose one ...Show All
Visual Basic Treeview parent sort
Hi everybody. I need to sort a treeview, but I must keep intact the child structure. Any idea about strategy Example: BEFORE SORT: root | ---parent2 | |---childX | |---childA | ---parent3 | |---childX | |---childA | ---parent1 |---childX |---childA AFTER SORT: root | ---parent1 | ...Show All
Visual Studio Tools for Office problem with MS Word Add-In
Hi everybody, I have created an Add-in for MS Word. It is a toolbar that contains a button when you click on button it loads a Form. My version of office is 2003, It works well, but with a few problems. if you assume that we have 4 cases it works at two of them. here is the 4 cases: 1.if you double click on a .doc file to open it, everything goes well (my button works). 2.if you open a new instance of Word, and use the document as a new document everything goes well here too. 3. if you have already opened a new instance of word and go to file -> open (as usual when you open an exsiting .doc file) it does not work, my button ...Show All
.NET Development Problem indexoutofbound array Exception raised ,Plz help
Hello all, I have the following code snippet but when I am passing idList value from another class . Index was outside the bounds of array exception is raised when I am regenerating the dataset from the scratch it is selecting the row but I am not able to get solution of this problem ------------------------------------------ Snippet------------------------------ for ( int row = 0; row < rowCount; row++) { for ( int i=0;i<idList.Count;i++) { if ( int .Parse(ds1.Tables["MyTable"].Rows[row]["UID"].ToString())==( int )idList ) { if (dataGrid1.IsSelected(row)== true ) ...Show All
Windows Forms Defining window shape
I have problem with defining shape of a window. I know how to do it in WinAPI but have no idea how to solve this problem in windows forms. thanks for the answer, I`ve even managed to find a solution in visual studio 2003 form designer :) ...Show All
Visual C++ DLL Run-time problem
I seem to be having a problem at runtime with unwanted DLL symbol imports. This seems to only happen with DirectX applications and only during debug when the program is run from the editor. I have Trend-Micro's PC-Cillin installed on my computer, and every time I move the mouse over a DirectX application, this DLL from the PC-Cillin software keeps trying to import its symbols into my applications. This is grossly slowing down my applications. I have also tried disabling the PC-Cillin software but without results. Is there a project setting or an editor setting that will keep this from happening in the future This happens like I said only wi ...Show All
SQL Server How do i select "last 10 rows" of the result set??
Can we select "last 10 rows" from the result set. (sql server 2000) Something of an opposite of "top" functionality An easy way to do this is, is to reverse your order by clause so the required rows are now presented first and then use select top 10 ...Show All
Visual C# SaveFile
Ok. Can anyone tell me how to save a file as a folder format There is to my knowledge no mechanism available to download a full folder from HTTP. What you will need to do is -somehow- obtain a directory listing from the remote folder (which will be the trickiest part as this depends on whether the web server will give you this info) and then locally create the folder, and download file by file... Thanks Thomas Delrue ...Show All
.NET Development How to use data available on Internet or some site in our application..
Hiii, I want to list the prices of some products available on the internet everytime i open a web page in my application.. ex: I want to list all the printers available and their prices from internet in a datagrid on my page. Is it possible if so how.... Sachin, it is possible to extract prices of the products you are interested in from internet. You will have to write the control logic that will visit various different wepages and gather pricing information for the products you are interested in. Since different sites have different policies about usage of their data as well as different ways of extracting such data. Pl ...Show All
