Anyone help me please~ many thanks! C++ linked list

I've written a Microsoft C++ code, using a linked list to store the result which is sent by a device.
The head node and tail node of linked list is put into a class, and all methods are set to 'static' to manipulate the data inside the linked list. So that different thread can access to it.
At first, everything runs ok in native environment,( i compile it as a .exe file)....
However, when I export it into DLL and run inside java code using JNI. The linked list was gone (head node & tail node lost). It seems that JVM try to re-initialize the head node everytime I invoke those method.
Hence, I modify the class which handle the link list, set all its methods into non-static, and define a global variable. Yet, another problem came out... Acess Violation error... it seems again the adress(pointer) of head node can't be modified...
Is there any other way to solve this problem?? I mean, I want the head node remains valid for each time of java method is called.

Too vague.
If you could show us some relevant Java and JNI C++
code.
Please paste your code between code tags exactly like
this:
your codeYou may read the [url
http://forum.java.sun.com/help.jspa?sec=formatting]For
matting tips for more information.Here you are:
this is the header definition of the linked list handler, all functions are set to be non-static
typedef struct DeviceLinkList{
    char *deviceNumber;//device of monitor device
    int result;
    DeviceLinkList *nextNode;
    DeviceLinkList *prevNode;
} DeviceLinkList;
class DeviceListHandler
public:
  DeviceLinkList *headNode = NULL;
  DeviceLinkList *tailNode = NULL; //Moving to last of the entry
  void addNode(char *device); //add monitor device
  void deleteNode(char *device); //remove after device is stop monitorred
  void printAll();
  void setResult(char *device);
private:
  DeviceLinkList *searchNode(char *device);
};Here is the implementation of my code in function 'addNode':
void DeviceListHandler::addNode(char *device)
  printf("Creating Link List.\n");
  printf("Head is %d\n" ,headNode);
  if(headNode != NULL) //create new node from empty --> Access Violation Exception start from here
    DeviceLinkList *temp = new DeviceLinkList;
    temp->deviceNumber = device;
    temp->nextNode = NULL;
    temp->prevNode = tailNode;
    tailNode->nextNode = temp;
    tailNode = temp; //move tailNode point to the last entry
    printf("Connecting to Tail Node done\n");
  else
    DeviceLinkList *temp = new DeviceLinkList;
    printf("Creating Head\n");
    temp = new DeviceLinkList;
    temp->deviceNumber = device;
    temp->nextNode = NULL;
    temp->prevNode = NULL;
    printf(".....DONE...!!!\n");
    headNode = temp;
    tailNode = headNode;
    printf("Finish Head-Tail Node creation\n");
  printf("Creation Done\n");
}This is the one of function which export to JNI:
JNIEXPORT void JNICALL Java_PBXdll_monitorStart  (JNIEnv * env, jobject obj, jstring callingdevice)
char device[MAX_CstaDialingNumber];
strcpy(device,env->GetStringUTFChars(callingdevice, 0));
printf("Monitoring device: %s\n", device);
startMonitor(device);
deviceList -> addNode(device); // deviceList is the global variable
}so...when i call the method monitorStart in java... it terminated abnormally with a Access Violation Exception.....the linked list can't be created.

Similar Messages

  • Hi, I am using an iMAC 6.4 and I will need to upgrade the 10.5.8 to a newer version. I am a PC person, so I have no idea of how do this. Can anyone help me please? Thanks!

    e no idea of how do this. Can anyone help me please? Thanks!

    There is no such model as an iMac 6.4. Be sure to check the system requirements for upgrading.
    Upgrade Paths to Snow Leopard, Lion, and/or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • Hi, I have had my MacBook Pro stolen and the police have mentioned about using iCloud to see if I can track it's whereabouts - however I have no idea if I had iCloud on my MacBook or how to track it if I did - can anyone help me please? Thanks :)

    Hi, I have had my MacBook Pro stolen and the police have mentioned about using iCloud to see if I can track it's whereabouts - however I have no idea if I had iCloud on my MacBook or how to track it if I did - can anyone help me please? Thanks

    Welcome to the Apple Support Communities
    To see if you have iCloud, open http://www.icloud.com and log in with your Apple ID. If you can access to iCloud, you have iCloud. If you get an error message or you can't access, you don't have iCloud. This only works if you only have the Mac (not an iPhone, iPod touch or iPad with iCloud).
    Apart from that, "Find my Mac" must be turned on in the Mac in order to track it, so if it wasn't turned on, you won't be able to track it. If it was turned on, the computer must be connected to the Internet to be tracked.
    If you can access to iCloud through http://www.icloud.com, choose "Find my iPhone" and look at the Devices list. If your MacBook Pro shows up, "Find my Mac" is turned on, so see if you can track it and tell to the police that it's possible to track your MacBook Pro

  • Hi, a dvd got stuck in my mac mini and after looking at solutions online and attempting some not only has the dvd not ejected but my mac wont turn on properly, there is simply a white blank screen, can anyone help me please? thanks

    Hi, a dvd got stuck in my mac mini and after looking at solutions online and attempting some not only has the dvd not ejected but my mac wont turn on properly, there is simply a white blank screen, can anyone help me please? thanks

    Hi Claire, sounds dire, but some things to try...
    Have you done a PRAM reset, CMD+Option+p+r...
    http://support.apple.com/kb/HT1379
    In fact, do 3 in a row, takes a bit of time.
    Intel-based Macs: Resetting the System Management Controller (SMC)...
    http://support.apple.com/kb/HT3964

  • I have forgotten my iphone passcode, can anyone help me please? thanks

    I recently changed my iphone 4 passcode, soon i forgot it, i have tried and tried to remember but i cant.so now my iphone is disabled. i tried backing up my iphone on itunes but it told me that i need to turn off "find my iphone" on my device which i cant access, i ive looked online and i found out that i can go onto icloud and earase it that way. So i did, it then told me that it will be erased when my iphone is connected to the internet, sadly it is not connected. I dont know what to do. I would appreciate the help

    If you forgot (or don't know) your passcode, restore the device with your backup on the last computer it was synced with when the passcode was turned on... this will remove the passcode.
    If you do not have access to the last computer it was synced with, or you've never synced, you will have to force it into recovery mode & restore as a new device or with an old backup if one is available.
    See this for more info... http://support.apple.com/kb/HT1212

  • Can anyone help me, please

    Hello again:
    Please run my coding first, and get some view from my coding.
    I want to add a table(it is from TableRenderDemo) to a JFrame when I click on the button(from DrawCalendar) of the numer 20, and I want the table disply under the buttons(from DrawCalendar), and the table & buttons all appear on the frame. I added some code for this problem(in the EventHander of the DrawCalendar class), but I do
    not known why it can not work.Please help me to solve this problem.
    Can anyone help me, please.
    Thanks.
    *This program for add some buttons to JPanel
    *and add listeners to each button
    *I want to display myTable under the buttons,
    *when I click on number 20, but why it doesn't
    *work, The coding for these part are indicated by ??????????????
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel {
         private static DrawCalendar dC;
         private static TestMain tM;
         private static TableRenderDemo myTable;
         private static GridLayout gL;
         private static final int nlen = 35;
        private static String names[] = new String[nlen];
        private static JButton buttons[] = new JButton[nlen];
         public DrawCalendar(){
              gL=new GridLayout(5,7,0,0);
               setLayout(gL);
               assignValues();
               addJButton();
               registerListener();
        //assign values to each button
           private void assignValues(){
              names = new String[35];
             for(int i = 0; i < names.length; i++)
                names[i] = Integer.toString(i + 1);
         //create buttons and add them to Jpanel
         private void addJButton(){
              buttons=new JButton[names.length];
              for (int i=0; i<names.length; i++){
                   buttons=new JButton(names[i]);
         buttons[i].setBorder(null);
         buttons[i].setBackground(Color.white);
         buttons[i].setFont(new Font ("Palatino", 0,8));
    add(buttons[i]);
    //add listeners to each button
    private void registerListener(){
         for(int i=0; i<35; i++)
              buttons[i].addActionListener(new EventHandler());          
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
    private class EventHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
         for(int i=0; i<35; i++){
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
         if(i==20){  //???????????               
              tM=new TestMain(); //???????
              tM.c.removeAll(); //??????
              tM.c.add(dC); //???????
              tM.c.add(myTable); //????
              tM.validate();
         if(e.getSource()==buttons[i]){
         System.out.println("testing " + names[i]);
         break;
    *This program create a table with some data
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TableRenderDemo extends JScrollPane {
    private boolean DEBUG = true;
    public TableRenderDemo() {
    // super("TableRenderDemo");
    MyTableModel myModel = new MyTableModel();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(700, 70));//500,70
    //Create the scroll pane and add the table to it.
    setViewportView(table);
    //Set up column sizes.
    initColumnSizes(table, myModel);
    //Fiddle with the Sport column's cell editors/renderers.
    setUpSportColumn(table.getColumnModel().getColumn(2));
    * This method picks good column sizes.
    * If all column heads are wider than the column's cells'
    * contents, then you can just use column.sizeWidthToFit().
    private void initColumnSizes(JTable table, MyTableModel model) {
    TableColumn column = null;
    Component comp = null;
    int headerWidth = 0;
    int cellWidth = 0;
    Object[] longValues = model.longValues;
    for (int i = 0; i < 5; i++) {
    column = table.getColumnModel().getColumn(i);
    try {
    comp = column.getHeaderRenderer().
    getTableCellRendererComponent(
    null, column.getHeaderValue(),
    false, false, 0, 0);
    headerWidth = comp.getPreferredSize().width;
    } catch (NullPointerException e) {
    System.err.println("Null pointer exception!");
    System.err.println(" getHeaderRenderer returns null in 1.3.");
    System.err.println(" The replacement is getDefaultRenderer.");
    comp = table.getDefaultRenderer(model.getColumnClass(i)).
    getTableCellRendererComponent(
    table, longValues[i],
    false, false, 0, i);
    cellWidth = comp.getPreferredSize().width;
    if (DEBUG) {
    System.out.println("Initializing width of column "
    + i + ". "
    + "headerWidth = " + headerWidth
    + "; cellWidth = " + cellWidth);
    //XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
    column.setPreferredWidth(Math.max(headerWidth, cellWidth));
    public void setUpSportColumn(TableColumn sportColumn) {
    //Set up the editor for the sport cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the sport cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for combo box");
    sportColumn.setCellRenderer(renderer);
    //Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = sportColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the sport to see a list of choices");
    class MyTableModel extends AbstractTableModel {
    final String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final Object[][] data = {
    {"Mary ", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    public final Object[] longValues = {"Angela", "Andrews",
    "Teaching high school",
    new Integer(20), Boolean.TRUE};
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    * JTable uses this method to determine the default renderer/
    * editor for each cell. If we didn't implement this method,
    * then the last column would contain text ("true"/"false"),
    * rather than a check box.
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    if (DEBUG) {
    System.out.println("Setting value at " + row + "," + col
    + " to " + value
    + " (an instance of "
    + value.getClass() + ")");
    if (data[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    //With JFC/Swing 1.1 and JDK 1.2, we need to create
    //an Integer from the value; otherwise, the column
    //switches to contain Strings. Starting with v 1.3,
    //the table automatically converts value to an Integer,
    //so you only need the code in the 'else' part of this
    //'if' block.
    try {
    data[row][col] = new Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(TableRenderDemo.this,
    "The \"" + getColumnName(col)
    + "\" column accepts only integer values.");
    } else {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG) {
    System.out.println("New value of data:");
    printDebugData();
    private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + data[i][j]);
    System.out.println();
    System.out.println("--------------------------");
    *This program for add some buttons and a table on JFrame
    import java.awt.*;
    import javax.swing.*;
    public class TestMain extends JFrame{
    private static TableRenderDemo tRD;
         private static TestMain tM;
    protected static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         setSize(800,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GridLayout(3,1));
    tRD=new TableRenderDemo();
    dC=new DrawCalendar();
    addItems();//add Buttons to JFrame
    private void addItems(){
         c.add(dC); //add Buttons to JFrame
         //c.add(tRD); //add Table to JFrame     

    Click Here and follow the steps to configure your Linksys Router with Version FIOS.

  • HT1222 I have tried to download iOS7 but the iTunes keep asking me to upgrade iTunes version 11.5 and my one is 11.5 so when I clicked it says no update available. Could you please help me? many thanks.

    I have tried to download iOS7 but the iTunes keep asking me to upgrade iTunes version 11.5 and my one is 11.5 so when I clicked it says no update available. Could you please help me? many thanks.

    Hi bodeboni!
    You will probably want to download the newest version of iTunes (iTunes 11.1) directly from Apple and install it on your computer if you are having issues updating. The link for the download can be found here:
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Hi there, I want to change the background-color of the browser, when a popup-picture is shown. This picture pops up by clicking a hyperlink in the text...can anyone help me please...thanks a lot

    Hi there, I want to change the background-color of the browser, when a popup-picture is shown. This picture pops up by clicking a hyperlink in the text...can anyone help me please...thanks a lot

    Hi,
    CSS is interpreted by your browser, so server cache seems unlikely in htis case. There is however some hierarchy in CSS, so parts of the APEX CSS, theme CSS or page CSS might overwright or block yours.
    Does changing the CSS on runtime affect your page? Eg, run the following in your browser console and see if your page turns black: $('#uBodyContainer').css("background-color","black")
    Also try moving up your css in the hierarchy labeling it as important:
    div#uBodyContainer { 
      background-color:#000000 !important;  
    See:Assigning property values, Cascading, and Inheritance
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • When I try to set up Icloud control panel in Windows Vista, I get "your setup couldn't be started because the Icloud server stopped responding. I've tried loads of fixes suggested on the net but none worked. Can anyone help me please?

    When I try to set up Icloud control panel in Windows Vista, I get "your setup couldn't be started because the Icloud server stopped responding. I've tried loads of fixes suggested on the net but none worked. Can anyone help me please?

    Hello, ksb2. 
    Thank you for visiting Apple Support Communities.
    We are investigating this issue. This article will be updated as more information becomes available.
    iCloud: iCloud Control Panel setup cannot be started
    http://support.apple.com/kb/TS5178
    Cheers,
    Jason H.

  • Flash swf that runs on every browser except in Firefox. Can anyone help me please?

    Hello.
    I have an flash swf in a site that runs on every browser except in Firefox. I get an warning telling me that the page requires a newer version of flash player but i already have the 10,0,32,18 and the swf was published for flash player 9.
    Can anyone help me please?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • I have just got a Nikon D810 but CC wont open my raw file, can anyone help me please?

    I have just got a Nikon D810 but CC wont open my raw file, can anyone help me please?

    Ah ok shall try that now, thank you very much for your help

  • When I submitted my iPhoto book to Apple, an error caused the  image file to be unreadable or unprintable,why can anyone help me please

    when I submitted my iPhoto book to Apple, an error caused the  image file to be unreadable or unprintable,why can anyone help me please:)
    what I did with my system was following:
    1. Update your software.
    2. Restart your computer.
    3. Make sure all applications are closed.
    4. Open iPhoto or Aperture.
    5. While all other applications are closed, preview your print product as a
    PDF.
    6. Resubmit your order. 
    and still my PDF ibook file looked like my photos were scratched across the photos. Please help:)
    Thank you
    CJ

    Yes me too!!
    I thought that I had done someting wrong.  The first time it was my first attempt so I did not preview the photobok (did not know this trick).  When I did the cover photos were completely ruined with lines and code.
    The second time I changed everything and even made a different sized book - thinking my photo files were too big.  I dutifully previewed before buying the book and everything was fine.  Then a few days later got the usual e-mail message from Apple. When I previewed the project again ALL of the photos were corrupted.
    What to do - I need to get the photobook to friends to celebrate their engagement!
    If I saved the pdf then submitted this would that work??
    Any thoughts - I am working on a large project and do not want to go any further if all the work will be ruined on buying the book.

  • I am having trouble fading out a song at the end of an iMovie.  Also, the volume of the song is too high...I would like it to be more background music?  I have tried everything and can't figure it out...Can anyone help me, Please!!??

    I am having trouble fading out a song at the end of an iMovie.  Also, the volume of the song is too high...I would like it to be more background music?  I have tried everything and can't figure it out...Can anyone help me, Please!!??

    Did you ever resolve the iCloud problem.I am in the same position and its driving me mad!!! If you have a link to an solution I would appreciate it.

  • Accidently i have removed the disk utility can anyone help me please

    i have accidently removed the disk utility.... can anyone help me please..

    The problem with junk utilities such as MacKeeper is that they are capable of causing damage that is impossible to inflict on a Mac using normal means.
    MacKeeper is not the only such utility; it is merely the most visible due to its aggressive and highly successful marketing tactics.
    Get rid of MacKeeper by following these instructions exactly as written:
    If you used MacKeeper to encrypt any files or folders, use MacKeeper to un-encrypt them.
    Quit the MacKeeper app if it is running.
    Open your Applications folder: Using the Finder's Go menu, select Applications.
    Drag the MacKeeper icon from your Applications folder (not the Dock) to the Trash.
    You will be asked to authenticate (twice):
    You do not need to provide a reason for uninstalling it:
    Click the Uninstall MacKeeper button. You will be asked to authenticate again.
    After it uninstalls you may empty the Trash. All that will remain is an inert log file that does nothing but occupy space on your hard disk.
    Next: Test your Mac for operation. If it is still exhibiting problems, you may need to undo damage that occurred as a result of using MacKeeper. At the extreme this could include erasing your Mac and rebuilding your system from the ground up, but start by downloading and installing the OS X Combo Update I linked earlier. That may be all that is necessary to restore OS X to normal, but other programs you installed may need to be installed again.

  • Whilst looking at cars I am unable to open out a page which I click ?for more detail. can anyone help ?please

    I am looking at used cars and I have found one I'm interested in. However, when I click as instructed to see more detail, the screen goes black.It appears that the address bar ges idle. Can anyone help me please?

    Can you provide a link?

Maybe you are looking for

  • How to disable menu items through c# in adobe x standard. I didn't find the required APIs.

    Hi We are working on a desktop application on C# which uses Adobe Express 5.0. to view the PDF files. Recently we had an issue reported that PDFs created in Adobe 9 are not opening up. So we decided to upgrade to Acrobat Adobe X Standard. Now the iss

  • Unable to get Blue Tooth working on X60 Model 6363 - tried everything

    1. FN+F5 only shows WWAN, no Blue Tooth transmitter shown (slider switch is ON, latest driver installed) 2. No Blue Tooth device shown under Device Manager 3. Blue Tooth service is running Windows Vista, latest Bios, latest drivers. I know it's somet

  • Distributing Forms in LiveCycle using Acrobat 9

    I have created a four page form with flowable subforms and calculated fields.  The form works fine in preview but for some reason I can't get it to distribute.  The final form is anywhere from 1 to 4 pages depending on the options the user selects/ne

  • Notes in calendar got deleted

    i just noticed that after all of the upgrades (computer and iOS devices), the notes that i created in a couple of recurring calendar events got deleted from everywhere.  everyday i would update a recurring entry with specific notes for that day and n

  • Scalability (number of connections)

    I am developing a client-server distributed application that will potentially have a large number of clients. I am wondering what the limits are as far as the number of simultaneous connections. With JDK 1.4.x I know that this number goes up drastica