Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by comboy

  1. comboy

    can't save form select option to database

    Thanks for the replies guys I understand what you are both saying about the relationships but I'm just trying to learn ruby and it was a quick mock up to try and learn about how ROR handles foreign keys etc. Thanks. Graham
  2. comboy

    can't save form select option to database

    Hi stevexff I've actually sorted thee issue, the first parameter for the select statement should have been "movie" not "Movies". In relation to the design the table is for a mock up of an entertainment site such as what movies are on at your local cinema. The durations table will also be used...
  3. comboy

    can't save form select option to database

    Hi all, First I'm new to ROR (stated today ) and I've googled abit to see if I could sort this out but I'm drawing a blank. I'm using bitnami rubystack and netbeans 6.8, I have two tables movies and durations which I used netbeans to create the scaffolds for. I then edited the movies table to...
  4. comboy

    Capturing AT responses and showing them on a label

    Hi Jebenson, The code did not work as I'm sure I did not provide you with enough information sorry my fault. The application is just one class apart from a PDU class imported as a module. I've set the following code already within the public class declaration and I think that is where I'm...
  5. comboy

    Capturing AT responses and showing them on a label

    Cheers jebenson I'll give the code a shot and see how it goes. G
  6. comboy

    Capturing AT responses and showing them on a label

    Hi All, I'm trying to design a sms application, I've done most of the work in that it can send sms both in plain and pdu mode but I'm stuck on one thing, getting the AT command responses once the send message button is clicked to show on a label on the application form itself. I've written a...
  7. comboy

    Print from DOS to USB via Microsoft Loopback Adapter question

    Hi all, Firstly I'm just looking for a bit of clairification regarding using MS Loopback adapter to print from a DOS based program written in Pascal on MS XP. I've read up on how to install the loopback adapter and using the net use command my questions are as follows; 1. Can use lpt2+...
  8. comboy

    How to determine the CSP of a cert

    Hi Hondy, I'll have a look at the webasite thanks for the link. I've tried using mmc but could not see anything regarding Microsoft Strong Cryptographic Provider being used for the certificate. Thanks again, Graham.
  9. comboy

    How to determine the CSP of a cert

    Sorry to clarify the certificate in question is a digital certificate but I'm sure you all knew that already. Thanks, G
  10. comboy

    How to determine the CSP of a cert

    Hi all, I've been asked by work to determine if the CSP of a certificate is Microsoft Strong Cryptographic Provider or not for client computers that are on workgroups not domains in order for part of our application to run. Could any one please tell me if this can be done and how. Many...
  11. comboy

    New to Java Array question

    Hi Guys thanks for the help got things sorted.
  12. comboy

    New to Java Array question

    Hi All, Ok I've got the results to print as I want them to using the following code { Scanner input = new Scanner (System.in); int year = 0; int indexyear = 0; System.out.print("Enter a year: "); year = input.nextInt(); if (year <=0) {System.out.println("The year must be greater than...
  13. comboy

    New to Java Array question

    Ok close to what I need but what I actually need is that is the user enter a year such as 1975 I need the system to print out all values that match the year and are less than the year e.g. year entered = 1975 results Pete[name] was born in 1974[birthyear] Kate was born in 1960...
  14. comboy

    New to Java Array question

    Yeh tom thats what I mean, but I need to use a while loop according to the course guidelines. I'll try and use your suggestion and see what I can come up with. Bong, Kodr thanks for the suggestions but thats way above my knowledge at the moment, but thanks for them. Thanks again guys will get...
  15. comboy

    New to Java Array question

    Hi all just started studying Java and need a little help on arrays. I'm trying design a program that will allow a user to enter a year (an int variable) and return <=values from two external arrays based on the year. my arrays are as follows public static final String[] names = {...

Part and Inventory Search

Back
Top