Answer Questions
MartinBrill Create activex control in vb.net
I need to create a personal control that work in vb.net and in other plataforms, for example vb6. Because i don't want to have two control one in vb6 and other in vb.net i would like a create a control in vb.net that I can use in vb6. Please any have idea Can i giv e a simple example to do this Very Thanks Excusme for my english, i speek Spanish mmmm....what you're trying to achieve is the same as ...Show All
Steven Mooses .KB1 extensions
I have been given the task to convert some .KB1 extension files to ASCII files. I am not even sure what the extension is and the previous coder is unavailable. Can anyone tell me how to convert them Thanks in advance! tp KB1 does not appear to be a standard file extension. Can you provide any other information by opening and seeing the file Try opening the file in a TextEditor such as UltraEdit/TextPad and use the Convert to ASCII option ...Show All
Jeroen Grasdijk setup.exe question
I created windows app with vb 2005, ready to install on a user machine by running application’s setup.exe, I get application warning Application Install Security Warning – Publisher can not be verified. Don’t know any other way to get publisher name to appear. Was using solution’s property window – Publish/options to set up publisher name and product name, it takes product name, but not publisher name, anybody has an answer for that. ...Show All
xzb6np I need help pls...
I am a beginner in VB.. and i've only programmed a little about it.. is there someone who can tell me how can i learn the VB 2005 with only VB6 as my background can someone pls redirect me to a tutorial or beginner's guide to VB 6, VB.NET, and VB 2005.. plss i hope you won't ignore me... i just nid real help... On this page there is a series of videos for the beginners http://msdn.microsoft.com/vstudio/express/vb/learning/ Here you'll ...Show All
ProgrammerJ VS 2005 RTM Weird Editor Behavior
I'm using the VB Editor in VS 2005 RTM version and every so often it starts misbehaving and I have to close all editor windows to get working properly again. What happens is that as soon as I type a single letter at the beginning of a line it immediately appends open and close parens. So for example if I want to type an If statement, as soon as I type 'i' it changes it to i(). If I backspace to delete the parens it puts them back in. ...Show All
Erin Geaney MSFT Packet and Deploy ?
Hello. My teacher needs information about Packet and Deploy. (this is from VB.NET classroom so I decide to post here) Anyone have an idea on what is he referring to I tried searching the MSDN but no luck. Any links that contain informations about it are welcome. Thank you. /bow Could it be "Package and Deploy" Visual Basic 6.0 had a Package and Deployment wizard for creat ...Show All
mike24 frames
hi, I'm developing a vb.net web application at work, and what I'm trying to do is to build a set of frames (header, left and bottom frames) for all the webforms in my project, but I need it in VB.net, cause almost all code and examples available in the internet are written in C#, and that's a problem since I decided to use VB as the default language. Is there any way I can use a webform written in c# and use it from all other webforms that u ...Show All
Alma S. .NET 2.0 ComboBox
Curious about combo box in .net 2.0. I have quite a few item in the combo box list. I have AutoCompleteMode = Append And AutoCompleteSource =ListItems For example the item listed as below : Cameron AaRon Ddaddy Normally, we can scroll through all the item in the combo box in two ways. 1. mouse scroll 2. click on drop down button to select. Problem arised. Once I type "C" in the combo box, it autocomplete with "C ...Show All
Aaron Lahman Localization not showing up
With VB2005 Express, I've created an app and have generated the localized strings for the form controls using the designer method. I set the form to Localizable = True, changed the Language to Swedish and entered all the localized strings. This generated a Form1.sv-SE.resx module in my project. I have some debug code in the funciton where Form1 loads which sets the Culture and UICulture to sv-SE. However, none of the form controls show the t ...Show All
Quirm VB 3.0 migrating from NT 4 to 2003 DLL question
Does anyone know if we migrate a Visual Basic 3.0 environment from NT 4.0 to 2003 if we need to update the VB DLL's Yes, they should work - Windows Server 2003 supports 16 bit applications. Steve Hoag The client is running VB 3.0(very old) on Windows NT. We want to upgrade the server to run Windows 2003 without touching VB. Do you know if the VB 3.0 DLL's will continue to w ...Show All
patlora Need Timer help on VB6!
Hi I need help programming a timer that ive created on VB6. What ive done is put the hours infront so that i can get a time in a different country. I done this by doing this: eg... Label1.Caption = Hour(Time) + 1 & ":" & Minute(Time) & ":" & Second(Time) (for places an hour ahead). But when it displays numbers like "09" or "04" or whatever for the hours, minutes, or seconds, i ...Show All
techiegus Using visual Studio 2005 with another compiler
Im working with an ide for Microchip PIC. I wonder if i can use Visual Studio 2005 and compile with another C compiler one of the great things about eclipse. . .it is not tied to any compiler. there are some commercial PIC plugins: http://www.google.com/search hl=en&lr=&q=Microchip+PIC+eclipse&btnG=Search and there is an open source: http://sourceforge.net/projects/eclipse-picdt/ ...Show All
bakuls Class Reflection Problem
I am trying to make my application save its data files as XML. The problem is this: Part of the data to be saved is a collection. Collections, apparently, can not be reflected in the System.Xml.Serialization.XmlSerializer.Serialize() method. So I tried List(Of...), and that doesn't give me the index functionality that I need. I reference the collection by key, which is a randomized number converted to hexadecimal. List(Of...) doesn't give me ...Show All
ariu Serial Port Hex CRC Calculation, help please.
Hi there, My program creates this output: 0xA0+0xAF+0x01+0xAA+0x6F+0x01 which then I need to add the checksum to the end. E.g. "0xC5+0x5F+0x0C+0x00+0x00=0x130 which is therefore CRC=0x30" << from my manual (but doesn't help me). So: A0+AF+01+AA+6F+01 = 2A6 or 618 as Integer. But I need the answer as a Byte. But byte's only go to 255! No where near 618! So help please in converting this 618 into a CRC Byte, pleas ...Show All
Steve Greatrex save as text file
Another quick question as part of a form I'm designing I capture some info: name, email, job, amongst others, which will appear on a registration sheet. I want to give the end user the opportunity to save this as a .txt file (so convert the info grabbed and save as txt with registration number) can any one help thanks, chris Hi, You can do that using the System.IO.StreamWriter class. Here ...Show All
