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. TheDrParker

    Creating an EXE that can run without an installer.

    I have a project with only 1 component added. Is there anyway to create an EXE that will not need an installer using VB6, but can run on any machine that can run a basic VB App?
  2. TheDrParker

    Can't Delete Rows Or Columns

    I have 2 tables with a Long Text columns and I think I stuffed more data than I was supposed to into them and now I can't delete the rows or the tables. I first put over 16,000 characters in the cells without realizing. Then created a new table and put only 16,000 characters, instead of 16K...
  3. TheDrParker

    /bin/id corrupted

    I installed MySQL and some related component seems to have corrupted my 'id' files. Whenever I open a shell I get "bash: /bin/id: Permission denied" "bash: [: too many arguments" I checked every copy of my 'id' file and they all say: "Stopping MYSQL...
  4. TheDrParker

    No Option for File download

    The source of your problem can probably be found here: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q323759 and here: http://www.jsiinc.com/SUBL/tip5600/rh5659.htm I'm currently trying to find a solution myself.
  5. TheDrParker

    IE no longer opens file across the network

    Microsoft made a change in IE with patch Q321232 and now I can't access my database accross the LAN. It's seem to be related to the following: You may not be able to open some file types in Internet Explorer (for example, Microsoft Word documents, Microsoft Excel spreadsheets, or Tagged...
  6. TheDrParker

    IE no longer opens file across the network

    Microsoft made a change in IE with patch Q321232 and now I can't access my database accross the LAN. It's seem to be related to the following: You may not be able to open some file types in Internet Explorer (for example, Microsoft Word documents, Microsoft Excel spreadsheets, or Tagged...
  7. TheDrParker

    Preventing Multiple Install Instances

    I downloaded Visual Studio Installer thanks. I'll try it out.
  8. TheDrParker

    Preventing Multiple Install Instances

    I have applications that are in use by several people and sometimes I do updates to the applications that include adding new components, DLL's, etc. Since I have to rebuild the package I have to do a reinstall on the machines of users or more likely I have them do one, causing this situation to...
  9. TheDrParker

    Preventing Multiple Install Instances

    Actually the problem is that if I do 3 installs when I go to Add/Remove Programs I see: MyTestProg MyTestProg(C:\Program Files\MyProgDir) MyTestProg(C:\Program Files\MyProgDir)#3 What is the best way to prevent this?
  10. TheDrParker

    Preventing Multiple Install Instances

    I noticed that when I create a setup package (using VB6) it works fine if I install it again and again. However, when I go to delete it shows multiple instances of the application. How do I prevent this?
  11. TheDrParker

    Is there a tool I can use in visual

    Is there a tool I can use in visual basic to convert from one time zone to another, or anything I can download to incorporate in my application?
  12. TheDrParker

    Submitting to a form with just HTML

    Can I submit the results of a form (i.e. check boxes selected) to another HTML form without using scripting. Thanx
  13. TheDrParker

    Contents of an EXE

    I'm taking over a project someone left. All I have is the exe for one of the programs. Is there a way to get back the actual files/coding used to build the exe? Thanx O.P.
  14. TheDrParker

    Export from Access To Excel problem

    I have a database that I convert from Access97 to Access2000. When it was in 97 I would do an export of reports to excel and it would retain some formating with things like Summing for totals in the footers. Now in 2000 none of the formatting seems to be carrying over from the report to excel...
  15. TheDrParker

    Access2000 export to excel problem

    I have a database that I convert from Access97 to Access2000. When it was in 97 I would do an export of reports to excel and it would retain some formating with things like Summing for totals in the footers. Now in 2000 none of the formatting seems to be carrying over from the report to excel...
  16. TheDrParker

    SQL Update with Boolean Problem

    When I try this: UPDATE [Certifications] SET [Verified] = 'True' WHERE [Employee Name] = 'Buttros, Peter' AND [Certification] = 'MCSE' AND [Verified] = 'False'; I get: …[SQL Server]Syntax error converting the varchar value 'False' to a column of data type bit. And when I try this: UPDATE...
  17. TheDrParker

    SQL Update with Boolean Problem

    When I try this: UPDATE [Certifications] SET [Verified] = 'True' WHERE [Employee Name] = 'Buttros, Peter' AND [Certification] = 'MCSE' AND [Verified] = 'False'; I get: …[SQL Server]Syntax error converting the varchar value 'False' to a column of data type bit. And when I try this: UPDATE...
  18. TheDrParker

    SQL Update with Boolean Problem

    When I try this: UPDATE [Certifications] SET [Verified] = 'True' WHERE [Employee Name] = 'Buttros, Peter' AND [Certification] = 'MCSE' AND [Verified] = 'False'; I get: …[SQL Server]Syntax error converting the varchar value 'False' to a column of data type bit. And when I try this: UPDATE...
  19. TheDrParker

    How to get textbox input

    I tried putting the value into the Session variable, but when I print it I get the value that the recordset changed DataTxtBox1 to when the page opened. I tried capturing the value into the Textbox, but it won't load when I do Textbox2.value = Session("Test1"). Is Textbox2 even...
  20. TheDrParker

    Capturing Textbox Changes

    I have a textbox DTC connected to a recordset that I want to make updateable. I want to be able to capture the change to use to update the recordset later. I have tried: <SCRIPT ID=serverEventHandlersVBS LANGUAGE=vbscript RUNAT=Server> Sub thisPage_onenter() DataTxtBox1.advise...

Part and Inventory Search

Back
Top