Vbscript indesign cs 5.5 - package script - please help

I am trying to create a package script in VBS and I am getting mixed results :-
If I use this code:-
Set myInDesign = CreateObject("InDesign.Application")
set fso = CreateObject("Scripting.FileSystemObject")
myPackageFolder = "C:\test\"
set myDocument = myIndesign.ActiveDocument
myDocument.package myPackageFolder, false, true, false, true, true, true, false
Then Indesign Crashes
If I use this code (update graphics links is false instead of true):-
Set myInDesign = CreateObject("InDesign.Application")
set fso = CreateObject("Scripting.FileSystemObject")
rem fso.CreateFolder mypath & "\package\"
rem myPackageFolder = mypath & "\package\"
myPackageFolder = "C:\test\"
set myDocument = myIndesign.ActiveDocument
myDocument.package myPackageFolder, false, true, false, false, true, true, false
Then I get a Warning :-
An attached script generated the following error.
Cannot save a copy of "1234567ab.indd"
do I want to disable the event handler (was triggered from after save event)
So is this because the file really isnt saved yet and is somehow locked .. so you cant update graphics or copy it???

Hi,
On which platform are you installing ,check if its meets the system requirements.
http://java.sun.com/j2se/1.4.2/install.html might help you.
-Amol

Similar Messages

  • OS X update 10.9.3 can't be installed on this disk. An error occurred while evaluating JavaAcript for the package. Please help!

    My Apple Store, Mail and update was not working for sometimes, when I download OS 10.9.3 and try to install, error message appear: OS X update 10.9.3 can't be installed on this disk. An error occurred while evaluating JavaScript for the package. Please help!

    iMac (27-inch Mid 2011), OS X Mavericks (10.9.3), SL & ML, G4 450 MP w/Leopard, 9.2.2

  • DVD Audio and Subtitle script Please HELP

    Subtitle Audio Scripts Please Help
    Posted: Sep 3, 2006 8:04 PM
    I need to write a script that does the following:
    1st I have the end user choose if they want subtitles on or off and then both the buttons will default for the user to chose a language choice. So I need a script that will play just audio streams and a script that will play audio with the same language subtitle. Also if the user just pushes the language button I need the script it to default to play just that language...
    Here is what I have scripted already please tell me where my mistake is:
    Button Command
    Subtitles
    On mov GPRM 0,0
    Jump Special Features: English
    Off mov GPRM 0,1
    Jump Special Features: English
    English 1. mov GPRM 0,2
    2. Set System stream Au(Audio Stream 1) if (0=0)
    3. Set System Stream St(Subtitle Stream 1)(ON) if (0=0)
    4. Goto 11 if (GPRM 0=0)
    5. Set System stream Au(Audio Stream 1) if (0=1)
    6. Set System Stream St(Subtitle Stream 1)(Off) if (0=1)
    7. Goto 11 if (GPRM 0=1)
    8. Set System stream Au(Audio Stream 1) if (0=2)
    9. Set System Stream St(Subtitle Stream 1)(Off) if (0=2)
    10. Goto 11 if (GPRM 0=2)
    11. Jump JOFDVD:Start
    12. Exit
    All my language scripts will be similar just with different audio and sub streams.
    Help Please-
    Ryan-

    Hi There
    I think your error is in the first line of your script.
    You're using GPRM 0 to set your subtitle condition and when you press enter on your english button your first line says
    1. mov GPRM0,2
    I'm assuming you want to use this first comand to set your languange condition so you should use GPRM 1 (or more) - at this stage all you're doing is removing the subtitle condition set by your earlier script.
    Good luck
    Cheers
    B

  • Problem with "Package Spec" please help.

    Hello once again.
    I'm developing a master-detail form, so I'm using a "Package Spec" variable to hold the primary key value from the master form. The primary key value for the master is generated by a sequence.
    Here's the package spec:
    PACKAGE primary_keygen IS
    pkey varchar2(15); 
    END;Now the master table has the following "Before Insert" Trigger .
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    DECLARE
    primary_key_value varchar2(15);
    BEGIN
    select lpad(to_char(ref_gen.nextval), 4,'0')
    into primary_key_value from dual;
    primary_keygen.pkey:='ABC/'||primary_key_value;
    :new.Ref_Number:=primary_keygen.pkey;
    END;For the detail block. I have the following "Before Insert Trigger" to generate the primary key values.
    CREATE OR REPLACE TRIGGER DET1_NUM_GEN
    BEFORE INSERT
    ON DETAIL1
    FOR EACH ROW
    BEGIN
    if :new.M_ref_number is NULL THEN
    :new.M_ref_number:=primary_keygen.pkey;
    ENd if;
    END;Works quite fine if I have only one detail block. But if I have multiple detail blocks. Depending on the user's selection. i.e. After entering data into the master block, the user selects a detail block ('Letter type'- using stacked canvases for this purpose and radio buttons for selecting the view) and then Inserts data into it. here's what I do in the Detail block2.
    CREATE OR REPLACE TRIGGER OREF_NUM_GEN
    BEFORE INSERT
    ON DETAIL2
    FOR EACH ROW
    BEGIN
    if :new.O_ref_number is NULL THEN
    :new.O_ref_number:=pkey_gen.master_key;
    ENd if;
    END;Now the problem is that When I enter one record into detail1, works fine, but for the second time, when I try to insert another record. the master table gets a new reference number (primary key value) while the detail block gets the previous value that was used in the first record!, so that means 'pkey_gen.master_key' is holding the old value, while in my opinion it should hold the new value, I dont know whats wrong here. If I try to insert two consecutive records into the same detail table, I get an error saying "Unique Constraint voilated", becuase the variable is holding the old values.
    And lastly after it inserts the record into the database, I get a dialog box saying, "successfuly inserted 2 records into the database" and when I click ok, the Form closes by itself, any ideas on how to stop this?
    I'm really stuck here. Please help me out on this.
    Thanks.
    Note: I'm using Form6i with Database 10g.
    Message was edited by:
    fahimkhan82

    Hi,
    Maybe the best way to start is to try building a new form from scratch. For simplicity I will assume that you have one master and one detail table. Master table has a primary key and the detail table has a foreign key to the master. Based on this, with the forms you can create a database block based on your master table. Use the wizard. Again using the wizard, create a second block based on the detail table. You'll see a screen to prompt to create a relationship. Create one by selecting the master table and the right foreign key relation. Now take a close look to all triggers automatically created by the form. Also check the "Relations" object found in you master block object tree. Note that the foreight key column in the detail table has the "Copy Value From Item" property set to monitor the master block's primary key.
    This is the basic. You don't need the database triggers, except (in case you want to insert through, say, SLQPlus) the one for the master table, which will look like this:
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    BEGIN
    IF :new.ref_number IS NULL THEN
    select 'ABC/'||pad(to_char(ref_gen.nextval), 4,'0')
    into :new.ref_number
    from dual;
    END IF;
    END;
    Now you have to take care about the inserts in your form. Create PRE-INSERT trigger on the master block.
    IF :master.ref_number IS NULL THEN
    SELECT 'ABC/'||pad(to_char(ref_gen.NEXTVAL), 4,'0')
    INTO :master.ref_number
    FROM dual;
    END IF;
    Run the form and explore different situations to see how the form is keeping the data integrity.
    Compile with Shift+K (incremental). Sometimes forms blow just because not all of the trigers were compiled properly.
    Hope this helps...

  • Recovering Indesign files on a uni computer - please help !!

    Hi my indesign keeps crashing how do i recover my files ?! I'm on a university computer so there is no recovery folder, but the file defiantly does exist as it flashes up for a second before indesign crashes again (upon opening in design and clicking yes to recover data) Please help !!!! Thank you !!

    There is ALWAYS a recovery folder....
    But without a lot more info there's not much we can do for you. You must have a user account, with a user profile or user library stored someplace, probably on a server.

  • Trying to create complicated script, please help!

    I work at a cell phone store where business is less than excellent. We have this nifty tool where i enter a customers phone number and zip code in and it tells me if the are eligible for a discount. So my boss wants me to type in a phone number, beginning with the prefix 208640, and 208641, and beginning at the end of 0000 and ending at 9999, and calling all customers who are shown as eligible, if a phone number and zip code combination does not match, the site will rout me back to the entry page, and if a phone number/zip match it will take me to a new page showing me the results... this sounds like a job for a computer, and I am not willing to put that much time and effort into a useless, remedial task for $9.00 an hour as store manager... Please help!

    Automator might be the wrong tool. For scripting queries, post to the AppleScript forum under OS X Technologies.

  • Package calls //please help

    I basically have two packages or projects. One is project 1 & and the other is project 2. What I'm basically trying to do is call or get project's 1 classes and methods into project 2. I mainly want project 2 to be able to use project 1 because I have a transaction controller that will in the beginning of the program, askk whether you would like to run project 1 or project 2. Can someone please help?

    Okay what I'm basically saying is that I want to use the contents of another project in a different project. So for example, in project 2, I will have a window that will ask the user for the transaction they would like to run. One transaction button will lead to the use case in project 2. The other transaction button should take the user to the use case back in project 1. This is where I'm stuck. I don't understand how to bring the contents of project 1 into project 2. Hope this clarifies it. Thanks for any help. I appreciate it.

  • Problems in SAP script : Please help

    Hi Friends:
       I've got a ticket in SAP script & need to do the following modifications:
    1. In the SAP script, on the bottom side there is a cheque no. I want to print the chequq no. in MICR format. Right now its coming into normal format. Please advise me in details as to what to do?
    2. How to convert the date format from DD.MM.YYYY to DDMMYYYY.
    3. There is some amount getting printed on the cheque. e.g $50.00 The requirement is like that after '$' sign, 50.00 should come in a box.Please advise as how to do that.
    4. There is some gap coming in between the '$' & the amount 50.00. Once that 50.00 will be in Box, as per point 4, how to reduce the gap.
    5. The "$" sign is not getting printed correctly. The line which is striking vertically the 'S', is appearing broken. Please advise as how to resolve the same.
    Hi experts, please help me on the above points. Suitable points will be rewarded.
    Thanks:
    Gaurav

    Hi there.
    Question 1:
    Use font MICR_C for MICR CMC-7 or MICR_E for MICR E-13B
    http://help.sap.com/saphelp_nw04/helpdata/en/90/78f078030211d399b90000e83dd9fc/frameset.htm
    Question 2:
    /: SET DATE MASK = 'DDMMYYYY'
    http://help.sap.com/saphelp_nw04/helpdata/en/d1/8034d4454211d189710000e8322d00/frameset.htm
    Question 3:
    /E BOX_ELEMENT
    /: POSITION WINDOW                       
    /: POSITION YORIGIN &Y& LN 
    /: SIZE HEIGHT &HEIGHT& LN    
    /: BOX FRAME 10 TW
    /: BOX XPOS  '0.0' CM  WIDTH 0 TW FRAME 10 TW
    Question 4:
    &symbol(C)&
    http://help.sap.com/saphelp_nw04/helpdata/en/d1/8034d4454211d189710000e8322d00/frameset.htm
    Question 5:
    See SAP Note 129581.
    Best regards.
    Valter Oliveira.
    Edited by: Valter Oliveira on May 30, 2008 4:42 PM

  • Issue with calculation script - please help

    There is a script that I am working on that needs to track the changes made by the user on the data form and push the entered value down proportionally to the lower levels.
    It’s a signal dimensional spread. It needs to spread the parent level values entered by the users for the product dimension to below levels. The Products are in rows.
    The issue is that the users can enter their data at any level for the product dimension i.e. either at Level 0 product members, Level 1 product members or at Level 2 product members. I am using two accounts A & B in sync to track the changes made.
    The structure of Product dimension that shows up on the form is similar to this –
    ~ Products (The user can enter starting at this level and also the below levels)
    ~ Product A
    ~ Product A1 (Level 0)
    ~ Product A2 (Level 0)
    ~ Product A3 (Level 0)
    ~ Product B (Level 0)
    ~ Product C (Level 0)
    ~ Product D
    ~ Product D1 (Level 0)
    ~ Product D2 (Level 0)
    This is what I came up with so far but it’s not working in all the cases yet. Please give your suggestions to modify this script further to make it work the right way.
    FIX(P, Y, H, E, B, D, C, V, C, S, @Relative(“Products”,-1))
    Account(
    IF(“AccountA”->@Parent(@Currmbr(“Product”)) <> “AccountB”->@Parent(@Currmbr(“Product”)))
    AccountA=AccountB->@Currmbr(“Product”)/AccountB->@Parent(@Currmbr(“Product”)))*AccountA ->@Parent(@Currmbr(“Product”));
    ENDIF;
    ENDFIX;
    FIX(P, Y, H, E, B, D, C, V, C, S, @Relative(“Products”,0))
    Account(
    IF(“AccountA”->@Parent(@Currmbr(“Product”)) <> “AccountB”->@Parent(@Currmbr(“Product”)))
    AccountA=AccountB->@Currmbr(“Product”)/AccountB->@Parent(@Currmbr(“Product”)))*AccountA ->@Parent(@Currmbr(“Product”));
    ENDIF;
    ENDFIX;
    This is not working right in all cases and I am sure I am going wrong somewhere. Please let me know your ideas on how can this be achieved.
    Thanks in advance.
    -Krrish
    Edited by: 928844 on Apr 19, 2012 11:23 AM

    Well... sort of fixed it.  Apparently my system doesn't like editing images with a color depth of 16bit.  If I convert it down to 8 when I'm converting it from RAW, then it allows me to add layers... Is this normal?
    Thank you for your time,
    -Tony

  • Damaged AIR Package problem: Please help

    Hello there,
    i have huge troubles by trying to bring my non application
    air project to run. tryed it with dreamweaver extension, aptana
    studio and command line.
    it always compiles fine, but when i try to install it, it
    shows me following message:
    Sorry, an error has occured
    The application could not be installed because the AIR file
    is damaged. Try obtaining a new AIR file from the application
    author.
    But it runs fine in the Debug/Preview Mode. No Problems. Also
    makes the package but i have no chance to install it. I really need
    to finish this project and my time is running out :-(
    Any suggestions? Thanks a lot, Stefan
    my index.html:
    <html>
    <head>
    <title>REiSS Lighting</title>
    <!-- Uncomment the following line to add introspection.
    When running the application hit F12 to bring up the introspector
    -->
    <!-- script type="text/javascript"
    src="AIRIntrospector.js"></script -->
    <!-- script type="text/javascript"
    src="AIRAliases.js"></script -->
    </head>
    <body>
    <!-- Use the example.com domain in order to place
    SampleUI.html content in a remote sandbox. -->
    <iframe id="UI"
    src="www.reiss-lighting.de/cms/index.html"
    sandboxRoot="
    http://example.com/"
    documentRoot="app:/"
    style="border: 0px solid red; width:100%; height:100%">
    </iframe>
    </body>
    </html>
    my application.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="
    http://ns.adobe.com/air/application/1.0">
    <id>com.adobe.example.REiSSLighting</id>
    <filename>REiSS Lighting</filename>
    <name>REiSS Lighting</name>
    <version>1.0</version>
    <description></description>
    <copyright></copyright>
    <initialWindow>
    <content>index.html</content>
    <title/>
    <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
    <visible>true</visible>
    <minimizable>true</minimizable>
    <maximizable>true</maximizable>
    <resizable>true</resizable>
    <width>1024</width>
    <height>768</height>
    <x>200</x>
    <y>200</y>
    <minSize>800 600</minSize>
    <maxSize>1280 1024</maxSize>
    </initialWindow>
    <icon>
    <image16x16>icons/reiss_icon_16.png</image16x16>
    <image32x32>icons/reiss_icon_32.png</image32x32>
    <image48x48>icons/reiss_icon_48.png</image48x48>
    <image128x128>icons/reiss_icon_128.png</image128x128>
    </icon>
    <fileTypes></fileTypes>
    </application>

    kanukukreja: It sounds like the new version was signed with a
    different certificate, which means it's not an upgrade but rather a
    different application. See e.g.
    http://blogs.adobe.com/simplicity/2008/01/certs_and_app_id.html.
    Oliver Goldman | Adobe AIR Engineering

  • Indesign CS6 very slow with vectors. please Help!

    We updated to CS6 from CS5.5 to a Mac Pro running OS 10.6. Processors are 2 x 2.8 GHz Quad-Core Intel Xeon. Ram is 10 GB 800 MHz DDR2. Video card is ATI Radeon HD 2600 256 MB. One Cinema Display and a smaller Samsung monitor.
    The performance of InDesign when handling groups of vector files created inside InDesign is horrible. For example, I took a little 3 x 3px square and created a grid of 60 squares approx. When I select all of them (pure vectors) and try to move them it takes InDesign 10 seconds to respond to the selection first, and then 10 more seconds to move them.
    Another example, I created a very simple graph, pure vector of course, with a moderate number of text and lines and when I select the whole thing the lag comes again, takes a lot to mark the selection and then is very hard to move it.
    We have tweaked InDesign preferences (Interface, File Handling) as much as we could but the issue remains. We didn't have any problems with 5.5.
    Help please!

    had to install mountain lion and now everything works smoothly

  • Importing Flex project into Flash CS5 for use with iPhone packager? Please Help.

    Hi all,
    I have been developing an application in Flex builder for the iPhone using the iPhone packager, where I've been using the Flex framework.
    Now I'm stuck at trying to use my existing libraries in Flash. It seems I can't add the UI components I used in Flex (class VideoExample) to the default Flash container. I need someone's help who has experience with that.
    I have created a .SWC file, but when I'm trying to add the container in Flash using addChild(new VideoExample) it doesn't work. I can't load the .SWF externally using loader.load() at runtime, because the application is for iPhone. Any solutions how could I import the project to Flash?
    I was thinking about changing the UI components classes from mx.* to fl.*, but I would have to change many code and I'm not sure if it would even work, and I don't want to loose compatibility with mxml.
    Please respond, help would be very much appreciated!
    Here's my mxml wrapper, from which I start the main application:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="EntryPoint.main()">
    </mx:Application>
    Then I have a class which creates the main container:
    package {
    import mx.core.*;
    public class EntryPoint {
        public static function main():void {
            var client:VideoExample = new VideoExample();
            var mxmlApp:Application = Application(Application.application);
            mxmlApp.addChild(client);
    Here is the main class VideoExample:
    package {
    import mx.controls.*;
    import mx.containers.*;
    public class VideoExample extends Canvas {
        public function VideoExample() {
            super();
            init();
            private function init():void {
            loadImage();
            loadText();
                    loadDisplay();
                    startConnection();

    This forum is for Flash Media Server Developers so most likely you migth get much traction here. I would recommend you to post your query on Flash Builder forum: http://forums.adobe.com/community/flash_builder/using_flash_builder
    Also you can try posting here:
    Flash Platform Services For Promotion - http://forums.adobe.com/community/promotion
    Flash : http://forums.adobe.com/community/flash/flash_general

  • HI I am having the following error message in Package Builder please help?

    Wed Jun 19 08:23:11 2013
    [INFO] AdobePackageBuilder - Build Version - 1.0.0.54
    Wed Jun 19 08:23:11 2013
    [INFO] AdobePackageBuilder - Logging Level verbosity Set  to 4
    Wed Jun 19 08:23:12 2013
    [INFO] AdobePackageBuilder - START utilCopySrcFolderToDstFolder /Applications/Utilities/Adobe Application Manager/CCP/toolkit/../toolkit/PackageTemplate/CS6/Template_Uninstall.bin /Volumes/STORAGE/FOM EDITORS/Build/FOM EDITORS_Uninstall.pkg
    Wed Jun 19 08:23:12 2013
    [INFO] AdobePackageBuilder - START utilCopySrcFolderToDstFolder /Applications/Utilities/Adobe Application Manager/CCP/toolkit/../toolkit/PackageTemplate/CS6/Template_Install.bin /Volumes/STORAGE/FOM EDITORS/Build/FOM EDITORS_Install.pkg
    Wed Jun 19 08:23:12 2013
    [INFO] AdobePackageBuilder - START utilCopySrcFolderToDstFolder /Applications/Utilities/Adobe Application Manager/CCP/toolkit/../utilities/APTEE/CS6 /Volumes/STORAGE/FOM EDITORS/Build/FOM EDITORS_Install.pkg/Contents/Resources/ProvisioningTool
    Wed Jun 19 08:23:12 2013
    [INFO] AdobePackageBuilder - START utilCopySrcFolderToDstFolder /Applications/Utilities/Adobe Application Manager/CCP/toolkit/../utilities/APTEE/CS6 /Volumes/STORAGE/FOM EDITORS/Build/FOM EDITORS_Uninstall.pkg/Contents/Resources/ProvisioningTool
    Wed Jun 19 08:23:15 2013
    [ERROR] AdobePackageBuilder - There is no packages folder inside (/tmp/C7BDF4E6-9B7E-4B33-B025-81089FD1186A/ACCCx181). ASU is InValid
    Wed Jun 19 08:23:15 2013
    [ERROR] AdobePackageBuilder - Unable to extract/Mount AAM ASU (/Users/ladmin/Library/Application Support/Adobe/CCP//AdobeCCPCache/AAM/AdobeSetupUtility/ACCCx181.dmg)

    I had the same problem as well.  It was resolved with the release of CC Packager 1.1
    http://blogs.adobe.com/oobe/2013/06/creative-cloud-packager-1-1-a-big-week-for-cc-team-ent erprise-customers.html
    However, Im having a problem along with other people with the Photoshop CC and InDesign CC packages that are created when you attempt to install them

  • Editing an export script - please help!

    Hello Photoshop friends,
    so I have an export script that I downloaded from the web which exports all layers to a file type of your choice - PNG, GIF, etc. This is fine, but the dialog box doesn't support file format options such as matte, dither, transparency and so forth. Is it possible to edit the script to give it literal values for these inaccessible variables instead of the default? I'v been digging around the script, but I'm not really sure what I'm doing.
    Specifically, I want to leave the script intact except the following settings for the PNG8 format:
    Colours 256
    Transparency - YES
    "No transparency dither"
    Matte: "none" (currently it gives me a white matte)
    Please, I would really appreciate if anyone could point me in the right direction please, please!
    Ulerika.

    Hey Michael, thanks for your quick reply. I tried to attach the script, but the forum won't allow me to do so. The script in question is here:
    http://tranberry.com/photoshop/photoshop_scripting/tips/layerstoPNG.html
    There is one big section dealing with PNG8 which I suspect is the place which needs to be changed. An extraction from this section for example reads:
    "var id35 = charIDToTypeID( "Mtt " );
    desc4.putBoolean( id35, true ); //matte
    var id36 = charIDToTypeID( "MttR" ); //matte color"
    Thanks.

  • I can't install Itunes because of Windows installer package error, please help!

    I tried installing Itunes for a long time on my desktop, I'm running Vista. Everytime I try to install Itunes it runs for a bit, then gives me this message
    " There is a problem with Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    I went through many posts on how to solve this problem, I uninstalled and deleted all the files from this thread : http://support.apple.com/kb/HT1923
    and tried to reinstall Itunes, didn't work, same error message.
    After i tried to install Itunes in Clean boot still didn't work.
    I also downloaded MicrosoftFixit.Program which apperantly fixed this problem for some people, not for me.
    Then I extracted Itunes and tried to install all the components seperately, everything installed correctly, however when I tried to install Apple Software update
    I got the same error message, i think it is the Apple software update that is causing this problem but I have no idea how to solve this problem.
    How do I solve this, any thoughts or suggestions???

    Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    Now, uninstall Bonjour from Control Panel.

Maybe you are looking for

  • Bi Publisher Enterprise 11.11 Parameters.

    I am building a report and i have couple of parameters. the user will enter the values for the parameter in a text field. now, i want to make that text field optional. how can i do that? i do not want to set a default value, i want it load blank but

  • How to connect my iMac 27" to a beamer?

    Hey there Is it right that i need a VGA to USB Cable to connect my iMac 27" with a Beamer. I see the beamer is VGA and my iMac has no other compatible inputs, so i think its VGA to USB. But i don't no if it works THX for any help!! hn*

  • JSP getting local machine time?

    I need to create a program which the users are located in two time zone. I will hence need to use the local machine time from their PC to check against certain record in my database. I understand JSP is processed at the server end. Is JSP capable of

  • Error asset purchase f-90

    While i am posting asset purchase i am getting the following error?what could be reason? Quantity and unit of measurement are not consistent Message no. F5638 Diagnosis Quantity was entered without a unit of quantity or vice versa. System Response In

  • Importing pictures from iphone to pc

    When importing pictures from an iphone to pc without using the itunes, there are many unknown folders that appear inside every iphone folders. Folders that can't be deleted. Is this a virus? How to get rid of this?