• Newbie Dumb Question (2002)

    Author
    Topic
    #379141

    nosleep I’m trying to make that quantum leap from “wizard” world to learning VBA, and have managed to get to pg 88 of “Beginning Access 97 VBA Programming” without too many mental failures. However, here I am at ‘Module Variables’ and can’t seem to figure out how to make the entry. It says to make an entry in the (Declarations) section of the module window under the Option statement, but when I open (General) > (Declarations) it is displaying “Option Compare Database” with the cursor at the beginning. When I move to the end and hit return it moves me out of the option statement into the sub below it. Are you supposed to delete “Option Compare Database” first? I’ve heard for fifty-two years that there is no such thing as a dumb question, but I may have finally discovered the exception.

    Viewing 1 reply thread
    Author
    Replies
    • #630311

      The top of a module could look like this:

      Option Compare Database ‘ general options
      Option Explicit

      Public Const Pi = 3.141592 ‘ a constant

      Dim strName As String ‘ some variables
      Dim lngAmount As Long

      Sub Test() ‘ the first procedure
      MsgBox “Hello World”
      End Sub

      To see it (more or less) like this, you need to have checked “View Full Module” (don’t know the exact caption) in the options of the Visual Basic Editor. If this option is unchecked, you’ll just see bits at a time.

      If you can’t insert a new line with the Enter key, you either have a keyboard problem or the Visual Basic Editor has gone haywire. See if closing all applications and restarting your computer helps.

      Note: if you didn’t get Option Explicit, rush to Tools/Options… in the Visual Basic Editor and turn on “Require Declarations”. This forces you to declare ALL your variables and constants; it will save you a lot of grief later on. If declarations are not required, any typo will create a new variable without you knowing it: if you type lngAmuont instead of lngAmount, you’ll have a new variable that has no connection at all with lngAmount.

      • #630316

        Option Explicit was not checked, and even when I changed it in Options it did not appear in that module. I opened a new module and it DID appear. I went back and re-created the subs from the lesson and everything is working fine now. I suppose you can’t change the options in an active module once the routine has been entered? Anyway, thanks for getting me back on course. BTW, I went back to the original module and just deleated the text “Option Compare Database” and entered the text from the lesson, and the routine worked there as well (although it isn’t Option Explicit). Thanks again for your help.

        • #630317

          [indent]


          I suppose you can’t change the options in an active module once the routine has been entered?


          [/indent] You sure can. All you have to do is type:

          Option Explicit

          as the first line in the module.

          • #630320

            Thanks! I suppose if I’m going to get anywhere with this VBA lesson, I’m going to have to get away from the “point and click” mentality. At 52 it’s even difficult getting past the “…old dog, new tricks.” syndrome. I managed to inherit XP Developer, which got me interested in this whole VBA thing to begin with. Having Developer, with my level of expertise, is a little like giving a Ferrari to a 13 year-old, but, what the hell; I’m willing to give it a shot!

            • #630378

              It’s NEVER to late to “teach and old dog new tricks”.

              I have help someone from South Africa learn VBA who is retired and in their 60’s, so it’s never too late.

              But I’m jealous. Inheriting XP deleloper. Sheesh!!

            • #630413

              I really didn’t “inherit” it so much as it inherited me, I guess. The company I was working for went out of business, and I was offered some of the old equipment at “bargain” prices a few weeks later. Everything had kind of been piled up in one room with boxes of towers, keyboards, monitors, printers, etc. I really was looking to see if the old server was still around or maybe some of the later model PC’s, but most of the “good” stuff had been liquidated. I ended up taking a box that had two towers (one with a tape drive), a bunch of cable, and at the bottom a bunch of loose floppies, manuals, and CD’s. I was going to pull everything out and just dump it into another box, but the cables were all tangled up with everything and there were no empty boxes anyway – so I took the whole thing home to clean out there. It sat in the corner of my home office for 2 weeks before I started going through it all.

              At the very bottom of the box, under all the manuals and scattered floppies was this UN-OPENED box labled “XP Developer”. I didn’t even know what it was. I opened it up and find 7 CD’s inside with things like Media Content, SQL Server, Exchange 2000, Visual SouceSafe, Developer, and Office XP w/FrontPage. I didn’t know what the other stuff was, but I knew what Office XP was and I got, well, a bit giddy. Really, I was like a kid on Christmas morning. Why? Because when I got there I found out that they weren’t taking any checks and I only had $47.00 in cash on me. I knew the tape drive was well worth the money (even though its rather dated) so they took what I had on me just to get rid of the “garbage”.

              Sorry I rambled on so long, but it’s rare that I encounter such good fortune, and felt a need to share with someone who could appreciate the story (my daughters just looked at me blankly and said: “That’s nice”). Anyway, now I feel somehow obligated to learn VBA so as not to jinx the genie in the bottle so to speak.

            • #630477

              Inherited or not. $47 for XP Developer is AWESOME!!

            • #630401

              Now wait just a minute! stop *I’m* over 52, and I’m learning something new every day! baby

              And just for your information, you can always post your questions on Access VBA in the Access forum. There are more Access people hanging out there, and since Access uses different forms and controls than the rest of Office, you’ll probably get faster and more directed answers there … unless Hans and Bryan and a few others happen to be lurking in this forum when you post, of course. grin

            • #630402

              stop Now wait just a minute there Charlotte exclamation

              I DON’T lurk. hmmn

              I hang out grin

            • #630415

              Could have fooled me. shrug Don’t forget, I see you posts in another list … evilgrin

            • #630478

              Or lack there of, you mean question grin

            • #630416

              blush Sorry, I didn’t mean to offend any of my peers! gramps
              Thanks for the forum tip; I will do so in the future.

            • #630420

              I wasn’t offended. I just wanted to go on record as not quite over the hill yet (but I am picking up speed … ) grin

            • #630421

              …and still maintaining a good sense of humor. Gotta love that!
              clapping bravo fanfare

            • #630759

              Not so sure about that. She doesn’t appear to like puns!

            • #630799

              OK, guys, we’ve highjacked this thread, so let’s stop now. jollyroger You can tease me in scuttlebutt. flee

        • #630318

          The setting for Option Explicit is applied only to new modules, as you found out.

          However, you can always add Option Explicit and/or Option Compare Database to any existing module, or remove it if you so wish. After all, a module is just text.

          For your information: there are three forms of Option Compare. They determine how text is sorted and compared

          Option Compare Binary: uses the internal representation of characters, so is case-sensitive. In this setting, A < a <

    • #631269

      I wrote a VBA tutorial that I have gotten a lot of good feedback on. Give it a whirl. It’s on my site (http://www.wolfwares.com) in the General section.

      One thing though, it is written with Access 97 in mind, but I would hazard to guess that 99% of it will work right along with XP.

      Drew

      • #631338

        But if it’s written in DAO, then there has to be a DAO reference set in Access 2000 or 2002, don’t forget. whisper

      • #631506

        Thanks Drew! I finally got around to reviewing it. Very helpful for a newbie!

    Viewing 1 reply thread
    Reply To: Newbie Dumb Question (2002)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: