Support Of Vb6 In VS 2010
Sep 7, 2010I tried upgrading vb6 to vb.net using the convert tool in visual studio 2010. But I couldnt find the option Visual Basic 2010 Upgrade Wizard.
View 4 RepliesI tried upgrading vb6 to vb.net using the convert tool in visual studio 2010. But I couldnt find the option Visual Basic 2010 Upgrade Wizard.
View 4 RepliesDoes Windows mobile 6.x and CE development supported in VS2010?
View 1 RepliesHave we moved from "Being forced to go install a 3rd party add in to get what C# users have" to "Being forced to go buy a 3rd party add in to get what C# users have"?
Why did MS see fit to get DevExpress to create Refactor! for the previous versions of VS, but not for 2010? Or am I missing something?
In C#, one can create an array of anonymous objects with new []. This was not supported in earlier versions of VB.NET, but a comment by Chris Dwyer in another StackOverflow post suggests to me that it might be supported in VB.NET 2010. I haven't been able to confirm this though.
View 1 RepliesNext question.Does VB 2010 express support the my.computer etc. syntax? If so what do I have to do to use it? It appears to offer a pretty easy way to use FTP.
View 4 RepliesI am working on a project which use files with a .HRZ extension. These are image files with a simple red, green, blue, red, green, blue structure. There is no header of any kind. I know how to display these files in a picturebox or convert them to a bitmap, but of course Windows 7 does NOT know what they are, so just shows a blank icon in the OpenFileDialog. How easy would it be for me to add support for this file format to Windows and/or the OpenFileDialog so I can show a thumbnail of each file? I can create my own file browser but I would really like to use the OpenFileDialog if at all possible.
View 3 RepliesI compiled some VB6 code on my Win7 x64 machine and the result .exe will not run correctly on any other machine. VB6 code is just a new template .exe file with one button, a reference to "Microsoft ActiveX Data Objects 2.6 Library" and the following code in the button press event: Dim db Set db = New ADODB.Connection It runs correctly on my machine, but no others (even other Win7 x64 machines) (Update: I found TWO other users where it runs and one of them is Jeff Atwood!, but most machines have the same problem)
[Code]...
Why doesn't vb.net in Visual Studio 2010 have any Refactor support
View 14 RepliesI found that this answer was asked and answered before VS2010 was actually released.[code]to a .NET Framework 4.0 project in Visual Studio 2010 and it does not compile.Do you now if this feature is really implemented and what I am doing wrong?
View 3 RepliesI am trying to make a renaming program, which I have done, but wanted to add drag and drop support. Firstly, when I drag and drop the files into a listbox they appear to be going in and are ordered randomly. I want them to go into the order they're dragged in. Secondly, instead of having the entire path such as:
D:TVThe Big Bang Theory SeasonSeason 1The Big Bang Theory S01E01 - Pilot
I want just "The Big Bang Theory S01E01 - Pilot" to go into the listbox.
I've been working on my game for a while, in a non-online multi-player state it is complete. My goal is to add LAN or Internet Play support.My game is coded in Microsoft Visual Basic 2010 Express, It relies heavily on timers.Currently you play against the AI, and there is a Local multiplayer mode, using mice, controllers or the keyboard.At the moment, it is a two player, (Or 1 player against the AI) game, from my understanding the standard Client-to-Server option wouldn't very efficent, the best choice would be a peer-to-peer system.That being said, a lot of the stuff could be done client side, like for instance, the particle engine and Dynamic Rendering.[code]
View 1 RepliesI was able to use the VB off line iso file to install VB 2010 Express but it did not include the Reference Library
View 9 RepliesDoes the Express Version support adding multiple soultions (.sln) to a project or is this only available with the Professional version.I see that I can add a DLL as a reference that was built in 2010, but it is not letting me step into it with the debugger (or recompile changes to its source).
View 10 RepliesWhenever i try and load a project i was working on with VB 2010 i get an error saying
"Font 'Arial Rounded MT Bold' does not support style 'Regular'"
how to get rid of this? I recreated my form for the project and copied the code over but it did this again. I didnt change any fonts on the form at all so i dont understand whats going on.
Does anyone know if/when .NET will support SFTP?
View 5 Replies1. Is email support still available?
2. Is there any way to tell when it will be available if it still is a service that Microsoft provides?
3. Is there any way of telling what I might be doing wrong, if anything?
The message I receive at all hours anytime I try this (about 10x so far) is:"We are sorry, we are unable to process your order at this time."without any explanation as to why or when I could be able to process the order.
Ok ive looked all over the web but all I can find is examples in other programming languages (cant convert). Can anyone shed some light on how to make a dll that works with rundll32 (just the basics) or tell me were i can find info.
View 5 RepliesI am attempting to make a browser. I have it set up to where it can support one proxy. My question, is, How would I make it to where the program would read from a text file, and use those proxies? 1 proxy per line?
View 1 RepliesI am developing an application in VS 2005 (VB.NET) that should run on both 32 and 64 bit OS.The Framework is distributed with the application. Microsoft has two different FW redistributables dotnetfx.exe for 32bit OS and NetFx64.exe for 64bit OS.Is there any installation file that can detect the OS type and install correct redistributable?
View 16 RepliesDim x As Integer = 1.8 1
Error:
Option Strict On disallows implicit
conversions from 'Double' to 'Long'
What Long??
EDIT:
Apparently Visual Basic attempts to convert any floating-point numeric expression to Long. OK, this part is clear.
Now, I can use the
CType((Math.Round(myResultingSingle)), Integer)
but what for MSDN tells that operator supports all the types if in reality it supports only Long as expression1 ?!...
I would like to add some scripting support to my .NET-application (I usually code in VB.NET). Since VisualStudio 2008 won't let me use VSA to get scripting support, and the Windows ScriptControl crashes in 64-bit mode, I have been looking for an alternative solution to my problem.I would really like to be able to code the scripts in VBScript or VB.NET, because of the simple syntax.Would it be possible to implement some kind of sandbox inside my application to make it run a VB.NET application inside itself? Or is there any simpler way of getting scripting support?
View 2 RepliesI'm writing a media management tool and want to add support for MTP based devices.I've been reading through the SDK docs and with the help of some C# examples have managed to make a start on getting some VB code working.
I've come across a few anomolies that I hope someone can help me with!In the examples IPortableDeviceManager.GetDevice appears in C# to receive a string array. But in VB.NET it appears to only receive a string. I have a similar issue with IPortableDeviceManager.GetDeviceFriendlyName which according to the C# samples appears to receive a char array, whereas in VB.NET it is accepting a UShort.
[Code]...
I'm working on a new project, it's kind of a patcher but I'd like to add torrent support for it as well as a regular HTTP download within it.
View 1 RepliesWhile for the most part you can generate the same MSIL, there are definitely differences in tooling. PEX, for example, works much easier with C#.
What Microsoft or 3rd party tools don't work equally well for both languages?
How do I direct help from MS support on line?
View 1 RepliesDoes VB.NET supports virtual events?
View 1 RepliesOne last hangup with an application and I've tried like heck to research this but no luck.When I do a button click on my open file, it brings up a sub with all the open file code same for my save file and everything works perfectly.If, the open file dialog is on the screen and you should click either cancel or close I get the following argument exception unhandled, (and I've pasted all the details).It throws the exception at the very first line where textbox1 gets it's backcolor(txc(0)) is the variable in my.settings
If I open ANY file I have saved by clicking OK, all goes perfectly, it loads the file and I don't get the exception.I only get it when I click off the open file dialog with cancel or X.
[Code]...
I have a number of functions that, for one reason or another, return data type object.If I try and use the + operand (or indeed any arithmetic operator) on types object the compiler throws a wobbly.
How do I tell if a given object supports the "+" operator and, if it does, invoke that "+" operator?
Does VB Supports OOPS Concepts?
View 1 RepliesI'm developing a new SOA system right now, and would like to use WSDL2.0, but I heard some clients are still connect using VisualBasic and WSDL1.1 (mostly from excel sheets and stuff). So I was wondering if VisualBasic also supports WSDL2.0, or if it's all 1.1
I know WSDL2.0 will work with C#,Java,and most other typical application programming languages, and these languages will be used by most of our clients, but I don't want to alienate our VB users, so that's why I'm asking.