Need help on combining these two program

Hi all,
 I needed some help on combining these two program. But i not very sure how to do it.
My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
 Can u guys give me some ideas to help me ?
Thanks in advance.
Attachments:
IMAQdx.png ‏55 KB
insert data.png ‏68 KB

Hi Himanshu,
But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
This is how my program looks like below.
I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
Thank in Advance.
Attachments:
FYP.png ‏205 KB

Similar Messages

  • Combining these two programs...

    I have two programs i want to combine into one. I have a solar system view which shows the solar system as a whole and i also have another program where you can individually view the planets by clicking on a button to load them. What i want to be able to do is in the solar system model (which shows the whole solar system) i can click on a planet and bring up the planetary view that i have. So i have two things i need to do:
    i) A mouse event to allow the user to click on a planet in full solar system view and load the 3D representation of that planet
    ii) A way to seperate my planet identifiying program so that each planet has its own code so that they can be clicked on individually
    Lets start with number 1:
    My code for the solar system model:
    onClipEvent (load) {
    function path(t1, t2){
      return Math.sqrt(t1 * t1 + t2 * t2);
    function label(){
      showLabel = !showLabel;
      if(showLabel) for(k = 0; k < count; k++) this[k].info = n[k];
      else for(k = 0; k < count; k++) this[k].info = "";
    c1 = new Array();  // endpoints coordinates of each ellipse conjugate diameters
    c2 = new Array();
    c3 = new Array();
    this.drag._x = 800;  // set zoom
    this.drag._y = -100; // set elevation
    var showLabel = false;
    // Planetary Orbital Elements (J2000)
    J2000 = new Date(2000, 0, 0, 12);
    n = new Array('Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn', 'Uranus', 'Neptune','Quaoar','Varuna');
    a = new Array(0.38709893, 0.72333199, 1.00000011, 1.52366231, 5.20336301, 9.53707032, 19.19126393, 30.06896348, 39.48168677, 17.94175491, 43.373493, 13.6209635, 43.2718562);
    e = new Array(0.20563069, 0.00677323, 0.01671022, 0.09341233, 0.04839266, 0.05415060, 0.04716771, 0.00858587, 0.24880766, 0.96727724, 0.037457, 0.3809974, 0.0529874);
    i = new Array(7.00487, 3.39471, 0.00005, 1.85061, 1.30530, 2.48446, 0.76986, 1.76917, 17.14175, 162.24220, 7.992, 6.93691, 17.12943);
    o = new Array(48.33167, 76.68069, -11.26064, 49.57854, 100.55615, 113.71504, 74.22988, 131.72169, 110.30347, 58.86004, 188.923, 209.32713, 97.28538);
    w = new Array(77.45645, 131.53298, 102.94719, 336.04084, 14.75385, 92.43194, 170.96424, 44.97135, 224.06676, 111.86560, 156.292, 339.09846, 275.22088);
    l = new Array(252.25084, 181.97973, 100.46435, 355.45332, 34.40438, 49.94432, 313.23218, 304.88003, 238.92881, 115.68, 267.1875, 48.62884, 83.80675);
    p = new Array(87.969, 224.701, 365.256, 686.980, 4332.589, 10759.22, 30685.4, 60189, 90465, 27795, 105192, 18573, 104096);
    cr = Math.PI/180;
    today = new Date();
    dt = (today - J2000)/864e+5;
    count = n.length;
    inc = 1;
    var pre = null; // drag motion detect
    zoom = 8;
    d = new Array();
    B = new Array();
    co = new Array();
    so = new Array();
    ci = new Array();
    si = new Array();
    for (j = 0; j < count; j++) {
      d[j] = 2 * Math.PI / p[j];
      co[j] = Math.cos(o[j] * cr);
      so[j] = Math.sin(o[j] * cr);
      ci[j] = Math.cos(i[j] * cr);
      si[j] = Math.sin(i[j] * cr);
      u[j] = (w[j] + l[j]) * cr;
      b[j] = Math.sqrt( (1 + e[j]) / (1 - e[j]) );
      c1[j] = traf(0);
      c2[j] = traf(Math.PI / 2);
      c3[j] = traf(3 * Math.PI / 2);
      this.attachMovie("ellipse", count + j, j);
      this.attachMovie("dot", j, j + count);
      if(j > 8) this[j]._alpha = this[count + j]._alpha = 50;
    function traf(e1){
      vector = new Object();
      var v = 2 * Math.atan( b[j] * Math.tan(e1/2) ) + u[j];
      var r = a[j] * ( 1 - e[j] * Math.cos(e1) );
      vector.x = r * ( co[j] * Math.cos(v) - so[j] * ci[j] * Math.sin(v) );
      vector.y = r * ( so[j] * Math.cos(v) + co[j] * ci[j] * Math.sin(v) );
      vector.z = r * si[j] * Math.sin(v);
      return vector;
    function place(pass){
      cmx = Math.cos(mx);
      smx = Math.sin(mx);
      zoom = 5 + drag._x/20;
      if (zoom < 1) zoom = 1;
      if (zoom > 120) zoom = 120;
      this.sun._xscale = this.sun._yscale = zoom;
      xk = zoom * pass.x;
      yk = zoom * (pass.z * smx - pass.y * cmx);
      this[j]._x = xk;
      this[j]._y = yk;
      if(pre != drag._y * drag._x){      // if zoomed or turned transform ellipses
       x1 = zoom * c1[j].x;
       y1 = zoom * (c1[j].z * smx - c1[j].y * cmx);
       x2 = zoom * c2[j].x;
       y2 = zoom * (c2[j].z * smx - c2[j].y * cmx);
       x3 = zoom * c3[j].x;
       y3 = zoom * (c3[j].z * smx - c3[j].y * cmx);
       ax = (x2 + x3 + y3 - y2)/2 - x1;
       ay = (x2 - x3 + y2 + y3)/2 - y1;
       bx = (x2 + x3 + y2 - y3)/2 - x1;
       by = (x3 - x2 + y2 + y3)/2 - y1;
       xc = (x2 + x3)/2;
       yc = (y2 + y3)/2;
       ek = path(bx, by) / path(ax, ay);
       ex = bx + ek * ax;
       ey = by + ek * ay;
       es = path(ex, ey);
       et = ( ay * (xc - x1) - ax * (yc - y1) ) / (ax * ex + ay * ey);
       xm = xc - x1 - ey * et;
       ym = yc - y1 + ex * et;
       xa = ax - xm;
       ya = ay - ym;
       sa = path(xm, ym);
       with(this[count + j]){
        _x = xc - sa * ex / es;
        _y = yc - sa * ey / es;
        _xscale = sa;
        _yscale = path(xa, ya);
        _alpha = 25 + 100 * _yscale / _xscale;
        _rotation = 180 * Math.atan2(-ey, -ex) / Math.PI;
    function kepler(){
      for(j = 0; j < count; j++){
       m = dt * d[j];
       e0 = m + e[j] * Math.sin(m);
       e0 = m + e[j] * Math.sin(e0);
       place( traf(e0) );
    onClipEvent (enterFrame) {
    mx = this.drag._y * cr / 2;
    kepler();
    pre = this.drag._y * this.drag._x;
    dt += inc;
    where would i put a mouse event that allows the user to click on a planet in full solar system view and load the 3D representation of that planet?
    Thanks for any and all help!

    Your solar system code is all AS2 code, not AS3, so if your planet code is AS3 then you will probably need to rethink this--you cannot mix the two languages in one file.  If your planet code is AS2, then you should post in the AS2 forum.

  • Uninstalled QucikTime, I have these two programs, apple support update, and

    I used QuickTime player on my windows 7 64 bit PC , didn't like it, removed it using add/remove program. Now I have these two: Apple Application Support Version 1.3.1 and is 42.8 MB and Apple Software update 2.1.1.116, 2.15 MB. They are from Apple, Inc. They are listed on my ad /remove program. My question:Since I have Uninstalled Quick time player, do i need to remove these two files? Are they related to any other important software like (e.g adobe)?
    I have apple support update, which has , as I understand,an update , but I no longer have a Quick Time program. Do I need to get rid of these two programs, and how to do it safely?
    Thanks

    They're not doing anything now, so you can remove them. Uninstall them from the Add/Remove Programs, just as you did with QuickTime.
    Regards.

  • Need help in my assignment, Java programing?

    Need help in my assignment, Java programing?
    It is said that there is only one natural number n such that n-1 is a square and
    n + 1 is a cube, that is, n - 1 = x2 and n + 1 = y3 for some natural numbers x and y. Please implement a program in Java.
    plz help!!
    and this is my code
    but I don't no how to finsh it with the right condition!
    plz heelp!!
    and I don't know if it right or wrong!
    PLZ help me!!
    import javax.swing.JOptionPane;
    public class eiman {
    public static void main( String [] args){
    String a,b;
    double n,x,y,z;
    boolean q= true;
    boolean w= false;
    a=JOptionPane.showInputDialog("Please enter a number for n");
    n=Double.parseDouble(a);
    System.out.println(n);
    x=Math.sqrt(n-1);
    y=Math.cbrt(n+1);
    }

    OK I'll bite.
    I assume that this is some kind of assignment.
    What is the program supposed to do?
    1. Figure out the value of N
    2. Given an N determine if it is the correct value
    I would expect #1, but then again this seem to be a strange programming assignment to me.
    // additions followI see by the simulpostings that it is indeed #1.
    So I will give the tried and true advice at the risk of copyright infringement.
    get out a paper and pencil and think about how you would figure this out by hand.
    The structure of a program will emerge from the mists.
    Now that I think about it that advice must be in public domain by now.
    Edited by: johndjr on Oct 14, 2008 3:31 PM
    added additional info

  • How can I combine these two DAQ tasks???

    I am using LabVIEW 11, Windows XP, cDAQ-9174 chassis, two NI-9205 modules.
    Please see my code for reference. I am very new so i will accept all suggestions.
    I am acquiring 12 volatage signals in a producer/consumer structure giving me a queue of 1-d array of waveform(dbl). Then I am acquiring 12 voltage signals in another loop giving me 2-d array of waveform(dbl).
    There is an issue creating the channels. How can I combine these two tasks?
    Thanks,
    ~Chris
    Attachments:
    WaveTest_6.2.vi ‏558 KB

    Hello chrisbe723,
    When you say that there is an issue creating the channels, are you getting a specific error message when running your code? Also are you referencing the same set of channels for the two DAQ task you are configuring?
    Paul-B
    Applications Engineer
    National Instruments

  • I just deleted photos from my iPad. I need help on recover these photos

    I accidentally deleted photos in my iPad. I need help to recover these photos. Thanks

    Restore from your Backup or Re-Sync them from your computer where you have been regularily Transferring them to.

  • Need help in creating a java program

    Hi everyone.
    I'd like to say before i start about my problem, that i've only begun learning java and my teacher hasn't explained anything at all. He only showed us by doing it himself and then showing us the final version. I've searched a little on how to program but i get little success in finding a good tutorial.
    I need help creating a program which has been assigned to me due in a few days in which i can't contact my teacher for help.
    I need to write a java program which inputs 3 items. The number of kilometres you drove, the number of litres of gas you used and the price you paid for the gas. Then, the program must calculate the number of litres used per 100km driven, which is litres divided by kilometres times 100, how much it costs to drive 100km, which is the result (a) times the price per litre and the number of miles per American gallon of gas ( one American gallon = 3.785 litres, and one mile = 1.609 km.
    The program has to output my name, the inputs given, the results computed and a message saying "Program Complete".
    To give you what i've done to begin with, from what i understood, is:
    import javax.swing.JOptionPane;
    public class prog1
         public static void main(String args[])
              final double americanGallon = 3.785;
              final double mile = 1.609;
              kilometresDriven,
              gasUsed;
              priceOfLiterGas;
              System.out.println("My Name");
              System.out.println("Number of kilometres driven:");
              kilometresDriven = JOptionPane.showInputDialog ("Kilometres Driven");
              System.out.println("Number of Litres of gas used:");
              gasUsed = JOptionPane.showInputDialog ("Litres of gas used");
              System.out.println("Price of a liter of gas:");
              priceOfLiterGas = JoptionPane.showInputDialog("Price per liter");
    Up to now, that's all i've got. i know i'm wrong, but i'm not sure how to do this. Could someone give me an outline of what this program is suppose to look like?
    Thanks in advance.

    Here's an update on my program. I've worked on certain details and would need your comments whether it contains errors. I'd also want to know if it would work or not because i don't know how to check it on my computer.
    Here's the update:
    import javax.swing.JOptionPane;
    public class Prog1
    public static void main(String args[])
    String name;
    double kmDriven;
    double litresUsed;
    double pricePaidForGas;
    double priceOfALiter;
    name = JOptionPane.showInputDialog("Name");
    input = JOptionPane.showInputDialog("Number of km driven");
    kmDriven = Double.parseDouble (input);
    input = JOptionPane.showInputDialog("Number of litres of gas used");
    litresUsed = Double.parseDouble (input);
    input = JOptionPane.showInputDialog("Price paid for gas");
    pricePaidForGas = Double.parseDouble (input);
    input = JOptionPane.showInputDialog("Price of a litre of gas");
    priceOfALiter = Double.parseDouble (input);
    a = (litresUsed/kmDriven)*100;
    b = ((litresUsed/kmDriven)*100)*priceOfALiter);
    c = (kmDriven/1.609)
    System.out.println("Name:" + name);
    System.out.println("Number of litres used per 100km:" + a);
    System.out.println("Cost of driving 100km" + b);
    System.out.println("Number of miles per American Gallon of Gas:" + c);
    System.out.println("Program Complete");
    System.exit(0);
    Comments please.
    Thanks in advance

  • I need help with TV Capture Card program

    Hello,
    I want to create a JAVA program so I can schedule that the recording with my TV Capture Card begins in x seconds.
    Now to start a recording, you must press Ctrl+M and to stop an recording you must click the mouse.
    How can I realise that a Java application can "press" Ctrl+M. I have to create an timer, that must be do-able... but I don't know how the program can simulate the pressing of Ctrl+M. I also need to know how the Java program can do a mouse click for me to end the recording.
    Thanks in advance for helping me.
    Chris.

    Thank you... I think this was exactly what I needed.

  • [Urgent] Need help calculating difference between two dates

    I'm trying to write a code to display the current day and time, then accept two dates from the user and display the difference between the two dates. To display the current date and time, I've used the SimpleDateFormatter library but I'm having difficulty calculating the difference between two dates. Could someone please help me with this?
    Below is my code so far
    import java.util.Date;
    import java.util.Scanner;
    import java.text.SimpleDateFormat;
    public class DateFormatter {
         public void displayNow()
              Date todaysDate = new Date();
              SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
              String formattedDate = formatter.format(todaysDate);
              System.out.println("Today's date and time is: "+formattedDate);
         public void calculateDifference(Date startDate, Date endDate)
              /* This is whre i need help! */
         public static void main(String[] args)
              DateFormatter df = new DateFormatter();
              Scanner sc = new Scanner(System.in);
              df.displayNow();
              System.out.println("Please enter a date: ");
              String date1 = sc.next();
              System.out.println("Please enter another date: ");
              String date2 = sc.next();
    }The methods displayNow() and calculateDifference(Date startDate, Date endDate) are essential and cannot be skipped out.

    tarahmarie101 wrote:
    Dude. I've tried doing assignments under pressure, and it doesn't work. Here's a piece of free advice. Start earlier next time, don't put "urgent" in the title of your post b/c it just pisses people off around here--and is a sure sign of an overdue homework assignment which no one around here likes helping with, and try to ask intelligent questions--don't just say "Help me!"
    Of course, it takes some time to learn what the intelligent questions are. You have my sympathy. Try asking questions about how to do a particular task, instead of asking people to tell you what to do. It starts to get easier after a while.
    actually dude i started on this on monday.. but there were so many other stuff to do along with this.. and i did try referring up the Calendar utility but it was a bit confusing actually.. it was only after that did i come to this forum.. nor am i very good at Java.. anyhoo thanks for your sympathies :P

  • I need help finding a workable web program that is not CSS based.  I tried IWeb and it just won't work for me.  Way too limiting.  I've been using a 12 year old copy of Macromedia Dreamweaver, but the new Dreamweaver is CSS

    Been building web pages for nearly 20 years, starting with GoLive.  Went to Dreamweaver about 12 years ago, the Macromedia version.  Tried going to iWeb when it came with a new Mac, but found it way too limiting with it's CSS template base.   Unknowlingly, I then bought a new copy of Dreamweaver.   Ooops, Adobe had bought Macromedia and Dreamweaver, too, is now CSS based, which for my money makes it useless to anyone who likes simplicity.   Now I find that even iWeb has been discontinued.  I was told yesterday that Apple doesn't have a web program any more.   At 12 years old, I just don't think it's practical to try to load my old Macromedia Dreamweaver into the new Mountain Lion (I'm getting a new Mac), though it is running, barely, in Snow Leopard.
    I need to find a web builder program that will permit simple construction of educational pages, nothing fancy, nothing artistic, just create a page, give it a color, type or drag in text, insert a table, insert pix in the table blocks, add text under the pix... done!    I should note that I am not looking to build traffic.  I teach simple things for free and people who want to learn those things (antique sewing machine repair, quilting, building longbows) find me.
    I've downloaded trial versions of half a dozen or so programs and looked at maybe 20 more, but all are either CSS based and drive me insane with requirments for constantly making rules and template models, and/or require that you base your web presence in their server.   Also, many will not work with pages built in other programs.  I maintian a volume of over 1000 web pages, many requiring regular updating, and they have been with the same server for more than 15 years.  I'm not about to change.
    So, anybody know a simple, old fashioned web builder that's happpy on a Mac platform?
    Captain Dick

    Although not supported anymore, iWeb does still function using Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    ... and you can purchase it from Amazon.
    Start with a blank page using the Black or WHite template.
    All modern websites use CSS and there are thousands of free templates to be had if you want to use a code entry style application. You will need to go this route if you want to create a site that is viewable on mobile devices although you can create an iPhone version using iWeb...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html
    Search this forum for numerous topics about iWeb alternatives.

  • TS4268 Is there a real fix to get iMessage and FaceTime working with iOS7 on my iPad?  Tried that 8.8.8.8 and time rest thing but they don't.   Everything else works.... Says the network connection is the problem but only for these two programs.

    Is there a "real fix" to get iMessage and FaceTime working?  Tried the 8.8.8.8 and time,rest thing.   Passwords and Apple ID are ok.  At log in the message says it's a network connection. 
    Any ideas?  Is here a fix coming from Apple?

    Apps are on my iPad and worked fine with iOS 6. When iOS7 was loaded, I can no longer sign in to these two apps using my Apple ID. These apps are on my phone and work fine.  This problem is on on my iPad. 

  • Need help in combining two similair SQLs into one

    DB Version:10gR2
    I need to combine the following two queries into one query and return the following three columns
    Unprocessed Quantity1,Unprocessed Quantity2, Total Uprocessed Cost
    Unprocessed Quantity1 can be determined using
    select t.ITEM, sum(t.QTY)
      from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
              from CONVEY_HDR ch, CURRENT_INVN cd, ALLOC_HDR ah
             where ........
            UNION
            select sd.ITEM_ID ITEM, sd.INVN_QTY QTY
              from shp_dtl pd
            UNION
            Select item_id, inv_qty from another table
        GROUP BY.....
    ITEM        SUM(T.QTY)
    88JAT                25
    000002395           1
    300108396          27
    000004397           7
    73984290           15Unprocessed quantity2 can be determined using
    select t.ITEM, sum(t.QTY)
         from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                 from CONVEY_HDR ch, CURRENT_INVN cd, ALLOC_HDR ah
        where rownum<6
       group by t.ITEM
       order by t.ITEM;
    ITEM        SUM(T.QTY)
    189436171           2
    009438837         160
    000040685          16
    000032410          18Total Unprocessed Cost can found using the sum of Quantities for a particular Item from above two queries multiplied by
    ITEM_COST for that ITEM (which is found in ITEM_DTL table). For every item; ITEM_DTL.item_id=CARTON_dTL.carton_id
    Total Unprocessed Cost= (Unprocessed Quantity1+Unprocessed Quantity2)*ITEM_DTL. ITEM_COST
    Note: Unprocessed Quantity2 query looks very similair to first SQL in UNION of Unprocessed Quantity1, but ah.STAT_CODE < 90 for Unprocessed Quantity2 query
    Edited by: user636669 on Jan 14, 2009 10:40 AM
    Edited by: user636669 on Jan 14, 2009 10:57 AM
    Corrected typo
    Edited by: user636669 on Jan 14, 2009 7:07 PM

    Hi,
    Put the two queries you posted in sub-queries. You can then use their result sets as if they were tables.
    Do something like this:
    WITH  uq1  AS
        select t.ITEM, sum(t.QTY) AS total
          from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                  from CASE_HDR ch, CASE_DTL cd, ASN_HDR ah
        ... the rest of your first query goes here
    ,     uq2  AS
        select t.ITEM, sum(t.QTY)  AS total
             from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                     from CASE_HDR ch, CASE_DTL cd, ASN_HDR ah
        ... the rest of your second query goes here
    SELECT  uq1.item
    ,       uq1.total  AS "Unprocessed Quantity1"
    ,       uq2.total  AS "Unprocessed Quantity2"
    ,       (uq1.total + uq2.total) * dtl.item_cost
                       AS "Total Uprocessed Cost"
    FROM    uq1
    JOIN    uq2               ON uq1.item = uq2.item
    JOIN    item_dtl   dtl    ON uq1.item = dtl.item;If some items are in uq1 but not in uq2 (or vice-versa), then you'll probably want to do outer joins.
    I don't have any of the tables used, so I can't test this myself.
    If you need more help. then post a little sample data from each of the tables, and the results you want from that data.
    It looks like you're doing the same join in each of your original queries.
    You can add another sub-query that does that join once, and then use that sub-query in sub-queries uq1 and uq2.

  • Need Help With Combining Two Variables For A Redirect

    Hello-
    <br />
    <br />In a different part of my site (built with ADDT) I have this script that creates a variable by combining two session variables, and then the new variable is submitted into a mysqul database table using a hidden form field:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_login_user']; ?><?php echo $_SESSION['kt_exer_reference']; ?> <br />" />
    <br />
    <br />There is also this part of the script in the header script:
    <br />
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "POST", "exerreference");
    <br />
    <br />What I am trying to do now on another page is combine a session variable "kt_login_user" with a piece of dynamic text "AA" so that I can compare it to the field "exerreference" that was inserted into the database using the above script. If the two variables match, the idea is to have a redirect to another page.
    <br />
    <br />So in a hypothetical example, if the value of the session variable "kt_login_user " is "bestperson," and static text is "AA" then I need to create the variable bestpersonAA (because this is how the variables exist in the exerreference recordset). This variable bestpersonAA then needs to be compared to the recordset value exerreference and if they match, the page redirects to ../previous/portalpre.php. If the two variables do not match, then there is no redirect.
    <br />
    <br />Here is what I have so far:
    <br />
    <br />if (isset($_SESSION['kt_login_user']))
    <br />{
    <br />if ($_SESSION['kt_login_user'.'AA'] = $row_Recordsetexer1['exerreference'])
    <br />{
    <br /> header ("Location: ../previous/portalpre.php");
    <br />}
    <br />}
    <br />
    <br />The script doesn't work yet - it's redirecting regardless of if the two varibles match. Any ideas on the correct syntax to get this working correctly?
    <br />
    <br />Thanks
    <br />Dale</form>

    Hi Dale,
    if ($_SESSION['kt_login_user'.'AA'] = $row_Recordsetexer1['exerreference'])
    for checking whether two variables match, you´ll need the == comparison operator:
    if ($_SESSION['kt_login_user'.'AA'] == $row_Recordsetexer1['exerreference'])
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • I need help with combining two pdf files together but it won't let me in the latest Acrobat DC?

    Hi,
    I had two ai files, 11 by 17 on separate pages, and made them into pdf's. When I combine the files, it will let one out of the two files go through. The funny thing is that it will let the larger file go through than the smaller file. The file that went through had been in  ai, dropped it into photoshop and put it back into ai again. The file that won't go through is a quote with different text. What should I do? What does pdf/a, pdf/x, pdf/e and preflight mean?
    Thank you

    Make sure neither of the PDF have been secured in some manner like password protection, form rights or forms distribution.
    Forms created with live cycle cannot be combined by Acrobat.

  • Could I have some help with making these two files merge?

    Copyright - Trademarking - Prohibiting further use of these files (Unless you are helping me) - Etc..
    Hello, I'm back with another problem and if you read the last post you would have realized that I shortened the code. My goal is to replace my spacer and header with a single header that I based my design around. I just can not get this too work with the rest of the document I have had too many attempts. I will post my header files in 'RED' to begin with and the files I need to combine in 'BLUE'
    Preview of Header:
    Link to the Header HTML Coding:
    Expertpcguides.com
    Link to CSS Coding of the Header:
    http://www.expertpcguides.com/css/header-styling.css
    Example of one of the Html pages that I need to merge:
    /* This Html file is part of the ExpertComputerGuides.com Website Copyright - Trademarked etc.*/
    <!DOCTYPE HTML>
    <html>
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>About Us</title>
            <link rel="stylesheet" href="css/merging-reset.css" type="text/css" media="screen" />
            <link rel="stylesheet" href="css/merging-style.css" type="text/css" media="screen" />
            <link href='http://fonts.googleapis.com/css?family=Open+Sans%7CBaumans%7CArvo%7CRoboto' rel='stylesheet' type='text/css' />
            <link rel="shortcut icon" href="customfavicon.ico" type="image/x-icon" />
            <!--[if lt IE 9]>
                <style>
                    header
                        margin: 0 auto 20px auto;
                    #four_columns .img-item figure span.thumb-screen
                        display:none;
                </style>
            <![endif]-->
    </head>
      <body>
    <header>           
                <h1 class="style5">Expertpcguides.com</h1>
              <p class="style6">Technology Explained.</p>
    <select id="alternative_menu" size="1">
                    <option>Home</option>
                    <option>About</option>
                    <option>Contact us</option>
                    <option>Login/Register</option>
                    <option>Forums</option>
    <option>Privacy Policy</option>
                    <option>Disclaimer</option>
                    <option>Legal Notice</option>
                </select>
                <nav>
                <h2 class="hidden">Our navigation</h2>
                    <ul>
                        <li><a href="index.php" class="style19">Home</a></li>
                      <li><a href="about-us.html" class="style19">About</a></li>
                      <li><a href="contact-us.html" class="style19">Contact us</a></li>
                      <li><a href="javascript:void(0)" class="style19">Login/Register</a></li>
                      <li><a href="forums/index.php" class="style19">Forums</a></li>
                  </ul>
              </nav>
            </header>
                    <section id="spacer"> 
            <h2 class="hidden">Dolor sit amet</h2>         
                <p><span class="class3"><a href="articles/dictionary.html" class="style22">Dictionary </a></span><span class="style19">|</span><span class="class4"> <a href="articles/articles.html">Articles </a></span><span class="style19">|</span><span class="class5"> <a href="articles/computerhistory.html">History of the PC</a></span><span class="style19"> |</span><span class="class6"> <a href="articles/freedownloads.html">Free Downloads</a></span></p>
              <div class="search">
    <form id="searchbox_000429658622879505763:gczdzyghogq" action="https://www.google.com/cse/publicurl?cx=000429658622879505763:gczdzyghogq">
    <input value="000429658622879505763:gczdzyghogq" name="cx" type="hidden"/>
    <input value="FORID:11" name="cof" type="hidden"/>
    <input id="q" style="width:150px;" name="q" size="70" type="text" />
    <input value="Search" name="sa" type="submit"/>
    </form>
    </div>
        </section>
    <section id="boxcontent">
    <section id="four_columns">
                <h2 class="style20">
                    About Us</h2>   
                <p class="style10">We are an online non-profit organisation who are continously increasing in numbers, thanks to you guys. With multiple articles providing information into PC personalisation, Problem removal, Tips &amp; tweaks and general help you are sure to find something helpful to you. </p>
                <p class="style10">We have a motto 'Technology Explained.' and this is exactly what we wish to stand by. We offer in-depth tutorials that focus on providing that little-bit of information which no other site will include. </p>
                <p class="style10">Our goal is to combine multiple sites, so that you can receive more specific information which no other site will provide. In saying this, we certainly don't just copy and paste other peoples articles, but may use some of the concepts from other sites with our own wording or interpretation. If some of our wording alligns up with another website this is likely because the topic was broad and every website will have similar information.</p>
                <p class="style10"> </p>
        <div><h2 class="style20">General Questions and Answers:</h2></div>
                <p class="style12"> </p>
                <p class="style17">Can I email you guys?</p>
        <p class="style14">You certainly can. But on a busy day you should probably post your thoughts in the forums. We aim to answer every relevant email within 24 hours. In the forums we generally rely on other users to help eachother out, but we may step in if we know the answer.</p>
                <p class="style14"> </p>
                <p class="style17">When and why did you start this site?</p>
        <p class="style13"><span class="style14">This site was started on the 12th of the 7th, 2014. The intention behind this development was to create a website that would be functional with a variety of articles for many users. Worst case scenario, the authour would have a neat offline guide for all of his problems.</span></p>
        <p class="style13"> </p>
                <p class="style17">Would  you be able to write articles for us?</p>
        <p class="style13"><span class="style14">More than likely, just contact us and we will consider your inquiry.</span></p>
                <p class="style13"> </p>
                <p class="style17">Can I write articles for you?</p>
        <p class="style13"><span class="style14">Less than likely, the articles on this site are in the copy of one person making access to others difficult. Pointing out clear influencies and spelling errors is appreciated, more information about this is </span><a href="create-a-page.html" class="style60">here.</a></p>
        <p class="style13"> </p>
                <p class="style17">Can I republish your articles?</p>
        <p class="style13"><span class="style14">No way. Making this website took ages and because of that substancial amount of time spent, every single sentence on this sight is copyright. In saying this though some topics may be broad, and there may be only one way to word the situation at hand for example opening the start menu is generally something which will sound exactly the same on multiple sites.</span></p>
        <p class="style13"> </p>
                <p class="style17">Where do you guys get these ideas from?</p>
        <p class="style13"><span class="style14">Most of these ideas come from what we had once searched up, user suggestions, or what we think other people might search up. This was done with the intention of linking multiple searches into one site, that many people would have the ability to  access. </span></p>
                <p class="style13"> </p>
                <p><span class="style17">How many people are making this site?</span></p>
        <p><span class="style14">At this point in time, there is one person developing on the site. Which is why all helpful contribution made by internet strangers is appreciated.</span></p>
                <p> </p>
                <p><span class="style17">What program did you use to make this website?</span></p>
        <p><span class="style14">Adobe Dreamweaver CS3.</span></p>
      </section>
    </section>
    <section id="text_columns">
    <section class="column2"></section>
            </section>
    <footer>
      <h2 class="hidden">Our footer</h2>
          <section id="copyright">
            <h3 class="hidden">Copyright notice</h3>
            <div class="wrapper">
              <div class="social"> <a href="index.html"><img src="img/G.png" alt="G" width="25"/></a> <a href="index.html"><img src="img/U.png" alt="U" width="25"/></a> <a href="index.html"><img src="img/I.png" alt="I" width="25"/></a> <a href="index.html"><img src="img/D.png" alt="D" width="25"/></a> <a href="index.html"><img src="img/E.png" alt="E" width="25"/></a> <a href="index.html"><img src="img/S.png" alt="S" width="25"/></a> </div>
            &copy; Copyright 2014 by Expertpcguides.com. All Rights Reserved. </div>
    </section>
          <section class="wrapper">
            <h3 class="hidden">Footer content</h3>
            <article class="column hide">
              <h4>Site Links</h4>
                <div class="class2">
                  <p><a href="web-contributors.html" class="style18">Developers/Contributors</a></p>
              </div>
              <div class="class2">
                  <p><a href="create-a-page.html" class="style18">Create a page</a></p>
                </div>
              <div class="class2">
                <p><a href="point-system.html" class="style18">Rewards System</a></p>
              </div>
              <div class="class2">
                <p><a href="privacy" class="style18">Privacy</a></p>
              </div>
                                 <div class="class1">
                <p><a href="site-map.html" class="style18">Site Map</a></p>
              </div>
            </article>
            <article class="column midlist2">
              <h4 class="style4">Follow Us</h4>
              <ul class="style4">
      <li><div class="class2">
        <p><img src="img/Facebook-logo.png" alt="Facebook Image" width="32" height="34"/><span class="style31"><a href="https://www.facebook.com/expertpcguides" class="style31"> Facebook</a></span></p></div></li>
    <li><div class="class2">
                  <p><img src="img/Twitter-Logo.jpg" alt="Twitter Image" width="30" height="33"/><a href="https://twitter.com/ExpertPcGuides" class="style31"> Twitter</a></p></div>
    <li>
         <li><div class="class2">
        <p><img src="img/Google+Logo.jpg" alt="Google + Image" width="31" height="35"/><a href="https://plus.google.com/115474035983654843441" class="style31"> Google Plus</a></p></div></li>
      <li><div class="class2">   
        <p><img src="img/Pininterest-Logo.png" alt="Pininterest Image" width="33" height="34" ><a href="http://www.pinterest.com/expertpcguides/" class="style31"> Pininterest</a></p></div>
      <li>
              </ul>
            </article>
            <article class="column rightlist">
              <h4>Interested in Exclusive Articles?</h4>
                <div class="class2">
                  <p><a href="login.html" class="style18">All you need to do is login/register</a></p>
              </div>
            </article>
          </section>
    <section class="wrapper"><h3 class="hidden">If you are seeing this, then the site is losing stability</h3></section>
            </footer>
    </body>
    </html>
    'Merging-Style.css' File:
    http://www.expertpcguides.com/css/merging-style.css
    'Merging-Reset.css' File:
    http://www.expertpcguides.com/css/merging-reset.css
    Thanks for the help in advance.

    You're not getting any help because your HTML & CSS code is pretty messy.  It's like asking an interior designer to make over a very untidy bedroom.  It's not going to happen until you clean things up.
    I would start with just the basic HTML code like this.  Avoid those redundant style10, style19, style108 tags.    You really don't need them.  HTML selectors provide you with all the hooks you need for most things.  Also, you should run a spell check.  I saw errors but I didn't fix them.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Expert PC Guides</title>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans%7CBaumans%7CArvo%7CRoboto' rel='stylesheet' type='text/css' />
    <link rel="shortcut icon" href="customfavicon.ico" type="image/x-icon" />
    <style>
    /**CSS RESET**/
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    img { vertical-align: bottom }
    ol, ul { list-style: none; }
    /**LAYOUT STYLES**/
    body {margin:0;}
    header {margin:0; }
    header h1 {}
    header h2 {}
    /**top nav**/
    nav { margin: 4% }
    nav li { display: inline }
    nav li a {
        margin: 1%;
        padding: 1%;
        text-decoration: none;
    nav li a:visited { }
    nav li a:hover, nav li a:active, nav li a:focus { }
    /**search bar**/
    section.top {
        background: #1A3BE5;
        overflow: hidden;
    section.top li {
        float: left;
        margin: 1.5%;
    section.top li a { color: #FFF }
    section.top li:after {content: '| ';}
    .search { float: right; }
    /**main content**/
    article { }
    article h3 {margin:0; padding:0 }
    article p { }
    /**Q&A definition lists**/
    dl { margin: 2%; }
    dt {
        font-size: 125%;
        color: #1A3BE5;
        font-weight: bold;
    dd {
        font-size: 90%;
        color: #333;
        margin-left: 4%
    footer {
        background: #333;
        color: #CCC
    /**3 columns**/
    footer aside {
        width: 33%;
        float: left;
        padding: 0 2%
    /**footer links**/
    footer a {
        color: #EAEAEA;
        text-decoration: none
    footer a:hover {text-decoration: underline}
    footer ul li { line-height: 1.5 }
    footer h4 {margin:0 }
    footer p { }
    /**clear floats**/
    .clearing {
        clear: both;
        display: block
    </style>
    </head>
    <body>
    <header>
    <h1>Expertpcguides.com</h1>
    <h2>Technology Explained</h2>
    <!--top menu-->
    <nav>
    <ul>
    <li><a href="index.php">Home</a></li>
    <li><a href="about-us.html">About</a></li>
    <li><a href="contact-us.html">Contact us</a></li>
    <li><a href="javascript:void(0)">Login/Register</a></li>
    <li><a href="forums/index.php">Forums</a></li>
    </ul>
    </nav>
    </header>
    <!--search bar-->
    <section class="top">
    <h3>Search Bar</h3>
    <ul>
    <li><a href="articles/dictionary.html">Dictionary</a></li>
    <li><a href="articles/articles.html">Articles</a></li>
    <li><a href="articles/computerhistory.html">History of the PC</a></li>
    <li><a href="articles/freedownloads.html">Free Downloads</a> </li>
    </ul>
    <form class="search" id="searchbox_000429658622879505763:gczdzyghogq" action="https://www.google.com/cse/publicurl?cx=000429658622879505763:gczdzyghogq">
    <input value="000429658622879505763:gczdzyghogq" name="cx" type="hidden"/>
    <input value="FORID:11" name="cof" type="hidden"/>
    <input id="q" style="width:150px" name="q" size="70" type="text" />
    <input value="Search" name="sa" type="submit"/>
    </form>
    <!--end search bar-->
    </section>
    <article>
    <h2>About Us</h2>
    <p>We are an online non-profit organisation who are continously increasing in numbers, thanks to you guys. With multiple articles providing information into PC personalisation, Problem removal, Tips &amp; tweaks and general help you are sure to find something helpful to you. </p>
    <p>We have a motto 'Technology Explained.' and this is exactly what we wish to stand by. We offer in-depth tutorials that focus on providing that little-bit of information which no other site will include. </p>
    <p>Our goal is to combine multiple sites, so that you can receive more specific information which no other site will provide. In saying this, we certainly don't just copy and paste other peoples articles, but may use some of the concepts from other sites with our own wording or interpretation. If some of our wording alligns up with another website this is likely because the topic was broad and every website will have similar information.</p>
    <h2>General Questions and Answers:</h2>
    <!--Q&A definition lists-->
    <dl>
    <dt>Can I email you guys?</dt>
    <dd>You certainly can. But on a busy day you should probably post your thoughts in the forums. We aim to answer every relevant email within 24 hours. In the forums we generally rely on other users to help each other out, but we may step in if we know the answer.</dd>
    </dl>
    <dl>
    <dt>When and why did you start this site?</dt>
    <dd>This site was started on the 12th of the 7th, 2014. The intention behind this development was to create a website that would be functional with a variety of articles for many users. Worst case scenario, the authour would have a neat offline guide for all of his problems. </dd>
    </dl>
    <dl>
    <dt>Would  you be able to write articles for us?</dt>
    <dd>More than likely, just contact us and we will consider your inquiry.</dd>
    </dl>
    <dl>
    <dt>Can I write articles for you?</dt>
    <dd>Less than likely, the articles on this site are in the copy of one person making access to others difficult. Pointing out clear influencies and spelling errors is appreciated. <a href="create-a-page.html" class="style60">Click here for more information.</a></dd>
    </dl>
    <dl>
    <dt>Can I republish your articles?</dt>
    <dd>No way. Making this website took ages and because of that substancial amount of time spent, every single sentence on this sight is copyright. In saying this though some topics may be broad, and there may be only one way to word the situation at hand for example opening the start menu is generally something which will sound exactly the same on multiple sites.</dd>
    </dl>
    <dl>
    <dt>Where do you guys get these ideas from?</dt>
    <dd>Most of these ideas come from what we had once searched up, user suggestions, or what we think other people might search up. This was done with the intention of linking multiple searches into one site, that many people would have the ability to  access. </dd>
    </dl>
    <dl>
    <dt>How many people are making this site?</dt>
    <dd>At this point, there is one person developing the site, which is why all helpful contributions made by internet strangers is appreciated.</dd>
    </dl>
    <!--end article-->
    </article>
    <!--begin footer-->
    <footer>
    <p> <a href="index.html"><img src="img/G.png" alt="G" width="25"/></a> <a href="index.html"><img src="img/U.png" alt="U" width="25"/></a> <a href="index.html"><img src="img/I.png" alt="I" width="25"/></a> <a href="index.html"><img src="img/D.png" alt="D" width="25"/></a> <a href="index.html"><img src="img/E.png" alt="E" width="25"/></a> <a href="index.html"><img src="img/S.png" alt="S" width="25"/></a> </p>
    <!--begin 3 columns-->
    <aside>
    <h4>Site Links:</h4>
    <ul>
    <li><a href="web-contributors.html" class="style18">Developers/Contributors</a></li>
    <li><a href="create-a-page.html" class="style18">Create a page</a></li>
    <li><a href="point-system.html" class="style18">Rewards System</a></li>
    <li><a href="privacy" class="style18">Privacy</a></li>
    <li><a href="site-map.html" class="style18">Site Map</a></li>
    </ul>
    </aside>
    <aside>
    <h4>Follow Us</h4>
    <ul>
    <li><img src="img/Facebook-logo.png" alt="Facebook Image" width="32" height="34"/><a href="https://www.facebook.com/expertpcguides" class="style31"> Facebook</a></li>
    <li><img src="img/Twitter-Logo.jpg" alt="Twitter Image" width="30" height="33"/><a href="https://twitter.com/ExpertPcGuides" class="style31"> Twitter</a>
    <li><img src="img/Google+Logo.jpg" alt="Google + Image" width="31" height="35"/><a href="https://plus.google.com/115474035983654843441" class="style31"> Google Plus</a> </li>
    <li><img src="img/Pininterest-Logo.png" alt="Pininterest Image" width="33" height="34" ><a href="http://www.pinterest.com/expertpcguides/" class="style31"> Pininterest</a> </li>
    </ul>
    </aside>
    <aside>
    <h4>Interested in Exclusive Articles?</h4>
    <ul>
    <li><a href="login.html">Login/Register</a></li>
    </ul>
    </aside>
    <!--end 3-columns-->
    <p class="clearing">&copy; 2014 by Expertpcguides.com. All rights reserved. </p>
    </footer>
    </body>
    </html>
    Once you've got all your HTML pages cleaned up, it should be a simple matter to style.
    Nancy O.

Maybe you are looking for

  • Match Data dialog window in Master Data Services Excel Add-in

    Hello, I am following the Enterprise Information Management using SSIS, MDS, and DQS Together on http://technet.microsoft.com/en-us/library/jj819782.aspx. I am now in lesson 4 Task 4 on http://technet.microsoft.com/en-us/library/13a13f03-b307-4555-8e

  • Connect 2013 Macbook Air to 30" Cinema Display

    Hi, so I bought a DVI to thunderbolt connector and connected my macbook air to my 30" display, but it wont give the 30" monitor the full 2560x1600. Is it even possible to do this or am I stuck at driving it at a terrible resolution?

  • Problem with ePub Table of Contents

    In converting to ePub format, I end up with the TOC out of sync. For instance chapter 1 in the TOC actually points to chapter 2, chapter 2 to 3, etc. When I make a PDF from the same file, everything is OK. Even in the Pages document the links work as

  • Goods posting reversals using PI sheet

    Hello All, I would like to post goods movement reversals using PI sheet for a process order. Can anyone help me out with this?

  • QUESTION Re. Integrating TIBCO EMS with Weblogic 8.1 using MDB

    Hi All,           I am trying to integrate TIBCO EMS 4.3.0 with Weblogic 8.1 SP6.           I have created a topic "SIMPLE.TOPIC" on the EMS. I have configured the Foreign JMS Server as follows:           Name: TIBCO JMSServer           JNDI Initial