User Profile

Collapse

Profile Sidebar

Collapse
Hutch
Hutch
Last Activity: Oct 28 '08, 07:47 PM
Joined: Mar 12 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hutch
    started a topic Insert Page into window

    Insert Page into window

    So here is hwat i am trying to do i have a web page and i'm trying to link a blog so it will appear on the web site.
    [html]
    <html>
    <head>
    <title></title>
    </head>
    <body>
    http://p3square.org/cgi-bin/cblog/index.php
    </body>
    </html>
    [/html]
    I got this but when i paste it into a window it seems to...
    See more | Go to post

  • Hutch
    replied to Ole
    Adhoc? Popup? how would i go about this....
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Setting the ***** password in a inputbox
    No offense taken i'm still learning....
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Return result from Message Box
    This worked great thank you....
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Window priority above other apps.
    Dim wFlags As Long, lngX As Long
    wFlags = &H10 Or &H40
    lngX = SetWindowPos(Ap plication.hWndA ccessApp, -2, 0, 0, 0, 0, wFlags)

    I figured out that the H10 and H40 was the cause of the screen movement, I changed them to 2 and 1 like in the previouse code but kept the -2. this works great.
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Window priority above other apps.
    That code take the window minimizes it and move it into the tope left corner of my screen.
    See more | Go to post

    Leave a comment:


  • Hutch
    started a topic Ole

    Ole

    I need all the help i can get on this one, even if someone could point me in the right direction. I want to store a pdf file for every Form i have in my database, it is going to be linked to a button on the form so when clicked this pdf will pull up and be like a "Help" document. I want it to be inside the database instead of linking it to another folder which is what i am doing right now with the Shell command. any help as always is very...
    See more | Go to post

  • Hutch
    replied to Setting the ***** password in a inputbox
    Of the topic what is an API?...
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Window priority above other apps.
    So check it out i am using this code in a command click button now. Sometimes i want it to remain above other apps other times i don't so far i have this

    Private Sub Pri_Click_Click ()
    If Me.Pri_Click = True Then
    Dim wFlags As Long, lngX As Long
    wFlags = &H2 Or &H1 Or &H40 Or &H10
    lngX = SetWindowPos(Ap plication.hWndA ccessApp, -1, 0, 0, 0, 0, wFlags)
    If Me.Pri_Click = False Then GoTo...
    See more | Go to post

    Leave a comment:


  • Hutch
    started a topic Setting the ***** password in a inputbox

    Setting the ***** password in a inputbox

    How do i get the ****** to appear insted of text when it is an inputbox? and not a box inside a form. here is the code i am using

    [code=vb]
    Public Function bDisableBypassK ey_Click()

    'This allows a programmer to set the password via a button while accessed in the program.

    Dim strInput As String
    Dim strMsg As String


    strMsg = "Do you want to...
    See more | Go to post
    Last edited by JKing; Sep 12 '07, 09:14 PM. Reason: [CODE] Tags

  • Hutch
    started a topic Return result from Message Box

    Return result from Message Box

    Ok so i have to following code.
    [code=vb]
    Private Sub Command218_Clic k()
    On Error GoTo Err_218Click

    DoCmd.SendObjec t acSendNoObject, , , "Daveh@specsale s.com", , , "Request for Partition Drawing"
    Me.Text219 = "Waiting on Drawing."
    Exit_218:
    Exit Sub
    Err_218Click:
    GoTo Exit_218

    End Sub
    [/code]
    now before the "Send...
    See more | Go to post

  • Hutch
    replied to Balloons in Word
    I am just using VBA, and i have no idea what a tool tip is?
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Issues with docmd.
    Yup it's checked. what the heck!?!
    See more | Go to post

    Leave a comment:


  • Hutch
    started a topic Issues with docmd.

    Issues with docmd.

    In access when ever i begin to type i get windows at certain points. example

    when i type docmd. i get a little window that gives me options
    but in word it doesnt do it for me. how can i turn this on?
    See more | Go to post

  • Hutch
    replied to Balloons in Word
    This code is not working, here is what i am doing


    Private Sub label1_MouseHov er(ByVal sender As Object, ByVal e As System.EventArg s)

    Handles label1.mousehov er

    If label1 = "SpecSales" Then
    Picturebox1 = "Test"

    Picturebox1.Vis ible = True
    Picturebox1.Top = label1.Top
    Picturebox1.Lef t = label1.Left
    End Sub...
    See more | Go to post

    Leave a comment:


  • Hutch
    started a topic Balloons in Word

    Balloons in Word

    Does anyone know how to make a Balloon pop-up over a certain text when you mouse over it? The ballon would contain predetermed text. Any help would be great thanks.
    See more | Go to post

  • Hutch
    replied to Shell Command not working
    opps i posted the wrong link, it's an app im trying to run. look at this code

    Private Sub Command5_Click( )
    Shell "Explorer \\Specserv\spec sales\User Data\User Database\Call Logs.mdb"
    End Sub

    This actually opens the code i had to add "Explorer" to the begining of it. But now i get a prompt asking me if i am sure i want to Down Load the file. How do i get rid of this?!
    See more | Go to post

    Leave a comment:


  • Hutch
    replied to Shell Command not working
    Still no work any thing else?
    See more | Go to post

    Leave a comment:


  • Hutch
    started a topic Shell Command not working

    Shell Command not working

    Private Sub Command5_Click( )
    Dim TaskId As Variant
    TaskId = Shell("[C:\Documents and Settings\daveh\ My Documents\1011. pdf]")
    End Sub

    For some reason this code is not working i have checked the path name several times and it is correct, Any thoghts. Thanks in advance.
    See more | Go to post

  • Hutch
    replied to Filter unchecked box
    Me.Filter = "((Check Box=False))"

    Here is the correct one
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...