Answer Questions
netomin [OTP] vb6 How to unplug (safely eject) USB Drive.
I am working on Visual Basic 6. I want Visual Basic Source Code for unpluging (Safely Removing) USB Drive from machine and plug it again. Unplug and Pluging, both the process should be done by coding and not manually. Waiting Unfortunately, this forum is for Visual Basic .NET users only. Give places like www.planetsourcecode.com a try. These forums are for VB.NET and there are better places to find answers for older ve ...Show All
Lonny R Where is the Immediate Window in VB 2005?
I just started using VB 2005. I cannot seem to find the Immediate Window to use while debugging. The documentation says it is under Debug | Windows | Immediate, but it is not there, even when I am in Break Mode. Ctrl+G should also bring up the immediate window. Do you know what profile you are using You could try resetting the profile to VB profile and that should cause it to appear in t ...Show All
roraima overload resolution failed
This is from Wrox Professional VB 2005. I checked with the Wrox site and there is no corrections available for the book. This is a section on using reflection, inheritance and multiple interfaces. It seems most of the bases are covered, because up until these last errors the builds were successful. overload resolution failed because no accessible 'ShowDistance' is most specific for these arguments: ShowDistance(obj as Parent)not most sp ...Show All
BiGAlex ad_handlers!!
How do u combine them! catagoryName = node.SelectSingleNode( "name" ) filepath = node.SelectSingleNode( "filepath" ) description = node.SelectSingleNode( "description" ) Dim menuItem As ToolStripItem = TheHolymenu2.DropDownItems.Add(catagoryName.InnerText) menuItem.Tag = filepath.InnerText AddHandler menuItem.Click, AddressOf AppMenuItem_Click menuItem.Tag = description.InnerText AddHandler menuItem.MouseEnter, AddressOf ...Show All
Bob Glassley ASP.Net Calendar
I want to use a calendar in my asp.net web application.But even if I don't select it is showing Calendar1.selecteddate.ToShortDateTimeString() as {1/1/1}. How can I track whether a caledar date selected or not. &nbs ...Show All
Sushant Raut Form1_closing.. is this a bug?
I've noticed that in visual basic 2005 that there is no form1_closing event in the event list. Is this on purpose It works if you type it in but the list doesn't show it. Any ideas on this No, Stream hasn't been superceded by StreamReader. It probably selects StreamReader because you can't create an instance of Stream as it is an abstract (MustInherit) class. Ahh, So is that the same reason that when I t ...Show All
Aludaan Need Help on Displaying ContextMenuStrip
I need help displaying a ContextMenuStrip in a ListBox when I right click my mouse. I have been trying but I only get it on left click and the menu appears in my top left hand corner of my screen. (This is for VB.net 2005) If anyone knows how to do this please help, Thanks! Also I have another question about how to get a text to go to the end. Like I have a text box to show raw data of an IRC Server and I would like to try to get it to the ...Show All
CPrecourt Automate Internet Explorer?
Hi @ll, I think I'm getting crazy now. Since several days I'm trying to automate IE using VB 2005 Express - but I don't get it. The problem even starts when trying to launch IE - nothing happens. I know, there's the possibility to use the "Webbrowser" - but that doesn't help me in that special application. What I want to do is to start IE at a particular time and close the IE window again at a particular time. Here's my tr ...Show All
Fedja Copy a file to a folder
Hey, I am using Visual Basic 2005 Express Edition, and have ran into a dead end. I want my program to copy a file into a folder but the only copy command I could find was the io.file.copy but this only allows the code to copy to a file path not a folder, is there a way to copy a file to folder or a way around it Thanks File.copy which copies file from one location to other with file path defined. If file is ...Show All
David Springate passing listbox to backgroundworker
I have the following sub: Use the walkthough example as a good starting point. Try changing things, one step at a time. In the ComputerFibonnaci function you pass an integer n - pass a string as well. This string could in essence be your audio filename. Instead of calculating a Fibonnaci Number - Place your audio play method in here.... "I need to pass a ListBox from my main form into the background worker class shown ...Show All
Burtraskkutaren ADODC unrecognized database format for Access 2000
I am working on a networked version of Access 2000 using a Visual Basic 6 front end. The access file was recently moved to a new server with MS Server 2003 installed. Over the last couple of days my clients, who have todate had no problems accessing the data, have one by one been unable to access the data getting error message "Unrecognized database format". Any help would be appreciated. What may ...Show All
Wojo Comparing 2 strings at character level
I am looking for a way to compare 2 strings and calculate the number of differences between them using visual basic Example compare "THE NETHERLANDS" WITH "THA NOTTHERLENDS" should give back an value of 4 based on 1) "E" in first string position 3 does not match with "A" in second string position 3 2) "E" in first string position 6 does not match with "O" in second string po ...Show All
myriads Where can I find real looking playing cards
I asked this question once before and was directed to the Blackjack starter kit. The problem with those cards is they don't look real. Is there anywhere else I can obtain images of playing cards (hopefully free) to use in making my own card game nobugz, Please excuse my ignorance, but I am not seeing how to assign a card image to a picturebox or other control on a form. I have tried calling Cards.New or Me. ...Show All
rsri httpwebresponse not support arabic language !!!!
I have to useing httpwebresponse for two pages, One is jsp and other asp. the charset is UTF-8 for both of them, while reading for jsp the arabic character are readed but in asp are not readed it come as spaces In asp page I use that code <%response,charset="UTF-8"%> what is the problem The response depends on the asp page. You have to fix your asp page first. I checked your page asp page and the en ...Show All
jungleKing run program without logon windows
hi, I have a tray application ready to running when windows start but this only happens when a user logon windows. (adding to registry key) How can I start the program whitout user logon windows (when computer is locked) Thanks. You don't really have a choice here... (at least not one I can think of off the top of my head) A Windows Service will start and run without a currently logged on user. So ...Show All
