Search:

Type: Posts; User: Beengie

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: Textbox, Radio controls, and label/Span values clearing after JavaScript function

    Ok... for anyone having this same problem, it is due to the controls being nested within a form which would submit to a server....
  2. [RESOLVED] Textbox, Radio controls, and label/Span values clearing after JavaScript function

    I am trying to pass back a value into a label/span using the document.getElementById method in an ASPX file.
    It clears all the values in the form (option labels, textbox, and label/span). I do not...
  3. Re: CreateEventProc Type Mismatch for InputBox

    Well, I figured it out on my own. Looks like I missed the single quotes...
    I will post it in case anyone wants to look into some CreateEventProc. There doesn't seem to be much out there on the...
  4. [Resolved] CreateEventProc Type Mismatch for InputBox

    I am trying to insert code into a module in a new workbook. I am able to create the buttons and code without any issue. However I do have an issue with the Inputbox when it is being placed in the...
  5. Replies
    5
    Views
    815

    Re: Output Drive Contents to file

    Thanks Bobbles, that looks neat. However, I don't need all the bells and whistles and I would like to learn the concepts behind using these techniques. I wish to understand the use of FSO or...
  6. Replies
    5
    Views
    815

    Output Drive Contents to file

    I am trying to get a listing of all the contents on a drive with certain extensions. Then I will be saving this data (not sure what format yet. html, xml, txt, etc.) to a file. Later I will parse the...
  7. Re: Update record error 3251 Microsoft.ACE.OLEDB.12.0

    nice... that's why I only have 236 posts since Nov 03.

    your 28,365 posts Jul 02 are probably mostly this kind of arguing due to you being the biggest know it all of this subject...

    take it...
  8. Re: Update record error 3251 Microsoft.ACE.OLEDB.12.0

    this is a great example, thanks for making my point about some moderators... :wave:
  9. Re: Update record error 3251 Microsoft.ACE.OLEDB.12.0

    Thanks for that link.

    However...
    How does that fall under database development? I am not developing the database...
    If I asked a question about VBA code then it should go to database...
  10. Update record error 3251 Microsoft.ACE.OLEDB.12.0

    Hello,
    I searched for the solution, but I couldn't find a clear answer.

    I am trying to update a record using Microsoft.ACE.OLEDB.12.0 with a MSAccess 2007 DB. I am getting a '3251' error...
  11. Re: Pausing for a return from a different form

    So you are saying that if I use vbModal, it will pause the proceedure at the callout for the form.show line?
  12. [Resolved] Pausing for a return from a different form

    I was wondering how to go about retrieving a value from a listbox on another form while pausing the original proceedure to wait for the value to return. I have a routine that is checking a value...
  13. Thread: Dir function

    by Beengie
    Replies
    6
    Views
    959

    Re: Dir function

    ok, I understand...
    What do I need to do to re-establish the parent dir?
  14. Thread: Dir function

    by Beengie
    Replies
    6
    Views
    959

    Re: Dir function

    Did you try it?
    It prints the parent directory, then it prints all of the directories within that directory.

    It is marked in the code.
    Then I get a runtime error '5'
    Invalid proceedure call or...
  15. Thread: Dir function

    by Beengie
    Replies
    6
    Views
    959

    Dir function

    I am trying to get a couple of levels of directories to list. I am getting an error. It seems to be when the parent directory tries to change. What am I doing wrong?

    Private Sub sDoIt()
    Dim...
  16. Re: Setting contact to appointment / journal item

    Contact item?
  17. Replies
    3
    Views
    755

    Re: Journal entry types [RESOLVED]

    thanks RobDog888
  18. Re: Setting contact to appointment / journal item

    I tried what you posted, but there is nothing in the contacts field for any example I try.
  19. Re: Setting contact to appointment / journal item

    do I need to create a recipient object?

    BTW I am doing this with VBA
    I am not sure if I am on the right track. I am confused when it comes to the "recipients" collection and "recipient" object...
  20. Replies
    3
    Views
    755

    Re: Journal entry types

    FYI...
    From trial and error, I found that programmically you can add a different journal type to a journal entry that is not on the dropdown list. It is not added to the list, but it does become a...
  21. Setting contact to appointment / journal item

    How do you set contacts for appointments and journal items?
  22. Replies
    0
    Views
    362

    Setting contact to appointment

    How do you set the contact for an appointment?
    I cannot find it anywhere in the properties for the "AppointmentItem" object.
  23. Replies
    3
    Views
    755

    Journal entry types [RESOLVED]

    Does anyone know if it is possible to create new entry types for Journal entries?
  24. Replies
    3
    Views
    584

    Re: For each error in collection

    Thank you very much :wave:
    brucevde you can probably tell that I changed the whole thing. I threw out the MS example stuff and started over. Thanks to everyone for helping me understand classes...
  25. Replies
    3
    Views
    584

    For each error in collection

    How do I handle a for each when there are no instances of the class in the collection. I try not to program error traps. I usually do some kind of validation before a variable is passed or a routine...
  26. Replies
    2
    Views
    545

    Re: Interfacing with "Implements"

    thanks,
    I overlooked that when I started changing names... :blush:
  27. Replies
    7
    Views
    577

    Re: Database desperation!

    Check out an older post with good info...
    http://www.vbforums.com/showthread.php?t=355714
    this will get you started on the syntax

    Also, you can do a search for ADO and find much more
  28. Replies
    2
    Views
    545

    [RESOLVED] Interfacing with "Implements"

    I am trying to access subclass properties, but I seem to be using the wrong interface. Here is the code...

    ' in clsEntity
    Option Explicit

    Public ID As String
    Public Layer As String
    Public...
  29. Replies
    15
    Views
    2,158

    Re: How to retrieve data from database?

    Thanks dee-u, :wave:
    I think I have a better understanding of why I am using ADO. I have not learned the many other uses of it.

    Could you show an example of using ADO with an email and a...
  30. Replies
    17
    Views
    971

    Re: help for calling report of access

    Can't you use the .MDB without having Access installed?
    I was under the impression that you would install the drivers needed to create a .MDB when your application installs the required dlls...
  31. Replies
    15
    Views
    835

    Re: Multiple Classes in Collection?

    Why Set?
  32. Replies
    15
    Views
    835

    Re: Multiple Classes in Collection?

    Why Set/Get?
    I thought that Set was for creating new instances.
  33. Replies
    15
    Views
    835

    Re: Multiple Classes in Collection?

    I am sorry for confusing you guys. It really shows how confused I am with the OOP area. Although I understand ADO (go figure). I am trying to set up a very basic drawing program, and I realized that...
  34. Replies
    15
    Views
    2,158

    Re: How to retrieve data from database?

    Hey, where's kaushiks? :)

    I_Love_My_Vans -
    You might want to change the order of that list. :wave:
  35. Re: Revoked -Trap URL click inside a application

    I think you need to find code for TCP/IP trapping like a firewall, and find out if your application is the one sending a request. I would search the web. I found no hits here at vbforums.com. I...
  36. Replies
    36
    Views
    1,912

    Re: Drag and drop at run time ..

    Your post is confusing.
    Please describe what you would like to do clearly and you will get help. :)
  37. Replies
    15
    Views
    2,158

    Re: How to retrieve data from database?

    Your post popped up after I saved mine. It looks like it took me over 10 minutes to post that code. :)
    It is always good to show new users different ways and have a discussion about them. That...
  38. Replies
    15
    Views
    835

    Re: Multiple Classes in Collection?

    Thanks, I will try it out but...
    Wouldn't I need to ad the Parentheses?
    Option Explicit

    Private mvarStartPoint() As Double

    Public Property Let StartPoint(Index As Integer, ByVal vData() As...
  39. Replies
    15
    Views
    2,158

    Re: How to retrieve data from database?

    I forgot the references...
    You need to reference "Microsoft ActiveX Data Objects 2.x Library"

    I_Love_My_Vans version is DAO, mine is ADO

    There are many discussions on these two methods. Both...
  40. Replies
    15
    Views
    2,158

    Re: How to retrieve data from database?

    Basically...

    ' the main form
    Option Explicit
    Public cn As ADODB.Connection
    Public rs As ADODB.Recordset

    Public Sub myDBcn(ByVal cnGate As String)
    ' opens or closes the database connection...
Results 1 to 40 of 243
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width