Can Check Number be start with zero?

Dear all,
               I knew that check number on SBO is numeric but check number of my country some number can start with zero and it effected to check number printing form. So, I'm not sure whether we can set check number to be charactor or not. Or how to apply for this issue, pls. suggest.
Thanks you very much.
Angnam

Hi,
It is not possible to set check number as alphanumeric, you can use remarks field to enter check number or any other filed that you think is not required and can be used as check number.
it is not possible to add UDF in checks for payment . if you are using payment method checks tab, you can use UDF.
Thanks,
Neetu

Similar Messages

  • I can't number pages starting with anything but 1.

    I edit a newsletter for a non-profit using Pages in iWork.  The pages have to be numbered consecutively through the year....the first issue begins with 1, the second begins with 17, etc.  But I can't get the auto page numbers to start with anything but 1 and then number the rest correctly.  If I click on Start With in "Section" and input, say, 49, nothing changes.  If I input the numbers on each page manually, they are just as likely to change as I go.  (I number the 1st 49, the second 50,...and suddenly the first now reads 50.)  What am I doing wrong?  Thanks.

    Inspector > Layout > Section > Page Numbers > Continue from previous section/Start at:
    Peter

  • RSA decryption Error: Data must start with zero

    Because of some reasons, I tried to use RSA as a block cipher to encrypt/decrypt a large file. When I debug my program, there some errors are shown as below:
    javax.crypto.BadPaddingException: Data must start with zero
         at sun.security.rsa.RSAPadding.unpadV15(Unknown Source)
         at sun.security.rsa.RSAPadding.unpad(Unknown Source)
         at com.sun.crypto.provider.RSACipher.doFinal(RSACipher.java:356)
         at com.sun.crypto.provider.RSACipher.engineDoFinal(RSACipher.java:394)
         at javax.crypto.Cipher.doFinal(Cipher.java:2299)
         at RSA.RRSSA.main(RRSSA.java:114)
    From breakpoint, I think the problem is the decrypt operation, and Cipher.doFinal() can not be operated correctly.
    I searched this problem from google, many people met the same problem with me, but most of them didn't got an answer.
    The source code is :
    Key generation:
    package RSA;
    import java.io.FileOutputStream;
    import java.io.ObjectOutputStream;
    import java.security.KeyPair;
    import java.security.KeyPairGenerator;
    import java.security.PrivateKey;
    import java.security.PublicKey;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    public class GenKey {
          * @param args
                     * @author tang
         public static void main(String[] args) {
              // TODO Auto-generated method stub
                 try {
                      KeyPairGenerator KPG = KeyPairGenerator.getInstance("RSA");
                      KPG.initialize(1024);
                      KeyPair KP=KPG.genKeyPair();
                      PublicKey pbKey=KP.getPublic();
                      PrivateKey prKey=KP.getPrivate();
                      //byte[] publickey = decryptBASE64(pbKey);
                      //save public key
                      FileOutputStream out=new FileOutputStream("RSAPublic.dat");
                      ObjectOutputStream fileOut=new ObjectOutputStream(out);
                      fileOut.writeObject(pbKey);
                      //save private key
                          FileOutputStream outPrivate=new FileOutputStream("RSAPrivate.dat");
                      ObjectOutputStream privateOut=new ObjectOutputStream(outPrivate);
                                 privateOut.writeObject(prKey)
         }Encrypte / Decrypt
    package RSA;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.ObjectInputStream;
    import java.security.Key;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.crypto.Cipher;
    //import sun.misc.BASE64Decoder;
    //import sun.misc.BASE64Encoder;
    public class RRSSA {
          * @param args
         public static void main(String[] argv) {
              // TODO Auto-generated method stub
                //File used to encrypt/decrypt
                 String dataFileName = argv[0];
                 //encrypt/decrypt: operation mode
                 String opMode = argv[1];
                 String keyFileName = null;
                 //Key file
                 if (opMode.equalsIgnoreCase("encrypt")) {
                 keyFileName = "RSAPublic.dat";
                 } else {
                 keyFileName = "RSAPrivate.dat";
                 try {
                 FileInputStream keyFIS = new FileInputStream(keyFileName);
                 ObjectInputStream OIS = new ObjectInputStream(keyFIS);
                 Key key = (Key) OIS.readObject();
                 Cipher cp = Cipher.getInstance("RSA/ECB/PKCS1Padding");//
                 if (opMode.equalsIgnoreCase("encrypt")) {
                 cp.init(Cipher.ENCRYPT_MODE, key);
                 } else if (opMode.equalsIgnoreCase("decrypt")) {
                 cp.init(Cipher.DECRYPT_MODE, key);
                 } else {
                 return;
                 FileInputStream dataFIS = new FileInputStream(dataFileName);
                 int size = dataFIS.available();
                 byte[] encryptByte = new byte[size];
                 dataFIS.read(encryptByte);
                 if (opMode.equalsIgnoreCase("encrypt")) {
                 FileOutputStream FOS = new FileOutputStream("cipher.txt");
                 //RSA Block size
                 //int blockSize = cp.getBlockSize();
                 int blockSize = 64 ;
                 int outputBlockSize = cp.getOutputSize(encryptByte.length);
                 /*if (blockSize == 0)
                      System.out.println("BLOCK SIZE ERROR!");       
                 }else
                 int leavedSize = encryptByte.length % blockSize;
                 int blocksNum = leavedSize == 0 ? encryptByte.length / blockSize
                 : encryptByte.length / blockSize + 1;
                 byte[] cipherData = new byte[outputBlockSize*blocksNum];
                 //encrypt each block
                 for (int i = 0; i < blocksNum; i++) {
                 if ((encryptByte.length - i * blockSize) > blockSize) {
                 cp.doFinal(encryptByte, i * blockSize, blockSize, cipherData, i * outputBlockSize);
                 } else {
                 cp.doFinal(encryptByte, i * blockSize, encryptByte.length - i * blockSize, cipherData, i * outputBlockSize);
                 //byte[] cipherData = cp.doFinal(encryptByte);
                 //BASE64Encoder encoder = new BASE64Encoder();
                 //String encryptedData = encoder.encode(cipherData);
                 //cipherData = encryptedData.getBytes();
                 FOS.write(cipherData);
                 FOS.close();
                 } else {
                FileOutputStream FOS = new FileOutputStream("plaintext.txt");
                 //int blockSize = cp.getBlockSize();
                 int blockSize = 64;
                 //int j = 0;
                 //BASE64Decoder decoder = new BASE64Decoder();
                 //String encryptedData = convert(encryptByte);
                 //encryptByte = decoder.decodeBuffer(encryptedData);
                 int outputBlockSize = cp.getOutputSize(encryptByte.length);
                 int leavedSize = encryptByte.length % blockSize;
                 int blocksNum = leavedSize == 0 ? encryptByte.length / blockSize
                           : encryptByte.length / blockSize + 1;
                 byte[] plaintextData = new byte[outputBlockSize*blocksNum];
                 for (int j = 0; j < blocksNum; j++) {
                 if ((encryptByte.length - j * blockSize) > blockSize) {
                      cp.doFinal(encryptByte, j * blockSize, blockSize, plaintextData, j * outputBlockSize);
                      } else {
                      cp.doFinal(encryptByte, j * blockSize, encryptByte.length - j * blockSize, plaintextData, j * outputBlockSize);
                 FOS.write(plaintextData);
                 //FOS.write(cp.doFinal(encryptByte));
                 FOS.close();
    }Edited by: sabre150 on Aug 3, 2012 6:43 AM
    Moderator action : added [ code] tags so as to make the code readable. Please do this yourself in the future.
    Edited by: 949003 on 2012-8-3 上午5:31

    1) Why are you not closing the streams when writing the keys to the file?
    2) Each block of RSA encrypted data has size equal to the key modulus (in bytes). This means that for a key size of 1024 bits you need to read 128 bytes and not 64 bytes at a time when decrypting ( this is probably the cause of your 'Data must start with zero exception'). Since the input block size depends on the key modulus you cannot hard code this. Note - PKCS1 padding has at least 11 bytes of padding so on encrypting one can process a maximum of the key modulus in bytes less 11. Currently you have hard coded the encryption block at 64 bytes which is OK for your 1024 bits keys but will fail for keys of modulus less than about 936 bits.
    3) int size = dataFIS.available(); is not a reliable way to get the size of an input stream. If you check the Javadoc for InputStream.available() you will see that it returns the number of bytes that can be read without blocking and not the stream size.
    4) InputStream.read(byte[]) does not guarantee to read all the bytes and returns the number of bytes actually read. This means that your code to read the content of the file into an array may fail. Again check the Javadoc. To be safe you should used DataInputStream.readFully() to read a block of bytes.
    5) Reading the whole of the cleartext or ciphertext file into memory does not scale and with very large files you will run out of memory. There is no need to do this since you can use a "read a block, write the transformed block" approach.
    RSA is a very very very slow algorithm and it is not normal to encrypt the whole of a file using it. The standard approach is to perform the encryption of the file content using a symmetric algorithm such as AES using a random session key and use RSA to encrypt the session key. One then writes to the ciphertext file the RSA encrypted session key followed by the symmetric encrypted data. To make it more secure one should actually follow the extended procedure outlined in section 13.6 of Practical Cryptography by Ferguson and Schneier.

  • Dialing a number that starts with "#".

    Does anyone know how you dial a number that starts with a "#" symbol?
    You can often call some places such as radio stations from your cell by just dialing # and then 4 digits - ie. #4567
    Thanks...Tommy
    Solved!
    Go to Solution.

    during the phone call,
    if you want to type : #4567 you have to type the keys QSDFZ (as if the SYM key was locked)
    if you want to type : A4567 you have to type the keys Alt-Q SDFZ (as if the SYM key was locked)
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • What about numbers that start with Zero

    When I enter numbers that start with Zero (EX: 08794) in a cell, Numbers automatically drops the zero. I WANT THE ZERO. How can I do that. I've tried changing the formula to numerals and automatic. Same thing.

    Numbers starting with zeros are usually "labels" rather than "numbers" used in further calculations. If that's the case with yours, the easiest solution is to set the format of the cells where the 'numbers' will be inserted to Text.
    An alternate, useful only if all of the 'numbers' are the same length (eg. five digit zip codes) is to set a Custom format for the cell(s).
    Use the Cell Format Inspector ("42" button in the Inspector) to apply either of these settings.
    Regards,
    Barry

  • Our benefit administrator keeps getting an error on adding a social security number that starts with a 9, that is a valid SSN for a spouse, How do we allow this to go through?

    Our benefit administrator keeps getting an error on adding a social security number that starts with a 9, that is a valid SSN for a spouse, How do we allow this to go through?

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • How can I make textedit start with a new (blank) document?

    How can I make textedit start with a new (blank) document?
    Instead of it starting up with a dialogue box to select an existing or start a new document.

    @Alley_Cat thanks for the ideas.
    I turned off System Preferences > iCloud > Documents&Data - problem solved.
    I'll use DropBox instead  - it provides the options for a better experience.  I hope Apple keep working on iCloud so that it doesn't go the way of Moble Me.

  • Trying to install Elements 13 and it asks for a serial number. The instructions say the number should start with 1057 but there is no code on the disks, box or envelopes the disks came in that start with 1057. I cannot activate the software without this c

    Trying to install Elements 13 and it asks for a serial number. The instructions say the number should start with 1057 but there is no code on the disks, box or envelopes the disks came in that start with 1057. I cannot activate the software without this code and it is a Christmas gift to my wife. HELP!

    I had this problem. There are actually two boxes. The outside one with the photos and stuff and glued into it is another box containing the disks. That box has the serial number. Adobe was NO help with this as if no one else ever could not find it. I had to rip open the outer box.

  • Safari can't open browser starting with "aam"

    safari can't open browser starting with "aam"

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • Javax.crypto.BadPaddingException: Data must start with zero

    Actually, I didn't write the entire codes, most of it was written by someone here, and I only tried to add a method. Here:
    public class RSAEncrypt {
        private KeyPair keys;
        private Cipher rsaCipher;
        public RSAEncrypt() throws GeneralSecurityException {
            KeyPairGenerator keygen = KeyPairGenerator.getInstance("RSA");
            keygen.initialize(512);
            keys = keygen.generateKeyPair();
            rsaCipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
        public byte[] encrypt(byte[] message) throws GeneralSecurityException {
            rsaCipher.init(Cipher.ENCRYPT_MODE, keys.getPublic());
            return rsaCipher.doFinal(message);
        public byte[] decrypt(byte[] encryptedMessage) throws GeneralSecurityException {
             rsaCipher.init(Cipher.DECRYPT_MODE, keys.getPrivate());
             return rsaCipher.doFinal(encryptedMessage);
         * @param args
        public static void main(String[] args) throws Exception {
             String message = "The quick brown fox ran away";
             System.out.println("Message: " + message);
             byte[] encrypted = new RSAEncrypt().encrypt(message.getBytes());
            System.out.println("Cipher Text: " + HexBin.encode(encrypted));
            byte[] decrypted = new RSAEncrypt().decrypt(encrypted);
            System.out.println("Decrypted Text: " + decrypted);
    }The idea is that the program should encrypt the String, "The quick brown fox ran away," which it does. But when it gets to this line:
    byte[] decrypted = new RSAEncrypt().decrypt(encrypted);i get the error: javax.crypto.BadPaddingException: Data must start with zero.
    But here's the funny thing: If I edit the codes so that the encryption and decryption are done in the constructor, it works! Here:
    public class RSAEncrypt {
        private KeyPair keys;
        private Cipher rsaCipher;
        public RSAEncrypt() throws GeneralSecurityException {
            KeyPairGenerator keygen = KeyPairGenerator.getInstance("RSA");
            keygen.initialize(512);
            keys = keygen.generateKeyPair();
            rsaCipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
            rsaCipher.init(Cipher.ENCRYPT_MODE, keys.getPublic());
            String message = "The quick brown fox ran away";
            byte[] cipherText = rsaCipher.doFinal(message.getBytes());
            System.out.println(new BASE64Encoder().encode(cipherText));
            rsaCipher.init(Cipher.DECRYPT_MODE, keys.getPrivate());
            byte[] decryptedText = rsaCipher.doFinal(cipherText);
            String dText = new String(decryptedText);
            System.out.println(dText);
         * @param args
        public static void main(String[] args) throws Exception {
             new RSAEncrypt();
    }So, I'm confused. The Data must start with zero error is coming up when I pass encrypted data to a method for decryption, but it doesn't come out when I run everything in one method or in the constructor. Why???
    Also, when performing RSA encryption (or decryption) on a plaintext stored in a file (not a big file, just a file with probably one or two lines), this is what I do (and it works):
    Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
    cipher.init(Cipher.ENCRYPT_MODE, pubKey);
    CipherInputStream cis = new CipherInputStream(new FileInputStream(new File("message.txt")),cipher);My question is, I do see some people doing this as well:
    cipher.doFinal(byteArray);The fact that I don't have this in my code when encrypting data from a file, that's ok, right? I don't need to do a ".doFinal()" method, do I?
    Edited by: glenak on Aug 19, 2010 4:26 AM

    glenak wrote:
    I don't quite understand, but if you mean this:
    String message = "The quick brown fox ran away";
    System.out.println("Message: " + message);
    RSAEncrypt rsaEncrypt = new RSAEncrypt();
    Creates and instance of RSAEncrypt with a new random RSA key pair.
    byte[] encrypted = rsaEncrypt.encrypt(message.getBytes());Encrypts with the random public key created in the first instance.
    System.out.println("Cipher Text: " + HexBin.encode(encrypted));
    RSAEncrypt rsaDecrypt = new RSAEncrypt();Creates and second instance of RSAEncrypt with a new random RSA key pair nothing to do with the first instance.
    byte[] decrypted = rsaDecrypt.decrypt(encrypted);Attempts to decrypt the ciphertext created with the public key of the first instance using the private key of the second, and totally unrelated, instance.
    System.out.println("Decrypted Text: " + decrypted);I still get the "Data must start with zero" error.
    If you could show me an example of what you mean, it would help very muchNo example is required. You cannot encrypt with the public key of one key pair and expect to decrypt with the private key of a totally independent key pair.

  • Australian phone number that starts with 07 54** *...

    Is it possible to get an australian phone number that starts with 07 54** ****?profile.language=en

    Hi,
    I am facing the same issue - has anyone got a resolution to this?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^(\*7\d{2})
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^01[1-9]\d{7,8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^02[03489]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^03[0347]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^05[56]\d{8}\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^08((4[2-5]\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^070\d{7}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^0(45464\d))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^(00)?((1[2-9]\d\d[2-9]\d{6})
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([2-9]\d{6,14}))(\D+\d+)?
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^1([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert MicroSoft Dial plan: ^([\*\#][\*\#\d]*\#
    0319134958|utilm|4|00|Failed to Convert all the MicroSoft(Lync) Dial plans
    thanks
    jack

  • How to select number field starting with 99

    Hi Freinds-
    I have to pick values for a number field  but  i want only those values which starting with 99 
    how i can put code in select query for this ?
    Regards
    Meeta & Ruby

    Hi,
    Use the query as:-
    select
       <field1>
       <field2>
    from <database_table>
    into table <internal_table>
    where
       <field_name> like '99%'.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • HP Officejet 8600 scan - How to force scan number sequence starting with a number of my choice

    Using HP Officejet 86XX on WIn7 - with ADF. 
    I scan a lot of docs via the ADF and all docs scanned has a number in sequence noted at the documents.
    Is there any way to decide which number the HP scan software shall start its numbered sequence? Eg. prefix "Document-" and then force the sequence-number to start at 00200, on order for the next file sequence number to be 00201 and then 00202 and so on??

    Hi , I may be able to help you with your scan settings, but I want to make sure I understand what you are trying to accomplish - so let me know if this isn't what you are looking for. Click on the HP Printer Assistant icon on your desktop (It will look like your printer, and be labeled to match)In the HP Printer Assistant click on Scan a Document or PhotoChoose the shortcut you are selecting on the front panel of the printer (ie Save as PDF)Click on Advanced Settings You can modify your scanner settings, I believe you want to change the settings on the Destination tab.Base File Name: First part of the file name, so in your example "Document-", the scanner will automatically number it after each scan.. eg. Document-0001 will be your first scan, Document-0002, will be the second.Save Location: You can even setup a new folder for the scans  After you change the settings, try the scan from the front panel of your printer. Please let me know if these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!  Thanks, 

  • OM Prepayments:  Can Check Number on Order be transmitted to Cash Receipt?

    When using OM Prepayments, we enter the Check Number in the field 'Identifying Number' in the Payments screen for Payment Type 'Check'. This is a required field and we notice that IDENTIFYING_NUMBER is populated in OE_PAYMENTS.
    However, this number is nowhere to be seen on the AR Receipt. Oracle Support says this functionality is currently unavailable. Just wondering if anyone has got this to work. BTW, we are on 11.5.10.2.

    Sanjib
    Prepayment matching program gets launched only when there is a row in the oe_payments with prepay flag is checked. This means you need to enter records in the payments screen for a specific order with prepay flag checked at the time creating an order.
    Thanks
    Nagamohan

  • Where can I find "Getting Started with AppleScript"?

    I googled it. And it doesn't show any links from Apple. I'm trying to learn AppleScript and the Language guide says to go through the Overview first which in turn recommends going through Getting Started with AppleScript.
    I even searched Mac Reference Library but it just doesn't show up!
    Any help?
    Neerav

    No, certainly not. I mean, I don't know any AppleScript, but I can say with certainty that the answer to that question is no.
    Objective-C is a programming language that is an extension of the C language. It is the language that is used to develop applications for Mac and iPhone. Other languages like C++ and Java can be used as well, but Objective-C is the language that Apple really intends for you to use for Mac and iPhone development, since it is heavily integrated with the Cocoa framework (for Mac developemt) and Cocoa Touch framework (for iPhone development). You need to know the C language to learn the Objective-C language, and you need to know the Objective-C language to work with the Cocoa or Cocoa Touch frameworks, but AppleScript is a totally separate and different animal from these things. AppleScript is a scripting language, and although it can technically be used to create applications from what I understand, it is mainly used as a mechanism for controlling applications. For example, you could use AppleScript to tell a certain application to perform a certain task everyday at a certain time. You can use it to create automated workflows and whatnot. I think that's what it's mainly meant for.
    It's worth noting, however, taht there is a development environment called AppleScriptObjC. I don't really know anything about this, except that it allows for AppleScript to be used as the primary programming language.
    I found a lot of this information at [Wikipedia's AppleScript page|http://en.wikipedia.org/wiki/AppleScript], so you might want to consider looking over it real quick -- it might be helpful. Here is the link to [Wikipedia's Objective-C page|http://en.wikipedia.org/wiki/Objective-c] and [Wikipedia's Cocoa page|http://en.wikipedia.org/wiki/Cocoa_%28API%29]. As someone said on these forums, Wikipedia is far from the last word on any subject, but those links might be helpful for you for just getting an idea of what these things are all about.
    Hope that helps some. Please let us know if you have any other questions.

Maybe you are looking for

  • Browse in Bridge from Photoshop CC 2014 fails to open Bridge and wants to install new version

    Hey community!  I found a few similar posts, but couldn't find much of a resolution.  Last night I was working in PS CC 2014 and all was well.  Used Browse from Bridge in PS.  Everything is working fine all night long.  Get up this morning, return to

  • Is there a maximum input file size Flash CS3 Video Encoder can handle?

    I am stuck with this encoder and attempting to "TRIM" an MPG file to specific time in/time out points for CBT course (the video is close to 500 meg). When I click the "Start Queue" it zips through with a bunch of black area then slows and only gives

  • HDV on 24" iMac

    will an iMac 24" with up graded video card be able to handle and edit HDV coming from a Sony V1U and their new clip on hard disc recorder.

  • Connecting lap top to hdtv

    I have a new HDTV with a pc input.  I tried to connect my m105-s3004 satellite to my toshiba 42hl167 tv using the pc input with a vga cable and the tv is displaying " unsupprted video signal.  Is there something extra I need to do to get my lap top t

  • Communication between User & Kernel

    Hi all, I want to communicate between I/O kit user client & I/O kit driver (kext). which is the best IPC mechanism available for this? Thanks & Regards, Sheetal.