User Profile

Collapse

Profile Sidebar

Collapse
senort01
senort01
Last Activity: Feb 18 '09, 03:59 PM
Joined: Nov 12 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • senort01
    replied to opener.location.href multiple times
    Sorry, not sure I understand.

    The popup that is redirecting the parent is a different page. The parent gets redirected anytime a form is submitted in the popup and the popup closes (or, at least is supposed to).

    The parent window always gets redirected to the same file, but, technically could have a different URL because there is likely to be different variables. Though, perhaps the problem is that it's not reloading...
    See more | Go to post

    Leave a comment:


  • senort01
    replied to opener.location.href multiple times
    Sure.

    Very simple. I open the window with this:
    Code:
    <a href="/localFile?withVariables" onclick="window.open(this.href, 'editWindow', 'menubar=no, width=550, height=600, toolbar=no, scrollbars=yes'); return false;">Edit</a>
    After I process the data in the popup window I write just this HTML:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    ...
    See more | Go to post
    Last edited by acoder; Feb 18 '09, 09:26 AM. Reason: Added [code] tags

    Leave a comment:


  • senort01
    started a topic opener.location.href multiple times

    opener.location.href multiple times

    Hi,

    I spawn a window, process some information, and then issue opener.location .href to change the location of the parent information. I then close the child window. Works great.

    However, if the user then clicks on a link again on the redirected page and repeats the process (ie, processes more information) the opener.location .href does not change the parent window.

    All of the same code is getting executed....
    See more | Go to post

  • senort01
    started a topic Reading OLE images into image objects

    Reading OLE images into image objects

    Hi,

    I am trying to read an Access database field that contains an OLE image. I simply want to read in the image, and then be able to use the various filters available in WIA 2. What I can't figure out how to do, however, is to simply read out the image data and create an image object that WIA can recognize.

    The only solution I've seen online is to stream the OLE object to a file and then open up the file using WIA. This...
    See more | Go to post
    Last edited by Frinavale; Jan 9 '09, 09:53 PM. Reason: Moved to Access Answers from Insights

  • senort01
    started a topic Access -> DocProperties in Word, Character Limit.

    Access -> DocProperties in Word, Character Limit.

    I am currently populating a word document with data from Access via VBA. I am, however, running into the character limit in the DocProperties that I am populating. Is there a way to override this restriction?

    Am I going to have to revert to using bookmarks to accomplish this task (which would be a pain because there is decent amount of repetitive use of the same data).
    See more | Go to post

  • senort01
    started a topic DocProperty Character Limit

    DocProperty Character Limit

    I am currently populating a word document with data from Access via VBA. I am, however, running into the character limit in the DocProperties that I am populating. Is there a way to override this restriction?

    Am I going to have to revert to using bookmarks to accomplish this task (which would be a pain because there is decent amount of repetitive use of the same data).
    See more | Go to post

  • senort01
    started a topic Accessing Fields without Controls in Reports

    Accessing Fields without Controls in Reports

    This question got lost on the bottom of another thread. Is it the case that you can't access specific fields of a record set without placing a control that's linked to that record on the report?

    I have a number of fields within a database that I want to use to drive some logic within an event. I don't, however, want to drop every field returned by the database into hidden controls on the report.

    There must be a more...
    See more | Go to post

  • senort01
    started a topic Creating a Table in MS Access Reports

    Creating a Table in MS Access Reports

    Is it possible to create a table within MS Access Reports so that horizontal data stays aligned?

    For example, I have two columns of data. The left column is fixed, the right column will be dynamically generated based on data in the table, usually larger text segments.

    I need some way to maintain the horizontal alignment of text on the left side with that on the right. Basically, a simple word like table.
    ...
    See more | Go to post

  • senort01
    replied to Accessing Current Record within On Format
    I spoke too fast.

    My problem has reemerged.

    Here is the very simple code:

    Private Sub Detail_Format(C ancel As Integer, FormatCount As Integer)

    Dim banner As String

    If Me.TAGed = Yes Then
    banner = "Foo"
    Else
    banner = "Bar"
    End If

    Me.TestText = banner


    End Sub
    ...
    See more | Go to post

    Leave a comment:


  • senort01
    replied to Accessing Current Record within On Format
    Thanks everyone.

    I must have mess something else up as I completely started over and now I can see the fields.

    Thanks.
    See more | Go to post

    Leave a comment:


  • senort01
    replied to Accessing Current Record within On Format
    Thanks.

    Is the only mistake I was making that I was using a period as opposed to an !? Or is there something else I need to do to make the record visible within the on format event?...
    See more | Go to post

    Leave a comment:


  • senort01
    started a topic Accessing Current Record within On Format

    Accessing Current Record within On Format

    Hi,

    Stupid question of someone just starting to program in VBA.

    I just want to access the current record in a report within the On Format event so that I can dynamically create various variables based on data stored in a database. I, however, don't have a clue how to reference the data and everything I try results in Run time error '2465: Microsoft Access can't find the field errors.

    Is there a tutorial...
    See more | Go to post
No activity results to display
Show More
Working...