Search results

  1. M

    Changing SQL of the Query on the 'fly'

    Thnx, now I see what You had in mind. Thank You
  2. M

    Changing SQL of the Query on the 'fly'

    Could You post links to posts where the IFF examples can be seen? Thank You
  3. M

    Changing SQL of the Query on the 'fly'

    [SOLVED] Changing SQL of the Query on the 'fly' Yes, I tried that, it works just as filtering the report with VBA, but the problem was with parenthesis in SQL. I just wanted to say that for future reference if someone has the same problem as I did ... Thank You
  4. M

    Moving from VB6 to VB in Visual Studio 08

    I'm using Access 2007 and VBA to build desktp application with accdb back end databases. What is the difference between two versions of the VB language? What things would I need to keep in mind if I would start to build programs in Visual Studio (desktop applications with Visual Studio)? Could...
  5. M

    Changing SQL of the Query on the 'fly'

    [SOLVED] Changing SQL of the Query on the 'fly' No because this query ... : ...,and this query: ... don't return the same result. The second query returns R00 - R07 results for the 802 group. It returns correct results for the 801 group, but for 802 those (R00 - R07) I don't want.
  6. M

    Changing SQL of the Query on the 'fly'

    Thank You guys for Your advices, but I found out what was the problem. Apparently the Access makes difference when You create SQL in queries with and without ")" sign, which is put there by default when You use query builder. The query that worked before my problem had ")" because it was...
  7. M

    Changing SQL of the Query on the 'fly'

    The reason I need to change the query SQL is because: I have report which source is table. When I create filter in the reports on load event the data is not displayed as I want it to. The query with the same filter as report extracts data properly. When I say filter I mainly mean in the WHERE...
  8. M

    Changing SQL of the Query on the 'fly'

    Thank You guys, will try it :)
  9. M

    Changing SQL of the Query on the 'fly'

    Can I change the SQL of the query, which is record source, with VBA? Thank You
  10. M

    Web Application Reports

    Anyone? ... Was my question clear enough? ...
  11. M

    Question Connecting it all together (multiple modules)

    No, I'm searching the way to open another access database with the click of the button on form.
  12. M

    Question Connecting it all together (multiple modules)

    When I say "modules" I mean several Access 07 database files that act as separate programs and can work each on its own, but also You can use them all together, they ware all connected to the same back end database. So to simplify the question, I'm asking should I create separate database with...
  13. M

    Question Connecting it all together (multiple modules)

    I've split my main application in several different program modules. Now, I need to connect it together. I'm asking for advice what is more better to do. The way I'm thinking right now is, because I have several modules (access 07 databases), to create one more which will serve as main menu...
  14. M

    Display Image on Form

    I'm using Access 2007. Can I, and how, create picture uploading in database functionality, and to display the uploaded image for each record in table? Thank You
  15. M

    Question Transfer data from Access to MySQL

    Thanks guys, will search there :D One last thing I wanted to ask here to hear Your opinion: If I use Access as MySQL front end, and the database is hosted to online web host, can I connect and how to that database (through internet), and will the performance suffer? Thank You
  16. M

    Question Transfer data from Access to MySQL

    Thanks, You gave me the answer. I forgot access has append query, because I've never used it :D Yes, I could link to MySQL database and use access as front end. Could someone give me some tool I could manipulate the MySQL database (create tables without typing SQL code). Thank You
  17. M

    Question Transfer data from Access to MySQL

    If I populate access database with some data, what would be the best and easiest way to transfer that data to MySQL database? Is there some software or automated way, or I need to do some web programming to create this myself? Thank You.
  18. M

    Question Global Variable

    Thank You guys for last couple of answers, they clarify a lot
  19. M

    Question Global Variable

    Here's what I've tried to explain, the scenario: ... Option Explicit Dim txtVar as string txtVar = "Z00" private_sub btn1_click() ... & "WHERE tbl1.txt1 = '" & txtVar "';" ... private_sub btn2_click() ... & "WHERE tbl1.txt1 = '" & txtVar "';" ... When I put it this way I think my real...
  20. M

    Question Global Variable

    I've tried what You suggested, but I still don't have the answer can I, and how achieve this what I have in mind. Is it possible to do this and what is the way? Thank You
Back
Top Bottom