User Profile

Collapse

Profile Sidebar

Collapse
ashjones86
ashjones86
Last Activity: Sep 23 '14, 08:55 AM
Joined: Jun 25 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ashjones86
    replied to Create search form in Access
    Hi NeoPa,
    My apologies for any forum etiquette i failed to follow, will make sure i go through some of the guides and the posts are more efficient to both myself and other users in future posts.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    I Have chosen my own comment as best answer, but ALL credit goes to Slaxer13.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Ok, so found a solution to this, thank you to Slaxer13 who had the patience of a saint with me, back and forth over 150 emails.
    Here is the final code for anyone else it may help .
    Code:
    Option Compare Database
    
    Private Sub cmdAll_Click()
    
        Dim LSQL  As String
        
        'Display all vehicles
        LSQL = "select * from Vehicles"
        
        Form_Vehicles.RecordSource = LSQL
    ...
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Gallery with no-repeat pictures
    Hi PNaaber,

    Well my example wouldn't refresh your page, but just allows for users to click through the images and you can predetermine that nothing will repeat, you can get Jquery to make that auto scroll also, as for your page refresh for adverts, im not sure how that works, but could you not have the adverts on a autoscroll with mapping on them including the href ? or would that not work ?
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Gallery with no-repeat pictures
    Perhaps change it to something that you can define the image in html, so you can manually check nothing repeats, there are hundreds of gallery scripts out there that allow this, but for example.

    Code:
        <div id="gallery">
          <a href="www.yourwebsite.com"><img src="imageurl" alt="#"/></a>
         <img src="imageurl1" alt="#"/>
    ...
    See more | Go to post

    Leave a comment:


  • So do you mean that you are looking for it to create a playlist of sorts that plays one after another ?
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Hi NeoPa,

    So i tried this and got 2 problems with it, in the vb editor the line
    Code:
    Call .Recordset.FindFirst("([Vehicle Model]='" & Text17 & "')"
    is highlighted as red, if i save and ignore it, it brings up a syntax error on this line
    Code:
    Private Sub Command19_Click()
    which is highlighted in yellow.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Ok so its working .....kinda, but it doesn't find anything, so here is the code now -
    Code:
    Option Compare Database
    Option Explicit
    
    Private Sub Command19_Click()
    If IsNull(Text17) = False Then
          Me.Recordset.FindFirst "Vehicle Model" = " & Text17"
          Me!Text17 = Null
          If Me.Recordset.NoMatch Then
             MsgBox "No record found", vbOKOnly + vbInformation,
    ...
    See more | Go to post
    Last edited by NeoPa; Jun 30 '14, 10:50 PM. Reason: Trimming blank lines

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Hello everyone, so with the help of Slaxer13 i have been plodding away, but still with no success, so this is the code im using now, kindly linked by Slaxer -

    Code:
    Private Sub Command19_Click()
    If IsNull(Text17) = False Then
          Me.Recordset.FindFirst "[Vehicles]=" & Text17
          Me!Text17 = Null
          If Me.Recordset.NoMatch Then
             MsgBox "No record found", vbOKOnly + vbInformation,
    ...
    See more | Go to post
    Last edited by NeoPa; Jun 30 '14, 10:50 PM. Reason: Trimming blamk lines

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Spot on cheers, will email now.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Its ok Slaxer, this is my 5th day with Access so i have no idea by comparison, so the table that link you posted shows in design view as a form, im trying to find a means of putting my current table there and change the search options to match that, i have found the search names in the code, so i can change those to match those in the table, but where to add the table instead of the one that is there is baffling me, this is kinda fun though....in...
    See more | Go to post

    Leave a comment:


  • Yeah im guessing you would have to flash the device.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Good Morning all,

    So i have been looking into the code Slaxer13 sent me, and the following line of code.

    Code:
    Private Sub btnSearch_Click()
        
        ' Update the record source
        Me.frmsubClients.Form.RecordSource = "SELECT * FROM qryClientData " & BuildFilter
        
        ' Requery the subform
        Me.frmsubClients.Requery
    End Sub

    Would the line
    Code:
    Me.frmsubClients.Form.RecordSource
    ...
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to embed csv file in an html ?
    I would be looking down the php route for this myself.
    See more | Go to post

    Leave a comment:


  • Hi Mia,

    Nomad is right, it seems odd to see the root directory, it defiantly sounds like a path issue, try and put the css in the same directory as the index and upload, does it work then ? im happy to look at the files if you want to share them, and ill have a quick look into it for you.

    Generally speaking though, like nomad i would be going for something like this
    Code:
    <link rel="stylesheet" type="text/css"
    ...
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Twinny,

    I like these lessons ! again thanks for the effort and the patience, greatly appreciated !

    So it turns out it was something simple, there was a security option to enable the content in the db, once i clicked enable, it then run the code and i go the "It Works" Message.

    Is there any steps i should be taking now to further look into my search function, Btw Slaxer13, i looked into that link you...
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Sorry yes i did click, no pop up.
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Hi Twinny, thanks again for that post, so i did as you said and my code looks like this
    Code:
    Option Compare Database
    Option Explicit
    
    
    Private Sub Command17_Click()
    MsgBox "It Works!"
    End Sub
    Saved, closed and re-opened but no pop up, is it likely im missing something ?
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Hi Slaxer,

    Shall take a look once i have worked through twinny's post, thanks very much mate :)
    See more | Go to post

    Leave a comment:


  • ashjones86
    replied to Create search form in Access
    Before i continue my way though this, thank you for the effort you are putting in here, it is greatly appreciated, and im not looking for someone to make it for me, im a web developer, and know the frustrations of coding for someone, if i wanted that kind of service, i would pay a dev ;) , that said i want to learn vb and work my way through this, these guides written like this help me a lot and i extend my gratitude to you, shall continue working...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...