User Profile

Collapse

Profile Sidebar

Collapse
Forest14
Forest14
Last Activity: Jan 9 '07, 07:50 AM
Joined: Dec 12 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Yes, that's exactly what I'm looking for!
    See more | Go to post

    Leave a comment:


  • I mean Field description which is displayed in the status bar when this field is selected. Sorry for misunderstandin g.

    I was thinking about another mean of getting to the point:
    for example: a text popup showing when hovering over the field on table or form view.

    thanks!!!
    See more | Go to post

    Leave a comment:


  • Table "positions" is made of 160 fields but there are no field definitions
    I am looking to add automatically the definitions of these fields by importing them from table "defintions "
    Table definitions includes the following fields:
    "Field" which actually matches the "positions" table fields names.
    and "definition "

    THank you
    See more | Go to post

    Leave a comment:


  • Import table Fields definitions from another table

    Hello! Happy Christmas/holidays to you all

    I have this huge table named "Positions" with more than 160 fields of which the fields are named with non obvious abbreviations.
    I have another table named "definition s" which has the column name and definition fields.

    In order to help me all along my forthcoming developments, I would like to use these definitions from table "definition s"...
    See more | Go to post

  • Forest14
    replied to VBA SQL Where statement syntax
    thank you guys for this great "cursus"
    I feel like a genius at VB now :)
    See more | Go to post

    Leave a comment:


  • Forest14
    replied to VBA SQL Where statement syntax
    Thanks for help.
    Now you can enjoy the week-end.
    Here is the code I used to requery the dropdown list of a combo while typing:
    Code:
    Private Sub Setnamecbo()
        Dim strcboSQL As String
        Dim strWhere As String
        Dim itemVal As Variant
        Dim accListcbo() As Variant
        Dim lngLen As Long
        Dim msg As String
        
       
        strcboSQL = ""
    [namecombo].SetFocus
    ...
    See more | Go to post

    Leave a comment:


  • Forest14
    started a topic VBA SQL Where statement syntax

    VBA SQL Where statement syntax

    Hello,

    I have been trying to solve this issue for long and need help from you guys!
    Here is the point:
    Looking to get the following SQL into VBA:

    SELECT Securities.Name , Securities.ISIN
    FROM Securities
    WHERE (((Securities.N ame) Like [Forms]![Securities Search tool]![namecombo] & "*"))

    Apparently my WHERE condition syntax is wrong:
    Code:
    "WHERE (([name] Like
    ...
    See more | Go to post

  • Forest14
    replied to query from Form to Subform
    Hello guys,
    thank you for your posts, were really helpful.

    Here is the code I could get to work:

    Code:
    Private Sub SetSQL()
        Dim strSQL As String
        Dim strWhere As String
        Dim itemVal As Variant
        Dim accList() As Variant
        Dim count As Integer
        Dim lngLen As Long
        Dim messqge As String
        
        strSQL = ""
    ...
    See more | Go to post

    Leave a comment:


  • Forest14
    replied to query from Form to Subform
    I don't get your first question, do you mean how do i get the info on the main form?
    If your question is related to the SQL needed to update the subform, it is definitely part of my request!

    The individual options names in the option group are:
    -option1account
    -option2allaccou nts

    thanks a lot !...
    See more | Go to post

    Leave a comment:


  • Forest14
    started a topic query from Form to Subform

    query from Form to Subform

    Hello,
    Almost a newbie at VB and First time question in this forum!

    I have a form "MAIN" with:
    - 2 unbound textboxes ("startdate" and "endate")
    - 1 optiongroup with 2 options (value "1" & "2")
    - 1 unbound multiselect listbox "accountlis t" shown if optiongroup value is "1" taking its (grouped) values from transactions table.
    and a Subform "SU...
    See more | Go to post
No activity results to display
Show More
Working...