• WSDrew

    WSDrew

    @wsdrew

    Viewing 15 replies - 151 through 165 (of 790 total)
    Author
    Replies
    • in reply to: How much conflict am I asking for? #845367

      A little persnickity, are we? LOL! grin. True though.

    • in reply to: Open notepad and delete character (VB6) #845128

      LOL, you’re absolutely right. That’s what I get for writing code in the lounge, I skipped a step, and didn’t debug it! Oh Well, no one is perfect!

    • in reply to: Open notepad and delete character (VB6) #845129

      LOL, you’re absolutely right. That’s what I get for writing code in the lounge, I skipped a step, and didn’t debug it! Oh Well, no one is perfect!

    • in reply to: How much conflict am I asking for? #845028

      Just an extra FYI, there is a product by Microsoft called Virtual PC. It allows you to create ‘virtual’ hard drives and operating systems on your existing PC. The virtual hard drives are literally files on your computer. Want to make a backup, just copy the file somewhere else. Install whatever you want within the ‘virtual’ operating system, and if things go wrong, just delete the file/harddrive. Very handy for creating ‘test’ environments.

    • in reply to: How much conflict am I asking for? #845027

      Just an extra FYI, there is a product by Microsoft called Virtual PC. It allows you to create ‘virtual’ hard drives and operating systems on your existing PC. The virtual hard drives are literally files on your computer. Want to make a backup, just copy the file somewhere else. Install whatever you want within the ‘virtual’ operating system, and if things go wrong, just delete the file/harddrive. Very handy for creating ‘test’ environments.

    • in reply to: Open notepad and delete character (VB6) #845023

      This will do what you want, without Notepad, and is a little shorter then Mark’s code.

      Dim f As Long
      Dim strPath as String
      Dim strTemp as String
      strPath=”C:Temp.txt”
      f=freefile
      Open strPath for Binary Access Read as f
      strTemp=space(lof(f))
      close f
      kill strPath
      strTemp=Replace(strTemp,”_”,””)
      f=freefile
      Open strPath for Binary Access Write as f
      put f,,strTemp
      close f

      And that would do it.

    • in reply to: Open notepad and delete character (VB6) #845024

      This will do what you want, without Notepad, and is a little shorter then Mark’s code.

      Dim f As Long
      Dim strPath as String
      Dim strTemp as String
      strPath=”C:Temp.txt”
      f=freefile
      Open strPath for Binary Access Read as f
      strTemp=space(lof(f))
      close f
      kill strPath
      strTemp=Replace(strTemp,”_”,””)
      f=freefile
      Open strPath for Binary Access Write as f
      put f,,strTemp
      close f

      And that would do it.

    • in reply to: Title changed (2000) #845022

      The title of the browser is determined by the title tag within your header. If you look at the HTML for your home page, you will see this as the fourth line:

      Runaway Mule Farm:Paint,Quarter Horses,Mules for sale in ND

      The title used in navigation bars and banners is actually stored within Front Pages navigation file. (structure.cnf). It can be viewed from the Navigation panel of Front Page. When you create a page, and you give it a ‘title’, Front Page uses that title as the ‘default’ name within the navigation structure. However, if you change the page’s title, that does not change the navigations ‘title’.

      I hope this is what you were asking about.

    • in reply to: Text Box Limit (Access 2002) #845020

      Just to make sure, are you really dealing with a textbox, or is this a listbox? Listboxes and comboboxes, when you set a string to their ValueList, are limited to 2048 characters. You can program around this by using a callback function, instead of a value list.

    • in reply to: Text Box Limit (Access 2002) #845021

      Just to make sure, are you really dealing with a textbox, or is this a listbox? Listboxes and comboboxes, when you set a string to their ValueList, are limited to 2048 characters. You can program around this by using a callback function, instead of a value list.

    • in reply to: Autonumber Duplicating? (Access 2002) #845018

      There is a bug in Access 2000 (which I think the latest service pack fixes), which goofs the Autonumber, during a compact. It will let the system try to ‘reuse’ an existing number. Just an FYI.

    • in reply to: Autonumber Duplicating? (Access 2002) #845019

      There is a bug in Access 2000 (which I think the latest service pack fixes), which goofs the Autonumber, during a compact. It will let the system try to ‘reuse’ an existing number. Just an FYI.

    • in reply to: Field Size Limit (2002 (10.4302.4219) SP-2) #843680

      That only a limit when entering through the datasheet of a table, or a form view. If you interact with a memo field using ADO or DAO (with code), a memo field can hold up to the size limit of the database itself. The ’64k’ imposed limit is actually a limitation in the viewing capabilities within the datasheet view.

    • in reply to: Field Size Limit (2002 (10.4302.4219) SP-2) #843681

      That only a limit when entering through the datasheet of a table, or a form view. If you interact with a memo field using ADO or DAO (with code), a memo field can hold up to the size limit of the database itself. The ’64k’ imposed limit is actually a limitation in the viewing capabilities within the datasheet view.

    • in reply to: Floating Fields (2002) #843675

      Just so we don’t leave everyone in the dark, I am posting a ‘flashy’ method of closing a form, and even closing Access. This is what LadyGnome is going to use instead of ‘floating’ the controls. There are three forms. The ‘twist out’ form doesn’t really twist, I would have to use transformations to do that, and just don’t have time to mess around with that right now.

      The modules in this db are completely standalone, so you can import them into any project you want. Use the code behind the buttons on the sample forms to see how it works. (The functions only require the forms hWnd value).

      Enjoy! sailing

    Viewing 15 replies - 151 through 165 (of 790 total)