Flick through records    ASP / VB / Access

Hi Guys,
This problem im a little stuck on and wondered if I can do
this on 1 page?
I have a set of pages...
Page 1 shows a list of folders to enter.
Page 2 Shows the contents of the folder selected in page 1
Page 3 Shows the record and data and pic from the selected
record on page 2..
Simple and it all works fine, and with support I recieved
here I have suitable navigation on the pages that lets you go back
and forth through the set of pages...
So I showed my friend who liked it and said!! Just 1 thing!!!
On page 3 once ive seen that record I want to navigate
through the rest of the records without having to go back to page 1
or 2......
Now Im thinking about it but am unsure as Page 3 has a
recordset thats drawn from an url parimeter thats passed and only
pulls 1 record so I have no other records to flick through on that
page/recordset ??
I wonder if any of you guys could offer suggestion.
Thank You
Tag

Sorry For the post I have solved this one myself...
Thanks anyway
Tag

Similar Messages

  • Uk date format issue with ASP and Access Database

    I have an Asp form which updates records in an Access
    database. Problem is
    that the date format in the database record is dd/mm/yyyy
    (UK), when
    the record is displayed on the form it is mm/dd/yyyy(US)
    which after I
    update the record in the database the date has changed to the
    new format.
    I have tried everything I can to change the format but to no
    avail...anyone any ideas how I can resolve this issue?
    Thanks
    Steve

    stevo.s wrote:
    > Hi
    >
    > I have tried changing the format on the date field on
    the server behaviours
    > panelto ddmmyyy. Also have tried to set the form field
    format to ddmmyy. I have
    > also tried to use a function I got from a posting
    somehwere on the net to no
    > avail. <%function ddmmyyyy(varDate)
    > ddmmyyyy = Day(DateValue(varDate)) & "/" &
    Month(DateValue(varDate))
    > & "/" & Year(DateValue(varDate))
    > end function
    >
    > I believe that this is a recognised issue with
    Dreamweaver and Access but
    > can't seem to grasp the work around! Problem being I am
    teaching myself through
    > books and internet articles and can be weeks at a time
    without being able to
    > look at the issue..each time I come back to it it is
    like starting all over
    > again! I was hoping that somewhere out there there is a
    simple solution the
    > issue perhaps a date picker with the built in
    functionality to address the
    > issue...I am keen to understand how to deal with the
    issue rather than just
    > change my database date field to fudge the problem as I
    am in the UK and when I
    > eventually start to use the application I would like
    there to be some
    > consistency with dates and that users are familiar with
    the format.
    >
    > Any help gratefully received!
    Its not Dreamweaver, or Access, its your servers locale, its
    set to US
    format, not the UK.
    On your page at the top use:
    <% Session.LCID = 2057 %>
    This will force the page into using UK formatted dates. Use
    it on any
    page that needs to format the page correctly.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Copying records from MS Access to Oracle ODBC

    I have a linked table from Oracle to an MS Access DB table. I am trying to "upsize" many records from the original MS Access DB table to one mirrored in Oracle.
    All is well save for the currency field in the original MS Access table. If I change the field to number or something from currency in Access, I will lose the formatting and potentially the data.
    I've tried several number combinations in the Oracle table but while I can copy and paste the records from the Access table to the linked Oracle table without getting any errors, when I query the records in the Oracle table it just shows pounds signs.
    Is there a certain number format in Oracle I should use for this?
    Is there a definitive way to make that work?
    I'll take any feedback I can get on this.
    Thanks.

    ok, this is still a bit insane. I copied all the records over, and in the MS Access ODBC linked part, I see the numbers correctly.
    After running various queries in Oracle, all are still showing #s unless it's a 0 value.
    i.e.
    SQL> SELECT LOAN_BALANCE FROM SEPTEMBERUPLOAD1A WHERE AUTOID < 30;
    LOAN_BALANCE
             .00
             .00
    29 rows selected.So then the question is, while I assume the data is in there potentially, and correct at that, is there a formatting trick I need to apply when querying the data through Oracle? Will people just see the pound signs? Let's say I'm later writing a Perl (yuck!) or Java (yeaaaah!) app on the web to view the data, will people see # signs? Or will they see double/decimal type figures?
    never mind....I guessed using the TO_CHAR function to retrieve it...I see that's what you do.
    SQL> SELECT TO_CHAR(LOAN_BALANCE) FROM SEPTEMBERUPLOAD1A WHERE AUTOID < 30;
    TO_CHAR(LOAN_BALANCE)
    0
    27786.16
    19864.43
    123670.56
    38820.51
    1417502.28
    101465.81
    90724.64
    127566.76
    62615.79
    74805.47
    17925.83
    122796.58
    103719.01
    72914.53
    169919.59
    33181.53
    0
    29623.22
    34192.74
    82956.63
    14387.6
    37506.27
    78149
    56214.33
    116728.95
    62696.78
    94718.46
    48605.89
    29 rows selected.Thanks!
    Message was edited by:
    user515689
    Message was edited by:
    user515689

  • Flash --- ASP --- Ms Access

    Hi
    i am trying to prepare a Phonebook using Flash, ASP, Ms Access
    i got this from the net
    These are the Codes
    IN Scene 1, Layer 1, Frame 1
    onClipEvent(data)
    strName = Name;
    strAge = Age;
    strPosition = "Record " add String(CurrentRecord+1) add " of " add String(TotalRecords);
    onClipEvent(load)
    CurrentRecord = 0;
    loadVariables ("getdetails.asp?Record=0", this);
    IN Previous Button
    on (release)
    CurrentRecord--;
    if (CurrentRecord == -1)
        CurrentRecord = TotalRecords-1;
    loadVariables ("getdetails.asp?Record=" add String(CurrentRecord), this);
    IN Next Button
    on (release)
    CurrentRecord++;
    if (CurrentRecord == TotalRecords)
        CurrentRecord = 0;
    loadVariables ("getdetails.asp?Record=" add String(CurrentRecord), this);
    when i try to run it show me the Syntax error
    Please anyone help me out

    Create an Empty MovieClip on Stage
    Select the MovieClip and open the AS Panel and do paste the code(Do Not paste in frame but paste it in MovieClip)
    onClipEvent(data)
    strName = Name;
    strAge = Age;
    strPosition = "Record " add String(CurrentRecord+1) add " of " add String(TotalRecords);
    onClipEvent(load)
    CurrentRecord = 0;
    loadVariables ("getdetails.asp?Record=0", this);
    // Create one Next Button inside the MovieClip and paste the script on Button
    on (release)
    CurrentRecord++;
    if (CurrentRecord == TotalRecords)
        CurrentRecord = 0;
    loadVariables ("getdetails.asp?Record=" add String(CurrentRecord), this);
    //Similarly create one Previous buttoninside the movieClip and paste in on button script.
    on (release)
    CurrentRecord--;
        if (CurrentRecord == -1)
        CurrentRecord = TotalRecords-1;
    loadVariables ("getdetails.asp?Record=" add String(CurrentRecord), this);

  • I am having problems with cover flow on my i phone when i change to landscape and flick through covers it is very unstabale and jerky and eventually crashes out.

    i am having problems with cover flow on my i phone 4s 32gb when i change to landscape and flick through the album covers it becomes very jerky and unstable and eventually crashes out.

    A PC can have more issues connecting than a Mac.
    But it really should not matter.. so just try it in situ.. press and hold the reset.. once it starts up, it will return to default IP, 10.0.1.1 the PC should then be able to find it via the airport utility.
    If not drag it over to the Mac and plug in there by ethernet.. or since it is a laptop, really should not be that difficult to drag the Laptop and plug it into the TC.
    Important thing is to get access to the TC.
    The Mac if it is running lion, then you MUST download and install 5.6 airport utility to do anything useful.
    http://support.apple.com/kb/DL1482

  • IC-AX412 MP3 recorder: can't "access" M2 card

    IC-AX412 MP3 recorder: can't "access" M2 card. That about says it all. The recorder works fine until I insert the Sandisk 8GB M2 card, at which point everything stops and the message "Accessing" appears on the display, won't go away, and I have to shut down the recorder and take out hte batteries. AND there is no way to UN-write-protect a Sandsk M2 card. How do I find out where th problem is?

    Thank you for the prompt reply. I finally figured it out. The problem isn't the card or the recorder; It's Sony's moronic refusaal to accommodate Apple computers. I'm on a Mac. Does the software that came with the IC recorder run on any non-Windows computer? No, it does not, although the tech I chatted with on your website was unaware of that fact. He was unaware that any app with a name ending in ".exe" won't run on a non-Windows computer.
        The card was brand new and unformatted. I inserted it, got the results I described and didn't know what to do, So I read the manual and found the note about formatting the card using the recorder. That claearly was a non-starter, so I plugged the recorder with the card still in it into the Mac. Both card and recorder appeared onscreen as individual volumes. I opened the Mac Disk Utility and formatted both of them.  Problem solved. Redorder now recognizes card.
    Thanks for all your help, guys.
    yours,
    Birck Cox

  • Pass-through recording with Canon ZR25

    I have an older Canon ZR25.  Is it capable of pass-through recording from a VCR?  I can plug the VCR to the camera, and the camera to the computer via the firewire, but can't get anything to work.  Is my only option to actually record the VCR tape on the mini DV tape in the camcorder first, then transfer that to the computer?

    Hi Miniviolet,
    For assistance with this, please contact us here.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • PO Upload through recording

    Hello All,
    I m writing upload program for PO through recording (SM35). I m facing problem at item level. I have hundred of items to upload. At item level grid there is no button like 'Insert Row'. In actual screen it is done through scroll bars of grid. It generates BDC_Code of Enter/Return. But when I run this recording (or generated program) even in SM35 it doesn't write records more than that of grid rows (visible rows) and gives error message that material group column is not writable. Actually it doesn't consider scroll bar pressing as new record entry in recording and tries to overwrite on last row that is already written. If I give row no greater than that of visible rows, it gives error. I have no problem for Condition entries because 'Insert Row' button is available there.
    Please tell me how I should handle this problem in recording?
    Regards
    Nadeem

    Hi Nadeem,
    I don't know on what release you are on. But BAPI_PO_CREATE1 does have the possibility of adding conditions. Furthermore, as far as I know, you can use an arbitrary package number just to relate the PO-item and the relevant Services. Just start with '0000000001' for the first PO-item and add 1 for any next item.
    The checks executed during screen processing should be the same  when executing using a BAPI.
    Regards,
    John.

  • Insert records into an Access

    I am trying to insert records into an Access document but
    when trying to execute the action page I get the following:
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft Access Driver] Too few
    parameters. Expected 1.
    The error occurred in
    C:\ColdFusion8\wwwroot\ASK\AskAction.cfm: line 17
    15 :
    16 :
    17 : values ('#trim(form.qname)#', '#trim(form.email)#',
    #DateVariable2#, #Val(form.Mathques)#, '#(form.quest)#')
    18 :
    19 : </cfquery>
    SQLSTATE 07002
    SQL insert into table1 (qname,
    email,qdate,recipient,question) values ('bill', '[email protected]',
    13-Oct-08, 0, '45x9 ')
    VENDORERRORCODE -3010
    DATASOURCE ques
    Resources:
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0;
    SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506;
    InfoPath.2)
    Remote Address 0:0:0:0:0:0:0:1
    Referrer
    http://localhost:8500/ask/ASKform.cfm
    Date/Time 13-Oct-08 09:07 PM
    Stack Trace (click to expand)
    thanks,
    Steve

    what are your data types for the recipient and qdate columns?
    - you could try putting quotes around the date object, i always
    forget if they're needed or not with date objects

  • Finder (Mavericks) crashes when flicking through images

    Finder (Mavericks) crashes when I flick through images in cover-flow mode, it has happened several times.
    I hope Apple gets aware of this, and corrects in 10.9.1

    This is a MAJOR bug, and MUST get TOP priority - ASAP.
    It makes the OS almost impossible to use.

  • Flicking through tabs in a single window

    I wanted to show you a screengrab of the Cell Options (cmd-option-B) with the 4 tabs in it (text, strokes and fills, rows and columns, diagonal lines), but ok, I've explained what I wanted to show you.
    Can you flick through each tab from the keyboard, meaning not using your mouse to click on them?

    Bob's wrong -- you can't add custom shortcuts to the inside of dialogs.
    But you are wrong in stating "I don't want to create a shortcut, I wanted something that was built into ID." -- because all shortcuts you can define behave exactly as "built into ID"
    To return to your question: usually, in regular Windows programs, you can "tab" to the tab bar and use the left and right arrows. For some reason (interplatform compatibility?) Adobe chose not to use regular Windows controls. They do all their own drawing, with all advantages (such as having a distinct own style on both Mac and Win) and disadvantages (the usual Windows keys for common controls do not work ... such as selecting an item in a drop-down list by typing ahead). You are at the mercy of what they included ... Fortunately, they thought of Tab controls. Hit Ctrl+1 to (number of tab controls) to activate that tab immediately.

  • Flicking through pages in iCal

    I would like to be able to flick through pages in iPhone's iCal by swiping left or right (just as that is possible in the iPhone's photo viewer). Is that possible?
    Now I'm using the tiny left and right arrows on the top of the page to go to a next day / month which is a bit tedious.

    Hi Ingo
    Thanks. I wasn't aware of that. I've posted my request there. Keep my fingers crossed for now. Hope to be able to use them for swiping through the days in future.
    Cheers
    Gert

  • Reading a record by key access.

    Hi Gurus,
               In 'read table' for reading a record by key access they have used 'comparing' , 'transporting' , 'assigning'.
    Can you please explain me what exactly the above will happen with an clear example.
    Thanks,
    Prabu S.

    mostly you wont need these
    but still: from documentation:
    READ TABLE - transport_options
    Syntax
    ... [COMPARING { {comp1 comp2 ...}|{ALL FIELDS}|{NO FIELDS} }]
        [TRANSPORTING { {comp1 comp2 ...}|{ALL FIELDS} }] ... .
    Effect:
    The addition COMPARING compares the specified components comp1 comp2 ... (or the subareas or attributes thereof) in a found
    line before they are transported with the corresponding components of the work area. If ALL FIELDS is specified, all components
    are compared. If no NO FIELDS is specified, no components are compared. If the content of the compared components is
    identical, sy-subrc is set to 0. Otherwise it is set to 2. The found line is assigned to the work area independently of the result of
    the comparison.
    If the addition TRANSPORTING is specified, only the specified components comp1 comp2 ... (and their subareas) in the found line
    are assigned to the corresponding components of the work area (or their subareas). If ALL FIELDS is specified, all the
    components are assigned.
    COMPARING must be specified before TRANSPORTING. The components comp1 comp2 ... are specified according to the rules in
    the section Specifying Components. This is subject to the restriction that after TRANSPORTING, attributes of classes cannot be
    addressed using the object component selector, and after COMPARING, this is only possible as of release 6.10.

  • Looping through records

    New to PL/SQL and wondered if you can simply loop through records in order to ouptut as single string in a file?
    DECLARE
    v_string_rec VARCHAR(4000);
    type v_cols is record;
    BEGIN
    FOR rec IN (SELECT * FROM PLAY_OWNER.STG_CUSTOMER)
    -- somehow need to get the single record into record var then loop through that?
    LOOP
    FOR i IN v_cols.FIRST .. v_cols.LAST
    LOOP
    v_string_rec := recs(i) || v_string_rec;
    END LOOP;
    DBMS_OUPTPUT.PUT_LINE (v_string_rec);
    -- UTL_FILE operations, insert rows
    END LOOP;
    END;
    Give me a slap by all means, as I say kind of new to this

    Just as a curiosity, using some xml capabilities we can obtain a strig concatenation of all columns of a given query this way:
    SQL> with t as
      2  (select xmltype(dbms_xmlgen.getxml(DBMS_XMLGEN.newContext('SELECT * FROM emp'))) doc
      3     from dual)
      4  select extract(column_value,'//text()') myrow
      5  from t, table(xmlsequence(extract(t.doc,'/ROWSET/ROW')));
    MYROW
    7369SMITHCLERK790217-12-198080020
    7499ALLENSALESMAN769820-02-1981160030030
    7521WARDSALESMAN769822-02-1981125050030
    7566JONESMANAGER783902-04-1981297520
    7654MARTINSALESMAN769828-09-19811250140030
    7698BLAKEMANAGER783901-05-1981285030
    7782CLARKMANAGER783909-06-1981245010
    7788SCOTTANALYST756619-04-1987300020
    7839KINGPRESIDENT17-11-1981500010
    7844TURNERSALESMAN769808-09-19811500030
    7876ADAMSCLERK778823-05-1987110020
    7900JAMESCLERK769803-12-198195030
    7902FORDANALYST756603-12-1981300020
    7934MILLERCLERK778223-01-1982130010
    14 rows selected.And all the single attribute values this way:
    SQL> with t as
      2  (select xmltype(dbms_xmlgen.getxml(DBMS_XMLGEN.newContext('SELECT * FROM emp'))) doc
      3     from dual)
      4  select extract(column_value,'//text()') attribute_value
      5  from (select column_value myrow
      6          from t, table(xmlsequence(extract(t.doc,'/ROWSET/ROW')))
      7        ) r, table(xmlsequence(extract(r.myrow,'/ROW/*')));
    ATTRIBUTE_VALUE
    7369
    SMITH
    CLERK
    7902
    17-12-1980
    800
    20
    7499
    ALLEN
    SALESMAN
    7698
    20-02-1981
    1600
    300
    30
    7521
    WARD
    SALESMAN
    7698
    22-02-1981
    1250
    500
    30
    7566
    JONES
    MANAGER
    7839
    02-04-1981
    2975
    20
    7654
    MARTIN
    SALESMAN
    7698
    28-09-1981
    1250
    1400
    30
    7698
    BLAKE
    MANAGER
    7839
    01-05-1981
    2850
    30
    7782
    CLARK
    MANAGER
    7839
    09-06-1981
    2450
    10
    7788
    SCOTT
    ANALYST
    7566
    19-04-1987
    3000
    20
    7839
    KING
    PRESIDENT
    17-11-1981
    5000
    10
    7844
    TURNER
    SALESMAN
    7698
    08-09-1981
    1500
    0
    30
    7876
    ADAMS
    CLERK
    7788
    23-05-1987
    1100
    20
    7900
    JAMES
    CLERK
    7698
    03-12-1981
    950
    30
    7902
    FORD
    ANALYST
    7566
    03-12-1981
    3000
    20
    7934
    MILLER
    CLERK
    7782
    23-01-1982
    1300
    10
    101 rows selected.Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/01/23/la-forza-del-foglio-di-calcolo-in-una-query-la-clausola-model/]

  • Iteration through records in E-Tester

    Hi,
    I am testing a web application and I would like to know if there is a way to iterate through records without logging in and logging out multiple times. Right now when I iterate , each ietration starts with login and ends with logout. I want to be able to iterate through just the business process multiple times and logout at the end.
    Can this be done in e-tester.
    Thanks.
    Message was edited by:
    user643041

    You can do this with Job Scheduler. You will have to break up the scripts into their component parts then run everything together in Job Scheduler.

Maybe you are looking for

  • When i turn my ipod touch 4g on it goes from the apple logo to the white wheel then to a blank white screen, please help

    After using itunes to restore it i turned my ipod touch on and it stayed on the apple logo for a few minutes then it would change to a spinning wheel on a black screen then the screen would turn white and the process will repeat. I can still put it i

  • Rfc to webservices  scenario

    hi,     i am taking 2 FM's in rfc side and i am taking external definition in receiverside i.e in soap side rfc to webservices scenario could any one help me immediately. urs suman

  • ATI and Nvidia cards together?

    Is it possible to run an Nvidia card with an ATI card simultaneously? I have a 2007 mac pro with the stock 7300gt. I need another graphics card for a third monitor and would like to purchase the new ATI 3870. Does anyone here have an Nvidia and ATI c

  • Search by Genre

    I am looking for Jewish folk songs and I note that search results on "jewish" show a Genre called Judaism. However, that genre doesn't appear on the general list of genres so I don't know how to see a list of just that genre. Can someone assist...? R

  • Storage space memory in PI

    Hi Guys,    Can any one please let me know how to see storage space memory in PI. is there any transaction code ? i need how much memory used and how much free space in my PI system... Thanks, Siva.