Dll Help call

Hello

I have a question on the call of dll.  I have a dll that I can call some functions but not others.  I get the "LabVIEW: an exception...". "error on some functions.  The prototype of function I can call is:

_ScriptSleep@4(dword param_1)

= stdcall calling convention

It works, but when I try to call this function, it does not work:

_ALeSetSpot@4(dword param_1)

= stdcall calling convention

These two functions have in front of them a "_".  I can't understand what I'm doing wrong.


Tags: NI Software

Similar Questions

  • DLL to call a subsidiary static library

    I have compiled a DLL using labwindows calling a subsidiary static library. I added a step to test that calls this DLL.  On my development station, everything is good.  The subsidiary library is named.  But, on a deployed workstation, I get a "cannot load the DLL.

    According to the reference manual, I can preload subsidiary attendance using the adapter of the CVI.  I get the same error on my deployed station...

    You get an "Unable to load a DLL" error when a dependency is missing.

    Please check this way:

    Download the tool free dependency walker- http://www.dependencywalker.com/

    Select the DLL (deployed machine).

    It will show you which component of the dependency is missing in the deployed machine.

    For CVI.

    Since you are using a static libarary - include you in the build when you build the project?

    It should be incorporated in your DLL. (help to add files to the DLL option in the CVI target settings).

    I hope this helps.

  • DLL Help application retired that we use now?

    Hello

    I used to search for DLL files in an online database provided by Microsoft.  It seems that it is no longer available.  It shows the DLL Help request was withdrawn on February 8, 2010 and is no longer accessible.

    Is there an available from Microsoft or another reputable vendor or Google my only option?

    Thanks for your time.

    Hello

    You will need to find a third party solution as the database was withdrawn on February 8, 2010.

    http://support.Microsoft.com/dllhelp/?DllType=file&l=55&S=1&x=17&y=14&Alpha= {KW_UTF8} & ei = UTF-8 & oe = UTF-8

    You can use your favorite search engine to find third-party solutions.

    Note: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

  • DLL function called change of entry

    Hello world

    I know that it is very basic; but I am not by my own. I am very new to LabVIEW and was not able to find a solution in the forum.

    I want to call a function in a DLL, every time when I press a button; but unfortunately, the function is called only when starting.

    So, how can I call a DLL function on a change of some of the entries?

    I have attached a screenshot. I tried the stuff. It did not work. Now, the function is called twice during startup.

    Thanks in advance and best regards,

    Chris

    If you want to call anything with a button, use a structure of the event with a value change event.

    I would recommend that you take one of the free LabVIEW tutorials available on the site and see examples of delivery - help > find examples.

  • Acquire GigE camera data using labview CIN or DLL to call.

    I am tring to acquire data from a basler runner line CCD camera (GigE).

    Because the NI Vision Development Module is not free, and the camera provide a C++ API and C and also some examples, so I plan on using the function CIN or call DLLS in labview to achieve. Is this possible?

    I tried to generate a DLL with the example of the company code of the camera. But encounter difficulties;

    I did that a little background in C++, but not familiar with it. The C++ Code example provides the camera is a C++ (a source Code file) and a .cproj file, it depends on other files, the camera API directory.

    If I build the project directly, it will create an application window, not in a DLL. I don't know how to convert a DLL project, given that other information such as dependence in the .cproj file, other than source code.

    Can someone help me with this?

    Don't forget that for the acquisition of a GigE camera, you must only Module of Acquisition of Vision, not the entire Vision Development Module. Acquisition of vision is much lower price and also delivered free with hardware NI Vision current (for example a card PCIe - 8231 GigE Vision of purchase). You need only Vision Development Module if you then want to use pre-made image processing duties. If you are just display, save images to disk, or image processing using your own code (for example to manipulate the pixels of the image in a table) you can do so with just Vision Acquisition.

    It is certainly possible to call DLL functions if LabVIEW by using a node called library, it would be quite a lot of work unless you are very familiar with C/C++. Since their driver interface is C++, you need to create wrapper functions in C in a DLL that you write. Depending on how much you want to expose functions, this could be a bit of work.

    Eric

  • [HELP] Call library function node...

    I have a DLL that has a function as follows:

    int GetMessageNameNumber (char * messageName [], const int MessageNumber);

     

    The function is used thus:

    char * MessageName = NULL;
    int MessageNumber = 0;
    ...

    error = HL1553API_GetMessageNumberName (& MessageName, MessageNumber);

    MessageName will contain the name of the message as a string.

    I saw the Devils own job trying to wrap this in a Labview module.  I have a knot of library function to call the above function, but I'm not sure what to set the parameter "MessageName" also!  I tried array of integers 8 signed bits, adapted to the Type of pointer to data in the table and then passed in an array of strings.  Whatever I do translates into LabView crash.  I know HL1553API_GetMessageNumberName works, because if I call it directly in TestStand it works fine.  I need LabView well!

    Any ideas?

    C a pointer to a string or an array of strings are completely ambiguous.

    char * something = char * something [].

    You can't tell the two apart from the syntax, but only from the documentation or an example of how the function is called. A C compiler treats the equal in terms of access (but a C++ compiler will do a syntactic differentiation when code syntax checking, with the possible result compile warnings when you are prompted to use a sufficiently high level of warning).

    The example shows that it is not a string array gets allocated by the caller and passed to the function, but a string pointer that is passed by reference. So the function will allocate a pointer and return it (a very atypical C practice at least for strings). This automatically raises the question when and how this pointer will be released? The documentation for this function should document the call from Manager memory allows to allocate this pointer and also point to the function to call to release. Ideally the library (DLL) provides an exported function for this purpose.

    Assume that everything I spoke so far is clear and available you need to cheat a bit LabVIEW. You need to configer a pointer size whole that is passed by reference. Now this whole in the diagram IS actually your channel. If you only need to pass this pointer to other library functions call that you're already doing. Otherwise if you need access to the contents of this string from the diagram LabVIEW, you will need to copy the information from this string to a real string of LabVIEW pointer.

    One way to do that is to use the export of the MoveBlock() C function that LabVIEW exports itself. I have explained this several times here on this forum and the MoveBlock research will no doubt find out these positions.

    Another slightly better way is to use the LStrPrintf() function which also exports of LabVIEW. To do this, you configure a library function call as follows:

    Library name: LabVIEW

    Function name: LStrPrintf

    Calling Convention: C

    Thread: both are possible, but the function is thread safe, so just use environment

    return parameter: int32 (there is a possible LabVIEW Manager error code)

    1st parameter: handle string of LabVIEW, passed by value

    parameter 2: C string pointer

    3rd parameter: integer pointer size, passed by valu

    Wire an empty string in the first parameter constant.

    Wire a constant containing the text '%s' without the quotes on the 2nd.

    The pointer to your thread on the 3rd string

    The function will return 0 as a return value and the content of the string on the side of the exit of the 1st parameter or a zero value indicating that a mistake to return back.

  • The DLL Help

    Hello!

    Could you help me, how to call this function in Labview? It is very important for me!

    Thank you!

    I am on the GetCameraList pointer parameter.


  • can not find size_t during import a dll and calling a labview crash function

    Hello, experts

    I need to use FingerLakeInstrument DLL (see attachment) within Labview for talking to a CCD camera. It is built from microsoft visual studio C++

    I unzip FLI dll in my D:\proj\...\linfli-32 and import the dll from there. created a c:\FLIDBG.txt FLI dll must write the debug message on it if are called the FLISetDebugLevel() or others.

    During the import of the dll, the first thing I got is (IE size_t) could not be found. I installed the free version of microsoft visual studio C++

    but can not find 'typedef unsigned int size_t;

    in the end, I just added

    typedef unsigned int size_t;

    in the libfli.h. Having done this, I am able to import all the functions in Labview and have a library of user called libfli.

    However, as soon as I start to call a simple function in a test.vi, as FLIGetLibVersion (char * worm, size_t len), which consists of nothing else the library, the labview crash.

    I created a simple C test.exe who calls a lot of functions with no problems

    any suggstion?

    concerning

    Xiaofeng

    You don't have not shown us how the LabVIEW code looks like. The size_t setting refers to the length of the buffer, in that you spend. In this case you pass a string. So, presumably, you created a buffer zone in LabVIEW to a string of sufficient size, and set the parameter "len" to the length of this string. You also have to make sure you use the correct calling convention?

  • Legit or a scam? -unsolicited from Windows Live Help calls

    Help please! My just called and said she received a call from a compnay called Windows Live Help (I know what it is, I don't think they have made appeals to the people). Anyway, they said their servers showed that his IP address of the computer was hacked and she needed them allow control of his computer. She calls a # a long time away, talked to a foreign person went somewhere in the start menu (it does not remember) and handed control of his computer for them. They were going to say that its shield of defense windows license has expired and that the ONLY way to restore his computer files / was to reactivate his license. $549 for the life, $159 for 1 year, they said that no tech IT doesn't center or a safety program could help restore and protect his computer. It totally sounds like a scam to me, but I want to make sure. I would also like to give my mother the correct steps to protect his computer in the future and remove all * these people may have installed or caused to his computer. Can someone please give me some advice?

    Hello

    Malware research does not solve the problem.

    You're not fighting a malware infection.

    It's a scam.

    Microsoft does not contact you unless YOU have made prior arrangements with them to do.

    There is an article in the link I'm you provide at the end of this one

    Read this Information from Microsoft:

    "Avoid scams to phone for tech support.

    http://www.Microsoft.com/security/online-privacy/avoid-phone-scams.aspx

    Don't be fooled of unsolicited calls. Don't provide personal information.

    Here are some of the organizations that cyber criminals claim to come:

    • Helpdesk Windows

    • Windows repair center

    • Microsoft technical support

    • Microsoft technical support

    • Windows Support Group Technical Department

    • Microsoft Research and Development Team (team of Microsoft R & D)

    Either these so-called "Microsoft" Tech companies want to sell you a worthless software, or remote access to your computer to try to steal your credit card and bank information and also achieve an identity theft on you.

    We have all the errors and warnings in our Event Viewer

    If you gave them remote access and you do Internet banking, contact your bank, explain, and change passwords.

    If you use your online credit card, cancel and get a new one issued to you.

    And the only way that willl you know that you are free to them is to backup your data and do a clean install of your operating system.

    See you soon.

  • Blue screen error: 0x0000008E (0xc0000006, 0x00000000, 0x8053B736, 0x8CDCEFE0) CI.dll HELP

    Hello I get a blue error screen... 3 days ago, my computer just beeps and restarted and blue screen... Safe mode does not work.

    The error is:

    0x0000008E (0xc0000006, 0x00000000, 0x8053B736, 0x8CDCEFE0)
    CI.dll

    I am at a loss on what to do to solve this problem, can someone help me? I use Windows Vista on your desktop... Computer is 5 years old and this is the first time for the same problem, did NOT install something again (hardware or software). Problem came out of the blue.

    I hope someone can help me

    Hi GeorgeKnight1,

    Try the methods below and see if it helps.

    Method 1

    Disconnect all external devices (printers, scanner, USB (universal serial bus) drives, etc.) except the keyboard and mouse and then start.

    If this solves the problem, then add back devices at a time until you discover the piece of hardware causing the issue. Then download software updated driver for the device.

    Method 2

    Try to start in last good known Configuration and see if you can start very well.

    Using the last good known Configuration

    http://Windows.Microsoft.com/is-is/Windows-Vista/using-last-known-good-configuration

    Method 3

    If the problem persists, I suggest you perform a startup repair and check if it makes a difference.

    Startup Repair: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

    What are the system recovery options in Windows 7?

    http://Windows.Microsoft.com/en-in/Windows-Vista/what-are-the-system-recovery-options-in-Windows-Vista

    In addition, you can do a System Restore the Windows Recovery Console.

    It will be useful.

  • Need help call a modal window of an interactive report

    Version 4.1.1.00.23

    Hello

    I have an interactive report I need to have a column in the report as a link to call a modal window that allows to display a report containing details of the clicked column.

    I have a page created with the report to view the details. I need help with the appeal of the page and display it as a modal window.

    I tried the modal Skillbuilders plugin, but it does not work because of an error that a.colorbox is not a function, and I don't know what to do about this.

    Can someone help me?

    Can what information I provide?

    Thank you

    Joe

    Greg,

    I felt that it was a separate subject than this thread.

    The thread was about a question I had with the plugin not show and this thread is more a general question.

    I referred to the plug-in here to avoid time wasting people telling me to this topic.

    I'm closing this thread.

    Thank you

    Joe

  • Help: call function that calls another function

    public var sourceFile:File = File.applicationDirectory.resolvePath ("serverIP.txt");

    public var fstream:FileStream = new FileStream();

    public var svrAdd:String = ";


    private void readText(e:Event):void {}

    svrAdd = fstream.readUTFBytes (fstream.bytesAvailable);

    FileStream ();

    }


    public function get vrieniHttpURL (): String

    {

    {}

    fstream.addEventListener (Event.COMPLETE, readText); // I want the readText run before function

    fstream.openAsync (sourceFile, FileMode.READ);    / / because I want to get the new value of svrAdd

    } while(svrAdd == '')

    var v: String = "http://'+ svrAdd +'/ Zion/php /'; "

       return v;

    }

    PLEASE HELP ME

    Hello

    First of all, please go through the Flex documentation on what is aynchronous operation is... ? I think that you are not familiar with this concept... Well, let me explain...

    public function get vrieniHttpURL (): String

    {

    {}

    fstream.addEventListener (Event.COMPLETE, readText);

    fstream.openAsync (sourceFile, FileMode.READ);

    delay execution

    } while(svrAdd == '')

    var v: String = "http://'+ svrAdd +'/ Zion/php /';"

    Return to v;

    }

    In the function as you posted the closure is not necessary it will loop continuously and defenitely will enter an infinite loop because svrAdd remains empty string("") how long loop you... it is because fstream.openAsync (sourceFile, FileMode.READ); is that an asynchronous operation means that the function redaText is executed only when the text file is read completely until the application does not wait for the service to call at the place he will perform the following lines of code in the function vrieniHttpURL i.e;

    var v: String = "http://'+ svrAdd +'/ Zion/php /';"

    Return to v;

    lines executed and your return value will be "http://Zion/php /" instead of http://votre_domaine/Zion/php /.

    Use the code to get the solution below:

    Import mx.core.Application;
      
    public var sourceFile:File = File.applicationDirectory.resolvePath ("serverIP.txt");
    public var fstream:FileStream = new FileStream();
    public var svrAdd:String = ";

    private void readText(e:Event):void {}
    svrAdd = fstream.readUTFBytes (fstream.bytesAvailable);
    FileStream ();
    svrAdd = 'http://'+ svrAdd +'/ Zion/php /';
    }
    public function vrieniHttpURL (): void
    {
    fstream.addEventListener (Event.COMPLETE, readText); I want the readText function to run before
    fstream.openAsync (sourceFile, FileMode.READ);    because I want to get the new value of the svrAdd
    }

     

     

    So whats that the above code is once when the 'vrieniHttpURL' function is called you open the file in read mode, and you cannot get the value of the svrAdd within this service because the contents of the file have not yet read... the content in the file is read-only once the readText function is executed... so once your readText function performed you will have your svrAdd filled with the correct value... That is to say; It contains your exact address. If after this you can use the value of svrAdd... you can not return the value of svrAdd with in the function 'vrieniHttpURL' as you did in your code.

     

    Give it a try...

     

    In fact I am unable to understand why you are so much unnecessary things... you can simply save your domain address in a variable and access in your application as below.

     

    public var svrAdd:String = http://yourdomainname.com/;

     

    If your domain name will change dynamically...?

     

    Please mark as answer if it helped you...

     

    Thank you

    Jean Claude Chari.S

     

     

     

     

     

     

  • DESPERATE FOR HELP CALL

    I always feel my Mac suspended until I have to give market power.

    To resolve this problem, I have:

    (1) had a new hard drive mounted (and then a second when the first failed)

    (2) installed extra RAM (now 24 GB).

    (3) completely removed Microsoft Office and reinstalled

    (4) run spyware checks

    (5) the PRAM reset

    (6) reset SMC

    (7) disk utility repairs

    I have attached my shot of report Etrecheck.

    Can someone please give me some advice.

    EtreCheck version: 3.0.1 (304)

    Report generated 2016-08-20 09:24:52

    Download EtreCheck from https://etrecheck.com

    Time 02:43

    Performance: Excellent

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: Apps are broken

    Hardware Information:

    iMac (27 inch, mid 2011)

    [Data sheet] - [User Guide] - [warranty & Service]

    iMac - model: iMac12, 2

    1 2.7 GHz Intel Core i5 CPU: 4 strands

    24 GB expandable RAM - [Instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1333 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1333 MHz

    0/DIMM1 BANK

    8 GB DDR3 1333 MHz ok

    BANK 1/DIMM1

    8 GB DDR3 1333 MHz ok

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Video information:

    AMD Radeon HD 6770M - VRAM: 512 MB

    iMac 2560 x 1440

    Software:

    OS X El Capitan 10.11.6 15G (31) - since startup time: less than an hour

    Disc information:

    ST3000DM001-1ER166 disk0: (3 TB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 3,00 (1.63-free) tuberculosis

    Recovery HD (disk0s3) < not mounted > [recovery]: 784 MB

    OPTIARC DVD RW AD - 5690H)

    USB information:

    Apple Inc. FaceTime HD camera (built-in)

    Apple Inc. IPhone.

    Hub USB 2.0 GenesysLogic 3 TB

    Western Digital Elements 107 3 TB

    EFI (disk1s1) < not mounted >: 315 MB

    Backup of Volumes/secondary secondary Backup (disk1s2): 3,00 (1.51 free) tuberculosis

    Fitbit Fitbit Inc. Base Station.

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    GenesysLogic USB2.0 hub

    Canon MX300 series

    Apple Inc. IPad.

    Dynastream Innovations ANT USB Stick m

    Computer, Inc. Apple IR receiver.

    Card reader Apple

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    Guardian:

    Mac App Store and identified developers

    Kernel extensions:

    / System/Library/Extensions

    com.leapfrog.codeless.kext [no charge] (2.0 - 2016-08-13) [Support]

    com.leapfrog.driver.LfConnectDriver [no charge] (1.12.0 - SDK 10.10 - 2016-08-13) [Support]

    Launch system officers:

    [no charge] 8 tasks of Apple

    [loading] Apple 157 jobs

    [running] Apple 73 jobs

    Launch system demons:

    [no charge] 44 Apple jobs

    [loading] Apple 157 jobs

    tasks of Apple 89 [running]

    Launch officers:

    com.brother.LOGINserver.plist [running] (2015-03-12)

    [loading] com.google.keystone.agent.plist (2016-07-12)

    Launch demons:

    [loading] com.microsoft.office.licensingV2.helper.plist (2016-07-09) [Support]

    Items in user login:

    Mac Fan Control-2 Application (/ Applications/Mac Fan Control - 2.app)

    Dropbox application (/ Applications/Dropbox.app)

    Plug-ins Internet:

    FlashPlayer - 10.6: 22.0.0.209 - SDK 10.9 (2016-07-13) [Support]

    QuickTime Plugin: 7.7.3 (2016-08-13)

    AdobePDFViewerNPAPI: 15.017.20053 - SDK 10.11 (2016-08-05) [Support]

    AdobePDFViewer: 15.017.20053 - SDK 10.11 (2016-08-05) [Support]

    Flash Player: 22.0.0.209 - SDK 10.9 (2016-07-13) [Support]

    Default browser: 601 - SDK 10.11 (2016-08-13)

    NP_2020Player_WEB: 5.0.94.0 - SDK 10.6 (2011-10-27) [Support]

    Web of Google Earth plugin: 7.1 (2016-08-20) [Support]

    OfficeLiveBrowserPlugin: 12.2.0 (2009-06-06) [Support]

    JavaAppletPlugin: 15.0.1 - 10.11 (2015-01-14) check the version of the SDK

    User Plug-ins internet:

    Web of Google Earth plugin: 7.1 (2013-10-08) [Support]

    Safari extensions:

    Dashlane - Dashlane Inc. - http://www.dashlane.com (2016-06-09)

    3rd party preference panes:

    Flash Player (2016-06-29) [Support]

    Fan HDD control (2016-06-25) [Support]

    Time Machine:

    Skip system files: No.

    Mobile backups: OFF

    Automatic backup: YES

    Volumes to back up:

    Macintosh HD: Disc size: 3,00 TB disk used: TB 1.37

    Destinations:

    [Network] data

    Total size: TB 3.00

    Total number of backups: 39

    An older backup: 06 17, 2016, 11:39

    Last backup: 20/08/2016, 08:43

    Backup disk size: too small

    Backup TB 3.00 size < (disk used TB 1.37 X 3)

    Secondary backup [Local]

    Total size: TB 3.00

    Total number of backups: 40

    An older backup: 06 16, 2016, 04:22

    Last backup: 20/08/2016, 07:29

    Backup disk size: too small

    Backup TB 3.00 size < (disk used TB 1.37 X 3)

    Top of page process CPU:

    33% Microsoft Word

    2% WindowServer

    kernel_task 2%

    1% fontd

    1% Dropbox

    Top of page process of memory:

    1.44 GB com.apple.WebKit.WebContent (6)

    1.34 GB kernel_task

    Mdworker (17) 393 MB

    270 MB mds_stores

    270 MB Safari

    Virtual memory information:

    17,00 GB of free RAM

    7.31 GB used RAM (3.58 GB being cached)

    Used Swap 0 B

    Diagnostic information:

    August 20, 2016, 08:39:36 AM/Library/Logs/DiagnosticReports/Microsoft Word_2016-08-20-083936_ [redacted].cpu_resource.diag [details]

    / Word.app/Contents/MacOS/Microsoft applications/Microsoft Word

    August 20, 2016, 08:32:51 self-test - spent

    August 20, 2016, 08:15:33 AM/Library/Logs/DiagnosticReports/Microsoft Word_2016-08-20-081533_ [redacted].cpu_resource.diag [details]

    August 19, 2016, 07:25:57 PM/Library/Logs/DiagnosticReports/duplicate photo Fixer Pro_2016-08-19-192557_ [redacted].cpu_resource.diag [details]

    / Applications/duplicate Photos Pro.app/Contents/MacOS/Duplicate Photos Fixer Fixer Pro

    August 19, 2016, 06:16:32 AM/Library/Logs/DiagnosticReports/Microsoft Word_2016-08-19-061632_ [redacted].cpu_resource.diag [details]

    Have you tried a Safe Mode boot that has been proposed on your other discussion > > Hanging Word for Mac

    If a Safe Mode boot does not help, try to start with only your keyboard and mouse connected. No other third party material. See if that makes a difference.

  • Windows help called me to say that I had corrupted files

    I received a call from someone who said they were from Windows.  They said that I had corrupted files and harmful spies accumulating daily.  They asked me to type in the address bar, an address that gave me the site he Ammy Admin and asked me to download it for free.  It was a kind of remote access site.  I refused.  He was trying to convince me that it was legitimate, but I was not buying it.  Do you have a service like this?  Was - this legitimate?  Thank you.

    Microsoft does not provide a service like this.  You were right not to follow their instructions.  Unfortunately, this is a very common scam now.

  • Fake or real help call

    I received a call from landline to a guy who claims to work for windows. He asked me to give him access to my office through ammy.com, in order to correct a problem with windows. I refused!  Do you think this could be a real call or not

    Fake phone calls to technical support

    Calls unrequested telephone of this nature are almost always a common scam. Do not let them give any info, do not give access to your PC, not give them all the money and do not go to all the websites that they suggest. One moment.

    Please see:

    http://www.microsoft.com/en-gb/security/online-privacy/msname.aspx .

    Microsoft issues never not solicited for phone calls of support or security.

    These types of callers can use completely fictitious names or bogusly claim to be of real companies other than Microsoft as well.

Maybe you are looking for

  • In Device Manager, OTHER DEVICES has yellow question mark

    I always have problems with sudden black screens with auto restart.  It has been suggested that I get a new video driver, so I went into Device Manager, and since there is no list for video devices, I looked in the other devices section (which has PC

  • Driver software HP Photosmart c4780 installed on windows 7

    I have a windows 7 64-bit OS and I try to install the printer software.  Initially, the software begins and the place where it looks for updates it just disappears.  I see nothing in the task manager leading me to believe that he just stopped.  The f

  • Has anyone tried a 8GB SODIMM in DV6ZSE?

    I have a HP DV6ZSE (3200 DV6Z CTO Select Edition) - map mother AMD M880 G, PhenomII x 2 cpu.  Even though I know that the original specifications list 8GB (4GBx2) as the ram max, the material must be able to run the 16 GB (8GBx2).  I don't know if th

  • Duplicate versions of the various classes in the libraries of the RIM.

    Different libraries in the API under different packages have classes with the same name as in a few more... javax.microedition.lcdui.Display vs net.rim.device.api.system.Display javax.microedition.lcdui.Graphics vs net.rim.device.api.ui.Graphics .. .

  • 8 - sensitivity gesture while reading sensitive content on a mobile of Captivate

    HelloI just a product content reagent and tried to play on my laptop (Nexus 5 - 5.1 Android).This content is very simple, only 3 slides with button next/previous to navigate, not SCORM.I put on a web server and access it from there.No problem to disp