User Profile

Collapse

Profile Sidebar

Collapse
soule
soule
Last Activity: Oct 16 '12, 11:05 PM
Joined: Jan 10 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • soule
    started a topic What Has Been YOUR Access Career Path?

    What Has Been YOUR Access Career Path?

    Hi, All,

    I just recently returned to the job market and my goal is getting 3+ years of Access developing/programming projects under my belt through an IT or regular agency before I even dare to approach an IT consulting firm. I'm going to target the IT agencies first, and if that doesn't pan out, regular job agencies. I have yet to look into online freelancing. I'm posting to ask your opinion based on how YOU started your Db building...
    See more | Go to post

  • As it turns out, I decided to go back to HTML template, olformatHTML force in code and set my mail type Outlook option to HTML as well.

    Miraculously, when I removed the graphic due to an administrative request, the mail is received perfectly to internal intranet or external internet recipients whether sent manually or through automation!
    See more | Go to post

    Leave a comment:


  • Losing Formatting & Pic Position in Rich Text Template Automated Send

    Hi, Everyone,

    I'm sending an automated e-mail from an Access form button through Outlook.

    My environment is:
    - Access 2007
    - .accdb file
    - Button code in standard module pointed to with event procedures using Call subs
    - Am in datasheet view when compiling/stepping through/running
    - Early binding w/Intellisense
    - Libraries (in this order):
    VB for Apps
    MS Access...
    See more | Go to post

  • soule
    started a topic Can Sub & Form Button Have Same Name?

    Can Sub & Form Button Have Same Name?

    Hi, Everyone,

    I want to click a form button and run code in a STANDARD module (not the "behind the form" class module).

    I noticed the name (not the Caption) of my form button was different than the name of my Public Sub, so I changed the name of my Sub to match the name of the button. I started getting an error message.

    1) Are both Subs and buttons considered objects in Access?

    ...
    See more | Go to post

  • Hi, Rabbit - thanks for looking at my post and code.

    I changed the following and the population (partially) worked:

    - Cleaned up my Replace function statements...na mely changed first parameter to message object and took out quotes of replacement text so it would be treated as a variable and not a string like you recommended. Thanks for that catch.

    - Changed the send mail-type in my Outlook Tools>Options from...
    See more | Go to post

    Leave a comment:


  • Hi, Rabbit -

    Thank you for your time in commenting on this post. Your advice (and NeoPa's) on my VBA has been very, very helpful.

    I can't seem to get two version of my replace function to work:

    This version causes an error 94 "Invalid use of null" on the If IsNull line...

    Code:
    OlMsg.HTMLBody = Replace(OlMsg.HTMLBody, "KnownAs", Forms![A1 Onboarding Tracking Form].[KnownAs])
    ...
    See more | Go to post
    Last edited by soule; Mar 1 '12, 08:27 PM. Reason: Clarity.

    Leave a comment:


  • Replace Function Statements Subverting Automated E-mail

    Hi, Everyone,

    I'm trying to send an automated e-mail from Access through Outlook with a form button click.

    My environment is:
    - Access 2007
    - .accdb file
    - Button code in standard module (for debugging; will move to form class mod. when works)
    - Am in datasheet view when compiling/stepping through/running
    - Early binding w/Intellisense
    - Libraries (in this order):
    VB for...
    See more | Go to post
    Last edited by soule; Mar 1 '12, 01:18 AM. Reason: Clarity.

  • soule
    started a topic Outlook Automation Hanging On Address Book

    Outlook Automation Hanging On Address Book

    My environment is:
    - Access 2007
    - .accdb file
    - Button code in standard module (for debugging; will move to form class mod. when works)
    - Am in datasheet view when compiling/stepping through/running
    - Early binding w/Intellisense
    - Libraries (in this order):
    VB for Apps
    MS Access 12.0 Obj. Lib.
    MS Outlook 12.0 Obj. Lib.
    MS OFC 12.0 Access db engine Obj. Lib.
    MS VB for Apps...
    See more | Go to post
    Last edited by soule; Feb 25 '12, 12:25 AM. Reason: Info.

  • soule
    replied to Error Handling Loop...Stuck Inside!
    Hi, Guido Geurs,

    Thank you for replying! My actual statement doesn't currently wrap in the VBE and I'll be sure to use an underscore when I clean it up. Thanks for the concern.

    Frank
    See more | Go to post

    Leave a comment:


  • soule
    started a topic Error Handling Loop...Stuck Inside!

    Error Handling Loop...Stuck Inside!

    I'm not sure why this code is hanging up. When my user clicks a form button, I'm simply trying to check to see if Outlook is open, and if it isn't, display a message box reminding them to open Outlook. If it is already open, I (obviously) want the code to skip the error code and continue.

    My environment is:
    - Access 2007
    - .accdb file
    - Am in datasheet view when stepping through
    - Early binding
    -...
    See more | Go to post

  • Thanks for replying again, Stewart.

    I'm in a professional situation where I don't have the time or resources to learn the finer points of VB and it's making this project extremely difficult...I'm having to learn VB while I'm creating a Db with e-mail automation buttons and a table structure that demands two fields of redundant data. Thanks for the advice about bookmarking and your time.

    To my understanding, my "DoCmd.RunComma nd...
    See more | Go to post
    Last edited by soule; Feb 14 '12, 06:46 PM. Reason: Additional info..

    Leave a comment:


  • Hello, Stewart,

    Thank you very much for taking a look at my LostFocus code. I really appreciate it.

    Though I know it isn't good Db design, I need to store a value in two tables. I need to so I can update the "used or unused" status of alphanumeric movie codes that will be added to that table and that feed a queried listbox on my form. I have a master table and a detail table. When a user enters a "movie...
    See more | Go to post

    Leave a comment:


  • Hi, ADezii,

    Thanks for taking more time to look at my problem. I inserted the IIf statement in my If..EndIf statement and it worked great. I got an "exact match" message box. Here is my current version of my code. I moved the code from the form class mod to a standard mod in order to be able to compile it. I moved down my "Dim dt As Date" statement to the second procedure so it was closer to the code that uses it....
    See more | Go to post

    Leave a comment:


  • Hello, ADezii. Thank you so much for replying to my problem. This task has given me 3 weeks worth of grief. Here's where I am now:

    1. I don't understand about Bookmarks being supported. Isn't that a DAO library consideration? Why would my code have to verify this every time it ran? Could you please explain?

    2. Do you think this arrangement would work instead?

    Code:
    Dim rs as DAO.Recordset 
      
    Set
    ...
    See more | Go to post

    Leave a comment:


  • Run-time Errorless Bookmark/DLookUp Module Not Working

    In my .accdb, DAO Db, I'm trying to use an AfterUpdate or OnLostFocus event procedure in a class module to populate a date on two tables. My form control is
    bound to the "MovieCodeSendD ate" field on my master table, and I want the field of the same name on my detail table to be populated by the event procedure. I
    have the following code in place which neither produced errors nor works. It first bookmarks the relevant form...
    See more | Go to post
    Last edited by soule; Feb 3 '12, 10:20 PM. Reason: Grammar.

  • soule
    replied to Type Mismatch
    Ya'll were right on both counts. I decided to go with a calculated listbox and only 1 repeating field between two tables, thereby bidding adeiu to this thread and...

    I discovered the joys of DLookup for myself. After reading the definition two months ago and seeing it pop up in code ever since, I see why so many people use it. :D

    Thanks.
    See more | Go to post

    Leave a comment:


  • soule
    replied to Type Mismatch
    I want to put data in a control from a different table field than the control is sourced to.

    In my comment #17, I said I was going to take a new tack. I should have started another thread then. I'll do that now.
    See more | Go to post

    Leave a comment:


  • soule
    replied to Type Mismatch
    Hey, Guys,

    I'm sorry I can't provide table and form views, because my stuff is proprietary to a large movie studio. I really wish I could. I'll give you as much as I can. I can say that I have:

    - (1) Form
    - (1) Primary table named "A1 Tracking Table"
    - (1) Secondary table named "A1 Movie Code Table"

    I altered the structure of my two tables so that the only field they have...
    See more | Go to post
    Last edited by soule; Jan 19 '12, 01:16 AM. Reason: Clarity.

    Leave a comment:


  • soule
    replied to Type Mismatch
    Hey, Everyone,

    Thanks for giving the vb virgin's code hail-mary such attention. How and how much it is and will be appreciated you'll never know.

    NeoPa,
    It's good to know that I can make my form "movie code" control bound to a field and still be populated with data from another table. I think I should go the route of binding it to my main table.

    Rabbit,
    It's sort of B)...I need...
    See more | Go to post

    Leave a comment:


  • soule
    replied to Type Mismatch
    I don't know if I want to use DAO. Ha. That's been my question all along. I can't seem to get a straight answer from any source on what version of Jet engine Access 2007/VB 6.5 uses let alone if it can process DAO, ADO, ADO.NET, ODBC, etc.. Anyways, when I try to add my latest DAO object library (also the MS DAO 3.6) I get a "name conflicts with existing module, project or object library" error msgbox (which I'm thinking isn't likely from...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...