Jlong to long !

Hi ;
What casting should I do to jlong inorder to get a proper long representing the same number .
running the next example gives the below resault :
int main()
jlong f = 40956436157 ;
unsigned long g = (unsigned long)f ; // my jlongs will always be positive values
cout <<"testing ="<<g<<endl;
return 1 ;
resault :
testing =2301730493
(I tried first with simple long casting and I got :      -1993236803 )
I understand that the problem must be with the number of bits representing the long type in c++ , but are there any ideas ?
Thanks ;
Adaya .

updates ...
checking with the sizeof(type) method it realy seems that the problem is with the number of bytes that long and jlong are represented by ,
while long is represented by 4 bytes (which is very odd-isnt it suppose to be 8?) jlong is represented by 8...
is there anything to do about it ?
Adaya .

Similar Messages

  • JbyteArray - char * and jlong - long

    Hi,
    I've been trying to figure out how to convert the following:
    jbyteArray to a char *, void *, or something similar
    jlong to a long
    This is for C++ code.
    I can't seem to figure it out, or find any documentation about this conversion online!!
    Thanks.

    Generally, avoid casting from jlong to long as the definition of long is platform dependent and not necessarily a 64 bit wide. Otherwise a regular cast works here although you may lose bits when casting to a 32-bit integer.
    A byte array can be accessed through the following:
    jsize  len  = (*env)->GetArrayLength(env, arr);
    jbyte *body = (*env)->GetByteArrayElements(env, arr, 0);Casting jbyte to char should not be critical as both are most likely single-byte entities.
    http://java.sun.com/docs/books/tutorial/native1.1/implementing/array.html
    http://java.sun.com/docs/books/tutorial/native1.1/implementing/cpp.html

  • JNI errors with C++ ULONG

    I apologize in advance if I am posting this on the wrong forum, I didn't see one for JNI.
    Does anyone know anything about passing a ULONG number from C++ to Java through JNI??
    I am creating a jlong variable:
    jlong tag = (long) e->tag();where e->tag() returns a ulong. We also tried it without the cast to long and got the same results.
    The result is that we are getting the negative equivalent of that ulong. We want all the bits of the number to be the same, and not negative. For instance, if the ulong is 23456789, the number we get back is -23456733, but what I really want is 23456789.
    Any help is appreciated.
    Tonya

    sorry, that output I listed is an example. Some real output is:
    ulong is 2147483656
    value returned to Java code: -2147483640

  • Compiling a .dll in netbeans (Almost there)

    (I have the GNU g++ cygwin compile installed and selected to be used as C compiler in netbeans)
    I have got so far but falling at the last hurdle.
    I have modified a java wrapper so that I can put it in a package, I adjusted the code, compiled it, called javah on the source class using:
    javah packagename.classname
    which worked
    I've then re-written the wrapper.c file so that it includes this new header file classname.h
    I've re-written the methods so that they start with Java_packagename1_classname1_ (the way they appear in the header)
    I've created a new C/C++ project in netbeans (Selected dynamic linked library in options)
    I've added the exsisting classname.h files + Cdll.h file to the header files (both included in the wrapper.c)
    Now I should be set to compile my wrapper.c into a .dll file
    I press the build button and I get this:
    Running "C:\cygwin\bin\make.exe  -f Makefile CONF=Debug" in C:\Documents and Settings\test\DynamicLibrary_3
    /usr/bin/make -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    make[1]: Entering directory `/cygdrive/c/Documents and Settings/test/DynamicLibrary_3'
    mkdir -p build/Debug/Cygwin-Windows/_ext/C_/Documents_and_Settings/test/DynamicLibrary_3/../My_Documents/Java_Projects/USB_K8055/build/classes
    gcc.exe    -c -g -IC\:/Program\ Files/Java/jdk1.6.0_01/include -IC\:/Program\ Files/Java/jdk1.6.0_01/include/win32 -fPIC  -o build/Debug/Cygwin-Windows/_ext/C_/Documents_and_Settings/test/DynamicLibrary_3/../My_Documents/Java_Projects/USB_K8055/build/classes/J-k8055-wrapper.o ../My\ Documents/Java\ Projects/USB_K8055/build/classes/J-k8055-wrapper.c
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:1: warning: -fPIC ignored for target (all code is position independent)
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:18:41: USB_interface_usb_interface.h: No such file or directory
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:19:22: K8055D_C.h: No such file or directory
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c: In function `Java_USB_1interface_usb_1interface_JReadAllAnalog':
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:97: error: request for member `NewLongArray' in something not a structure or union
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:98: error: request for member `GetLongArrayElements' in something not a structure or union
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:117: error: request for member `ReleaseLongArrayElements' in something not a structure or union
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c: In function `Java_USB_1interface_usb_1interface_JReadDigitalChannel':
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:210: error: `false' undeclared (first use in this function)
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:210: error: (Each undeclared identifier is reported only once
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:210: error: for each function it appears in.)
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c: In function `Java_USB_1interface_usb_1interface_JSetCurrentDevice':
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:319: error: parameter name omitted
    ../My Documents/Java Projects/USB_K8055/build/classes/J-k8055-wrapper.c:319: error: parameter name omitted
    make[1]: *** [build/Debug/Cygwin-Windows/_ext/C_/Documents_and_Settings/test/DynamicLibrary_3/../My_Documents/Java_Projects/USB_K8055/build/classes/J-k8055-wrapper.o] Error 1
    make[1]: Leaving directory `/cygdrive/c/Documents and Settings/test/DynamicLibrary_3'
    make: *** [.build-impl] Error 2
    Build failed. Exit value 2.Any ideas ?
    Thanks.

    Ok I'm still stuck here is my test code as simple as I can make it:
    Main.java
    package dlltestapp;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    public class Main {
        static {
             System.loadLibrary( "J-K8055-wrapper" );
        public static void main(String[] args) {
            USB_interface_K8055.JOpenDevice(0);
            USB_interface_K8055.JSetAllDigital();
            try {
                Thread.sleep(1000);
            } catch (InterruptedException ex) {
                Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
            USB_interface_K8055.JClearAllDigital();
            USB_interface_K8055.JCloseDevice();
    }USB_interface_K8055.java
    package dlltestapp;
    public class USB_interface_K8055 {
    public static native long JOpenDevice(long i);
    public static native void JCloseDevice();
    public static native void JSetAllDigital();
    public static native void JClearAllDigital();
    }dlltestapp_USB_interface_K8055.h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class dlltestapp_USB_interface_K8055 */
    #ifndef _Included_dlltestapp_USB_interface_K8055
    #define _Included_dlltestapp_USB_interface_K8055
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     dlltestapp_USB_interface_K8055
    * Method:    JOpenDevice
    * Signature: (J)J
    JNIEXPORT jlong JNICALL Java_dlltestapp_USB_1interface_1K8055_JOpenDevice
      (JNIEnv *, jclass, jlong);
    * Class:     dlltestapp_USB_interface_K8055
    * Method:    JCloseDevice
    * Signature: ()V
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JCloseDevice
      (JNIEnv *, jclass);
    * Class:     dlltestapp_USB_interface_K8055
    * Method:    JSetAllDigital
    * Signature: ()V
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JSetAllDigital
      (JNIEnv *, jclass);
    * Class:     dlltestapp_USB_interface_K8055
    * Method:    JClearAllDigital
    * Signature: ()V
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JClearAllDigital
      (JNIEnv *, jclass);
    #ifdef __cplusplus
    #endif
    #endifK8055D_C.h
    ** Microsoft Visual C++ 2005 Project for the K8055 USB I/O Card **
    **                    Copyright Velleman 2006                   **
    **                        www.Velleman.be                       **
    **                         Developed by                         **
    **                       RE-Applications                        **
    **                   www.RE-Applications.be                     **
    #ifdef __cplusplus
    extern "C" {
    #endif
    #define FUNCTION __declspec(dllexport)
    FUNCTION long __stdcall OpenDevice(long CardAddress);
    VOID __stdcall CloseDevice();
    FUNCTION long __stdcall ReadAnalogChannel(long Channel);
    VOID __stdcall ReadAllAnalog(long *Data1, long *Data2);
    VOID __stdcall OutputAnalogChannel(long Channel, long Data);
    VOID __stdcall OutputAllAnalog(long Data1, long Data2);
    VOID __stdcall ClearAnalogChannel(long Channel);
    VOID __stdcall ClearAllAnalog();
    VOID __stdcall SetAnalogChannel(long Channel);
    VOID __stdcall SetAllAnalog();
    VOID __stdcall WriteAllDigital(long Data);
    VOID __stdcall ClearDigitalChannel(long Channel);
    VOID __stdcall ClearAllDigital();
    VOID __stdcall SetDigitalChannel(long Channel);
    VOID __stdcall SetAllDigital();
    FUNCTION bool __stdcall ReadDigitalChannel(long Channel);
    FUNCTION long __stdcall ReadAllDigital();
    FUNCTION long __stdcall ReadCounter(long CounterNr);
    VOID __stdcall ResetCounter(long CounterNr);
    VOID __stdcall SetCounterDebounceTime(long CounterNr, long DebounceTime);
    VOID __stdcall Version();
    FUNCTION long __stdcall SearchDevices();
    FUNCTION long __stdcall SetCurrentDevice(long lngCardAddress);
    #ifdef __cplusplus
    #endifJwrapperZC.cpp (To be compiled to J-K8055-wrapper.dll)
    #include <stdio.h>
    #include <windows.h>
    #include <jni.h>
    #include <dlltestapp_USB_interface_K8055.h>
    #include <K8055D_C.h>
    JNIEXPORT jlong JNICALL Java_dlltestapp_USB_1interface_1K8055_JOpenDevice
      (JNIEnv *env, jclass in_cls, jlong CardAddress)
       long retCode = -1 ;
       retCode = OpenDevice(CardAddress);
       return retCode;
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JCloseDevice
      (JNIEnv *env, jclass in_cls)
         CloseDevice();
         return ;
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JSetAllDigital
      (JNIEnv *env, jclass in_cls)
         SetAllDigital();
         return ;
    JNIEXPORT void JNICALL Java_dlltestapp_USB_1interface_1K8055_JClearAllDigital
      (JNIEnv *env, jclass in_cls)
         ClearAllDigital();
         return ;
    }Attempting to compile the .dll I get:
    Running "C:\cygwin\bin\make.exe  -f Makefile CONF=Debug" in C:\Documents and Settings\Administrator\My Documents\NetBeansProjects\DLLtestAppC++
    /usr/bin/make -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    make[1]: Entering directory `/cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++'
    mkdir -p build/Debug/Cygwin-Windows
    g++.exe -mno-cygwin -Wl,--add-stdcall-alias -shared -m32   -c -g -IC\:/Program\ Files/Java/jdk1.5.0_06/include -IC\:/Program\ Files/Java/jdk1.5.0_06/include/win32 -I. -fPIC  -o build/Debug/Cygwin-Windows/JwrapperZC.o JwrapperZC.cpp
    JwrapperZC.cpp:1: warning: -fPIC ignored for target (all code is position independent)
    g++: --add-stdcall-alias: linker input file unused because linking not done
    mkdir -p dist/Debug/Cygwin-Windows
    g++.exe -mno-cygwin -Wl,--add-stdcall-alias -shared -m32    -mno-cygwin -shared -o dist/Debug/Cygwin-Windows/libDLLtestAppC__.dll -fPIC build/Debug/Cygwin-Windows/JwrapperZC.o 
    build/Debug/Cygwin-Windows/JwrapperZC.o: In function `Java_dlltestapp_USB_1interface_1K8055_JOpenDevice':
    /cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++/JwrapperZC.cpp:15: undefined reference to `_OpenDevice@4'
    build/Debug/Cygwin-Windows/JwrapperZC.o: In function `Java_dlltestapp_USB_1interface_1K8055_JCloseDevice':
    /cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++/JwrapperZC.cpp:28: undefined reference to `_CloseDevice@0'
    build/Debug/Cygwin-Windows/JwrapperZC.o: In function `Java_dlltestapp_USB_1interface_1K8055_JSetAllDigital':
    /cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++/JwrapperZC.cpp:43: undefined reference to `_SetAllDigital@0'
    build/Debug/Cygwin-Windows/JwrapperZC.o: In function `Java_dlltestapp_USB_1interface_1K8055_JClearAllDigital':
    /cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++/JwrapperZC.cpp:58: undefined reference to `_ClearAllDigital@0'
    collect2: ld returned 1 exit status
    make[1]: *** [dist/Debug/Cygwin-Windows/libDLLtestAppC__.dll] Error 1
    make[1]: Leaving directory `/cygdrive/c/Documents and Settings/Administrator/My Documents/NetBeansProjects/DLLtestAppC++'
    make: *** [.build-impl] Error 2
    Build failed. Exit value 2.Plz. help
    Thanks.

  • Converting jlong to unsigned long

    Hi Everyone,
    I am calling a interface from a dll file which need a unsigned long or long as a parameter. In the C program side, how can I convert the jlong to unsigned long or long and then call the interface from the dll file? Also, how can I convert the long back to jlong and return back to Java side? Thank you.
    Jacky

    Straight cast - BigInteger would be overkill.

  • Exception access violation using jlong instead of jint

    Hi,
    I hope you can help me.
    I'm using Java5 under Windows XP and I'm developing under Eclipse.
    I try to use an "old" c-Application accesed via JNI.
    Status Quo is that, I have access to the c-side, over my JNI-conform DLL. My current task is to translate the c-side structs to java-objects. This also works, but only with limitation.
    Calling methods bidirectional is working, manipulation a java-object is like a walk on an warm and sunny Saturday afternoon.
    But I'm not able to use all possible parameters (for now I have tried to use jobject, jstring, jint, jboolean, jlong).
    The first problem I had, were using Strings as parameters, but this now I deal with the loopway over java/lang/object (using java/lang/String results in an access_violation).
    The next problem, and the harder one, is, that I cannot use the type long or jlong.
    int (jint) is no problem, with int all works fine, but if I change the environment, creating and using long, I allways get an the access_violation shown below.
    Is there anything, I need to know?
    working c-side-code:
    jobject someObject;
    jint anIntegerValue;
    anIntegerValue =5;               
    jmethodID mid3 = (*env)->GetMethodID(env, cl, "initReturnSomeObject", "(ILjava/lang/Object;)Ljava/lang/Object;");
                   if(mid3 == (jmethodID)0) printf("\ndooofes MethodName4!\n");
                             else {
                                  const char* myParams;
                                  myParams = "ooooohwow!!!";
                                  someObject = (*env)->CallObjectMethod(env, jobj, mid3,
                                             anIntegerValue, (*env)->NewStringUTF(env, myParams));
                             }wokring java-side-code
    public Object initReturnSomeObject(int i, Object obj) {
              String s = (String)obj;
              System.out.println("String: "+s+"\nInteger: "+i);
              some = new SomeObject(s,i);
              if(some==null) System.out.println("Some is not yet initialized, FEAR!!!!\n");
              else System.out.println("Yoh, I'm soooo many good!! \nSome:\nString: "+some.getS1()+"\nInt: "+some.getI1()+"\n");
              return (Object)some;
    so, und this code, doesn't work. you can see, the changes are dramatically!! ;)
    sorry for my sarcasm. I do not know, why it doesn't work.
    jlong aLongValue;
    aLongValue = 2;
    jmethodID mid3 = (*env)->GetMethodID(env, cl, "initReturnSomeObject", "(JLjava/lang/Object;)Ljava/lang/Object;");
                   if(mid3 == (jmethodID)0) printf("\ndooofes MethodName4!\n");
                             else {
                                  const char* myParams;
                                     myParams = "ooooohwow!!!";
                                  someObject = (*env)->CallObjectMethod(env, jobj, mid3,
                                            aLongValue, (*env)->NewStringUTF(env, myParams));
         public Object initReturnSomeObject(long i, Object obj) {
              String s = (String)obj;
              System.out.println("String: "+s+"\nInteger: "+i+"\nLong: ");
              some = new SomeObject(s,(int)i);
              if(some==null) System.out.println("Some is not yet initialized, FEAR!!!!\n");
              else System.out.println("Yoh, I'm soooo many good!! \nSome:\nString: "+some.getS1()+"\nInt: "+some.getI1()+"\n");
              return (Object)some;
    # An unexpected error has been detected by Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d942975, pid=1784, tid=1648
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # V  [jvm.dll+0x182975]
    # An error report file with more information is saved as hs_err_pid1784.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    #do you need some other informations or details? something out of the log-file? ok, i have to take the bus, so sorry for uncomplete informations or sentences ;)
    till later.

    Hi,
    I'm quite sure, the signature is correct. For failure check, yesterday I ran javap to check the signature, but I do also mean, that I changed the signature afterwards for several time. And, it works ;) at least the way, using Integer.
    Trying to use java/lang/String everytime I got the Error, that the method could not be found - this is the part, I was wrong in my description. So the error-Message is a different one.
    Belonging to the question for assumptions I made... it's difficult. I'm quite new to JNI, so, I don't know, what I can assume to do. The Method call seems to be a kind of reflection-mechanism. So I assume that the behaviour is similar. But reflection I'm not very firm, either ^^.
    What I do assume is, that the parameter-value J fits to the java-type jlong. But a work around on this, I will try today. getting the jlong into an char* or using long instead of jlong or using Ljava/lang/Long; or a casted Long as Ljava/lang/Object; ...
    I'm anxious to the ideas, I will have, bypassing this point. if there is no way, I will write a file, send a email or something like this ;)
    Thx for thinking about my problem jschel!! It's great not to be alone.
    John

  • MacOSX / jni / jvm fmk 1.4.2 / passive long to a native static mtd get 0 !

    I am on MacOSX 10.3.8 working with the java framework 1.4.2.
    I have a problem with the JNI by passing long to a static native method (a class method). It is ok with a non static native method.
    The method is in a OnX.Test class with a signature :
    public static native void nativeTestStatic(long jarg1);
    which is declared in C++ :
    extern "C" {
    JNIEXPORT void JNICALL Java_OnX_Test_nativeTestStatic(JNIEnv* aEnv,jclass jcls,jlong jarg1) {
    printf("debug : %d\n",jarg1);
    The printf shows always 0 !!!!
    I have seen that in a big application in which some C++ code is wrapped for java by using SWIG. And C++ pointers being mapped to long, I let you imagine the disaster...
    Is it a "well known problem" ????
    Regards

    Hello
    Sure, I have verified that. I have done various System.print
    before the calls and within the JNI functions.
    Moreover, I have now a simple test environment (then a Test.java
    and a TestJNI.c) in which I pass numbers explicitly.
    I have tried to pass directly like nativeFunc(123456) or doing :
    long i = 123456;
    nativeFunc(l);
    I tried to pass big long numbers to be sure that I am not in some
    tricky byteswapping situation. (sizeof(jlong) says 8 bytes for me).
    What is interesting is that it is related to static methods (then class methods).
    I do not see that on object methods ; here the longs are passed correctly.
    Cheers

  • Long in JNI

    hey as we have
    jstring for string
    jint for int
    what if i have to use long
    what is its equivalent
    like jlong or something????????
    Thanx

    Yes.
    And it will probably be quite a bit easier to program in JNI if you find some reference materials that document it (like a book.) Then you don't have to wait hours for an answer.

  • Mini-DVI to Video Adapter No Longer Compatible

    This is an infuriating subject for me. I had a 2007 2.0Ghz Intel Core 2 Duo White Macbook. On a daily basis i used it with my widescreen TV. I am not made of money, so it is an old tube screen that requires a composite connection.
    When that macbook decided to not work anymore, even after several repairs, they replaced it with a new 2009 2.0Ghz Intel Core 2 Duo white macbook. Of course, the higher spec that came with this seemed like i should have been grateful. No, I've just been P.O'd ever since. I can no longer use my Macbook to watch movies on my big screen as the DVI adaptor which i paid a completely stupid amount of money for no longer works. I'm sure this problem could be fixed with some kind of a patch for the NVIDIA GeForce 9400M it comes with. But i guess they have just forgot about the white macbook now. Great.
    Does anyone out there know of any way around this problem? Again, i want to connect a 2.0GHz Intel Core 2 Duo white MacBook introduced after January 2009 to a composite connection as once used in the Mini-DVI to Video Adaptor. Anyone know of a solution?
    I ask again for this to not be deleted like all my other negative posts. It DOES contain a question, which i very much wish to be answered.
    Regards,
    Steve.
    Message was edited by: skeletal_wreck

    I dont think you understand. Yes, it does use the same connections - it all connects up properly. But after 2009 the white macbooks no longer recognize the TV-Out when you connect the mini-DVI to Video adaptor.
    On my old 2007 white intel macbook that had the old graphics card, i was able to connect it all up then go into display preferences and it allowed me to set up the screens as i wanted (ie mirrored, side by side etc). Now, under displays settings, that is no where to be seen.
    Its a nothing to do with anyhting being wrong, its just known that Apple discontinued support for it. Even on the apple store website here, you will see in small print under the adapter that it is not supported on white macbooks from 2009 January onwards.
    I want to know is there any other solutions.

  • Can I purchase Creative Cloud subscriptions for longer than one year at a time?

    I work in the design department of a large business, currently using Creative Suite 6 (Design Standard edition, which includes PS and AI).
    I'd like to get the some of the new CC features, but my manager won't commit to a turnkey month-to-month or even annual rental of Creative Cloud apps (it's a pain for our department's purchaser to have to do orders more than once a year). That said, if they could take care of, say, two years at once, I might get the software. Is this an option? I'm one of only a few folks who use Adobe software (it's not a design business; we're just part of a small design department, and all software purchases need to go through this person, after which they're reimbursed). I'm not interested in any of the extra storage or central administration options that come with the higher priced business subscription.
    Thanks!

    http://www.adobe.com/au/products/creativecloud/faq.html
    Are there any unique benefits that come with my paid membership?
    Yes, as a member of Creative Cloud, you get many benefits that you do not get when you purchase a traditional shrinkwrapped product:
    Access to both the Mac OS and Windows® versions of the desktop applications and the ability to install them on your primary computer and one backup computer. So, if you have a Mac at home and a PC at work, you can install your applications on both as long as they are not running at the same time. See the product license agreements page for more information.

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

  • Windows no longer detecting my Audigy 4?(Non-P

    Hey all. I've had my Audigy 4 (non-Pro) installed and working super for about 50 days, but it started giving me a weird problem. Windows was no longer detecting the card! It was weird. DX Diag, programs like EVEREST... they all report no sound card whatsoever.
    Here are my PC specs:
    XP Home Edition
    Albatron K8X800 Pro
    S754 3200+ ClawHammer
    x 2 OCZ ELPE 52 MB(2-3-2-5)
    Visiontek XTASY X850XT PE
    x 80 GB SATA 2 Seagate, x 80 GB Maxtor
    Some other things to note:
    XP has been repaired. Went from Service Pack , updates, and all the way to Service Pack 2. The card requires XP w/SP2, yes, so I have that covered.
    Onboard audio is disabled through the bios. I have AC'97 integrated audio on this.
    My motherboard has fi've PCI slots - although I can only access 4 because my video card is in the way, and I have tried three of those and I get the same problem.
    I have tried it in other PCs in my house, double-checked each time - so it is not ESD as I originally believed. It works just fine on those PCs. It is being not located only on MY PC.
    So guys and gals, I do not know what to do... I am stumped. It's the weekend so I can't call Creative support until Monday. I don't want to request an RMA through my warranty because clearly it's just a problem with my PC. What should I do?!Message Edited by Celsius on -26-2005 07:36 PM

    Device not recognized in iTunes

  • PCS no longer sees BT Widcomm driver

    Hi
    [cross-posted in Connections]
    I have a 6230i and a Safecom BT dongle using the Widcomm 1.4.2 build 10 BT driver s/w on Vista.
    This all used to work OK, but after installing PCS v6.85.14.1, the Nokia Connection Manager now no longer shows the Bluetooth (Widcomm) option - just the Bluetooth (Microsoft) option. If I try to check the MS option, I get the "Cannot use the connection type ... Code (OpenMedia)" error.
    I've tried all sorts of repairing and uninstalling BT & PCS s/w but to no avail.
    Any ideas why PCS no longer seems to recognise the Widcomm BT driver?
    Message Edited by mrb08 on 17-Feb-2008 10:26 PM

    Just to close this off here's my post in the other thread.
    Yes I finally managed to confirm that it's a PCS bug. Here's what I did.
    It appears that PCS cleaner app does not support Vista nor later versions of PCS. After uninstalling all Nokia s/w from my PC, checking no old Nokia folders remained, cleaning the registry and then reinstalling PCS 6.85.14.1, the "Cannot use the connection type ..." error remained. :-(
    Then I managed to find an old download of PCS (v6.82.27.0) and after installing that, the connection error is gone and the Bluetooth (Widcomm) option is back in Connection Manager! :-)
    How does one report a PCS bug to Nokia?

  • IPod Touch/Phone 4gens No Longer Detected in WINDOWS MY COMPUTER but OK in iTunes

    Since I have not found help online regarding the above situation I'm looking for help accordingly.   For most folks it's iTunes not detecting i-Devices, but my situation is unique.
    It started last night after I was on the phone for hours with Norton regarding error messages I was getting with Internet Security.  Those issues have been resolved.
    Again: iTunes detects and interacts successfully with ALL my iDevices.  Windows Vista > My Computer no longer does.
    Please help.

    Just now I performed the following:
    Turned off and turned back on AMDS(Apple Mobile Device) Service.
    Disabled Norton Internet Security, and tried checking if Windows would see my devices.
    For anyone who has Windows Vista you are familiar with the notes that play when you plug in a USB device: "da-dunk!"  Low-High note dadunk indicates connected.   High-low indicates it was disconnected.
    I can tell there is a problem because right after the Low-High dadunk in Vista I get a triple Low-note Du-du-dunk.
    Please help!

  • Error message: "playlists selected for updating no longer exist"

    I tried to update my ipod nano and I guess I had deleted a playlist, but since then, I have not been able to update. Every time I try, I get the following message:
    "Cannot be updated because all of the playlists selected for updating no longer exist."
    I haven't been able to highlight which playlists are selected to begin with.
    I read through the manual and thought that maybe rebooting the whole system might work. So I deleted Itunes from my computer and re-installed.
    Then I tried re-setting my ipod. So now I have nothing on my ipod.
    I also deleted everything from my library, thinking it might help to start from scratch. Nothing has worked.
    How do I "select" and "unselect" playlists so I can get up and running again?

    Here you go.
    http://discussions.apple.com/thread.jspa?messageID=607312&#607312

Maybe you are looking for

  • After new installing Solman 4.0 , the DSWP transaction not work

    hi gurut there, We did two new installing of solman 4.0 ( SQL Server database), after installing ,start up SAP and other  post-install steps... it seems ready,then I start to setup RFC with satellite systems ,and added server ,database,logical compon

  • HT5557 message failed to load because requested resource is missing.

    Cant redeem on I tunes no purchased books on I books Message failed to load because resource is missing.

  • How to reproduce Wear & Tear Texture in Adobe Photoshop CS5.1

    Hi everybody, I hope my question finds you all doing well. I am trying to work on a logo in Photoshop and I found an interesting design that I would like to imitate. I basically want to reproduce the "wear & tear/used/worn down" (whatever you wanna c

  • Pdf in Iframe - Scrolling problem

    Hi, We face the below mentioned problem. Would be great if someone could help us. Due to problems with uploading the attachment here, please send a email to the following email-id ([email protected]) and I shall send the attachment in response. Consi

  • CILK language installation error

    hi all; i'm using IMac with intel processor and i'm using Mac OS X 10.5.8 and i installed Cilk multithreading programming language ... but when i execute "make install" command after success full execution of ./configure, i get one error"error to exe