Search results

  1. J

    All Menus & Toolbars missing in Access

    right click then go to customize and check 'menu bar'
  2. J

    Frustrating problem with notes field..

    yeah read that. it basically says your memo field can only be 511 characters.
  3. J

    Have I just lost all the contents of my database?

    so if you press F11 there all of the objects are gone?
  4. J

    How to pull data from database

    youd need to query your table with the info you need and you could sort by agency.
  5. J

    Count how many records????????????????????????

    jw why you need to see it on the form?
  6. J

    Format - listbox

    I'm not sure, but does 'reading order' in the properties work?
  7. J

    Hourglass mousepointer help required..

    very old post, but it helped me alot. instead of trying to use a form saying that my query is loading, I simply used the hourglass cmd. sweet!
  8. J

    List Box Double Click

    well you'd need to alter box names and field names. Also, for the form that is opening you'd need to have some On Load code to find the correct records. There are different ways you can get this to work, play around with it.
  9. J

    List Box Double Click

    Private Sub lstReports_DblClick(Cancel As Integer) Dim sForm As String Dim sArgs As String sForm = "New Event" DoCmd.Close acForm, sForm For Each row In Me.lstReports.ItemsSelected sArgs = Me.lstReports.Column(0, row) 'should be the...
  10. J

    Form's controls 'invisible'

    accidentally changed a form property?
  11. J

    Me.OpenArgs question

    could you interpret this for me If Me.OpenArgs & "" = "" Then
  12. J

    Me.OpenArgs question

    I’m looking through a database someone else made and in the code “Me.OpenArgs” is used quite often. I always thought the “Me. “dealt with an object on the form, but there isn’t any kind of OpenArgs object on the form. I’ve searched on google and the form for some kind of explaination, but I’ll...
  13. J

    Formatting

    tools -> database utilities -> compact and repair
  14. J

    Inserting data into two tables - urgent

    how are the tables updated? from import ? from a form? etc?
  15. J

    problem with data cutting off in memo field

    thanks that answered my question.
  16. J

    problem with data cutting off in memo field

    After looking through all of the entries with strange character endings it appears that after every 512th character these weird characters will appear. Does that help any? Is there some sort of 512 limit for text box or memo?
  17. J

    problem with data cutting off in memo field

    I found a similar problem I guess... http://www.access-programmers.co.uk/forums/showthread.php?t=84405&highlight=strange+characters ... but my problems comes at the end of their entry rather than random places.
  18. J

    problem with data cutting off in memo field

    Thanks gemma, I tried to search for this problem on the forum before I posted but I had no luck. Do you remember which Category on the forum it was in and any key words I should search for?
  19. J

    problem with data cutting off in memo field

    I’m not sure where to post this, but I know my problem arises from either my table or my textbox on my form. My problem is I have a text box on my form where my Managers input text (example below), and at times it cuts off their entries with weird characters. I’m not sure if they have exceeded...
  20. J

    MsgBox - MB MsgBoxEx (Active X Control)

    on the "make your own button" question. Yes you can, if you make a picture your button and just make it function like a button. ie OnClick Event for that picture
Back
Top Bottom