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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: p3aul
  • Order by date
  1. p3aul

    macro or technique to delete cr/lf

    I have text documents that have Cr at the end of each sentence and seems to be double-spaced. I can't get the replace dialog box to search for a paragraft mark or a linefeed. I cant get the format paragraph to remove the double-spacing either. It really wrecks havoc trying to convert these texts...
  2. p3aul

    Attaching code to a button(Jbuilder 2007 turbo)

    Hi! I'm building a java swing applet that has several text fields and a button to begin calculating the input from the fields. I know that in C++Builder all I have to do is double-click the button, and the frame of the function is created for me. All I have to do is start adding the code. This...
  3. p3aul

    Maskedit question

    How can I get rid of those little lines that are placed there when you create a mask? Thanks, Paul
  4. p3aul

    Common Logarithm

    Never mind I should have used log10() instead of Log10()! The Bad News: Time Flies The Good News: You are the Pilot
  5. p3aul

    Common Logarithm

    For got to mention I use #includes <math.h> <vcl.h> <sysmac.h> The Bad News: Time Flies The Good News: You are the Pilot
  6. p3aul

    Common Logarithm

    I need to get the common logarithm of a variable. Looking over the internet, I see examples that *should* work, but don't. This what I started out with: float lg; float sg; sg = Log10(lg); I got this: [BCC32 Error] Unit1.cpp(77): E2268 Call to undefined function 'Log10' On another site I...
  7. p3aul

    diaabling form resize

    I can't find this in the help section. It use to be possible in older versions but how do you do it Codegear Rad Studio 2007? Thanx, Paul The Bad News: Time Flies The Good News: You are the Pilot
  8. p3aul

    rounding a double value to n decimal places

    Thanks, Opieo, I slept on it and decided to change my edits to mask edits and that solved my problem! Paul The Bad News: Time Flies The Good News: You are the Pilot
  9. p3aul

    rounding a double value to n decimal places

    I have a variable of type double that I want to display in an edit box. after I do my calculations I am left with a number that has about 10 decimal places and I want to reduce it to 3 decimal places. How Do I do this? TIA, Paul The Bad News: Time Flies The Good News: You are the Pilot
  10. p3aul

    raising a number to an exponent

    Well I finally got Power() to work so that's the one I nee! Thanks, Paul The Bad News: Time Flies The Good News: You are the Pilot
  11. p3aul

    raising a number to an exponent

    how do I do this? I have a variable of type double I would like to raise it to an exponent, also of type double. I have tried pow(base: double, exp: double) and power(base: double, exp: double). I have used lower case and I have tried capitalizing the first letter(although it shouldn't matter in...
  12. p3aul

    loading a text file into a form textarea

    Well, It looks to me that if JS can load an image residing on the server, then it could load a textfile? Paul The Bad News: Time Flies The Good News: You are the Pilot
  13. p3aul

    loading a text file into a form textarea

    loading a text file into a form textarea. How do I do this? Thanks, Paul The Bad News: Time Flies The Good News: You are the Pilot
  14. p3aul

    First Swing Applet

    Tim, Pascal is OO also. By Pascal I meant Object Pascal, but what I use is Delphi, based on the Pascal language. I noticed, after I double-clicked on the button, I didn't get a button-click event like in Delphi, but a actionPerformed event and instead of settting a property "text", I used a...
  15. p3aul

    First Swing Applet

    Thank you Tim! Since I am so new at this I was trying to do something simple in terms that I already knew. Thats why I chose JBuilder. I firgured the folks at Borland would put out a Java product that would work similarly to Delphi or C++Builder. The Java language is so hard to learn with their...
  16. p3aul

    First Swing Applet

    hi!I am using Jbuilder2006. I have a simple Swing applet with a button and a label. I double-clicked on the button and added this code: jLabel3.text = "Hello"; I have attempted to do this like a Delphi statement. I'm probley wrong! this is the error I got: "myswing.java": text has private...

Part and Inventory Search

Back
Top