Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. steven54

    Copy array to clipboard

    I resolved it with this little chunk of code: tempString = "" For i as integer = 0 to 5 tempString = tempString & txtMyDataBox.Text & ControlChars.CrLf Next Sometimes the solution is too simple and, thus, easily overlooked [shadeshappy] When a door closes another door should open, but if...
  2. steven54

    Copy array to clipboard

    I am looking for a way to copy a single dimension text array of less than a dozen elements to the clipboard so when pasting the data into an Excel spreadsheet the data is inserted into a column, not a row. This copies the data into an array. However, when pasting the data into Excel it pastes...
  3. steven54

    Protect Download File

    This is a reply from another VB.Net message board. It really describes what I hope to build much better and in fewer words. Any suggestions on where to begin building this? - - - - - - - - - You would probably perform a Windows update style authentication: your legitimate user will install...
  4. steven54

    Protect Download File

    I built a website on a GoDaddy server. It is running Linux. mySQL is available on the server. I developed a program in VB.Net (VisualStudio 2010 Pro) Lets say you have a copy of my software. Your copy of my software is unique as before compiling it I added an alpha/numeric string to it...
  5. steven54

    VB6 Application Failure on Win 7 Box

    Thanks for the reply! After spending a couple days researching this I decided to retire all my VB6 programs for sharing. Been dabbling in Visual Studio 10 C++ for a while and it is about time I get serious with it. For the small programs I develop VB6 got the job done. The programs were very...
  6. steven54

    VB6 Application Failure on Win 7 Box

    VB6 will not install my programs on a Windows 7 machine. I tried using the default deployment package that ships with VB6 and it fails. I tried the Inno software deployment package and it generates the same error. The entire day was spent trying to get past this. There has to be a way! This...
  7. steven54

    Win 7 Task Scheduler Website login

    goombawaho, Thank you for the reply! I kept running into the security issue with this. Was thinking there may be a way to get VB6 or a VBA chunk of code to do this. Am learning C++ but that is not an option at the moment. I have seen programs do this and know it is possible, just not sure how...
  8. steven54

    Win 7 Task Scheduler Website login

    This should be easy. Key words are Should Be lol Windows 7 Ultimate 32 bit OS Using the Windows Task Scheduler I would like to have a task open a website and log me in. The task opens the website just fine. However, I can't get it to log me in with my username and password. Windows Task...
  9. steven54

    Microsoft and MSCOMCTL.OCX

    TedSmith, my VB6 code worked up until MSCOMCTL.OCX fails. I keep getting a message saying, "...MSCOMCTL.OCX could not be loaded". This laptop is running Windows 7 Ultimate 32 bit. There is no code to display as without the .ocx loading it is like the control never existed. When I examine the...
  10. steven54

    Microsoft and MSCOMCTL.OCX

    I spent the past two days trying everything possible to get MSCOMCTL.OCX to work in my code. It worked before. Not now. Lets say I buy a car that runs fine. Then one day without warning it will not start. No warning. Nothing. This is what Microsoft has done to us with this file needed for our...
  11. steven54

    How to get VB6 to access a MS Access DB

    Found the answer in the FAQ's. If pro is the opposite of con, then is progress the opposite of congress?
  12. steven54

    How to get VB6 to access a MS Access DB

    After formatting this hard drive I lost the ability to bind Access databases to forms, fields, etc in VB6 sp6. I am used to the ADO type of database manipulation inside VB6 and tried adding different VB6 ADO References and Components with no success. It has been years since I originally...
  13. steven54

    Open webpage in same Firefox tab

    This seems to be the biggest kept secret on the Internet :-) After searching and testing I am able to open a web page in a new Firefox web browser tab. However, unable to open a web page in a Firefox tab that has the focus. I hope to keep the amount of Firefox tabs open to a minimum. Thanks in...
  14. steven54

    How to identify a tab in a string

    Skip, Thank you! Sometimes these simple things are so difficult to get past :) Here is a star for your time!!!
  15. steven54

    How to identify a tab in a string

    My code searches for a tab from a text file. However, the tab appears as a square box when viewing the contents of the string in the Watch window. The tab consists of four characters. I tried to copy the square box from the Watch window but it just adds four spaces in the code: stringLocation =...
  16. steven54

    WebBrowser1 causing IE script error

    Andy, That did it! Thank you and here's a bright star for ya! Thank you B-) Steve If pro is the opposite of con, then is progress the opposite of congress?
  17. steven54

    WebBrowser1 causing IE script error

    I have two applications that use the WebBrowser1 component and both go to different websites and both are causing a script error. When I click the Yes button to continue the script everything works as expected. Any idea how to get this to stop generating the error? An image of the error message...
  18. steven54

    Best way to build database for online store

    Thank you for the replies. My ISP, Hostmonster, has a huge selection of supported languages to choose from. For starters I am going to start by looking at shopping carts. Oscommerce is a good place to start. And creating a db to test small sales and then build on that. One last question... Do...
  19. steven54

    Best way to build database for online store

    The store is selling metal art cut from a plasma cam. Basically silhouettefs of animals, people, scenery, etc. I want to have an image of each item where, when clicked, a purchase begins. I do not understand the meaning of this: "Would the stock list be purely web based or uploaded from a...
  20. steven54

    Best way to build database for online store

    I am developing an online store and am experienced in VB6, C#, C++, HTML, Access VBA and a little SQL. My question is which language is the best choice to use for a database, connecting to the database and shopping cart. I am sure there are other things I either am not aware of to ask about as...

Part and Inventory Search

Back
Top