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 strongm 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: tbuch
  • Order by date
  1. tbuch

    MEMO filed in MSAccess

    I answered my own question. I was testing for various data types, but overlooked LONGVARCHAR, which is what is returned from an Access MEMO field. Thanx anyway! tbuch
  2. tbuch

    MEMO filed in MSAccess

    I am connecting to an Access database that has a memo field. Can anyone tell me how to get the data from the MEMO field into a JTextArea? I am currently just trying to run the query and assign the value from the query to the text area, but nothing is displaying. I am not getting any errors...
  3. tbuch

    Retreiving multiple cookies

    I am having a problem with cookies. I have another script that stores the following cookies: username luckynumber sign I am trying to retrieve the cookies and assign the cookie names as the indices of an array and the cookie values as the corresponding values in the array. When I try to...
  4. tbuch

    Applet Won't Refresh

    Thanx, but I figured it out; it's Ctrl+F5 or Ctrl+Refresh
  5. tbuch

    Applet Won't Refresh

    When I make changes to an applet and recompile, I cannot get my browser to pick up the newly created class. I've tried refreshing, but no good. Any tips?
  6. tbuch

    Concatenating fileds in a data adapter

    I am connecting to an Access database. I am using a dataadpter and a bound combo box. I have a firstname field and a lastname field that I want to display in the combo box as lastname, firstname I have tried concatenating the fields in the DataAdapter configuration, but have had no luck. Any...
  7. tbuch

    Resizing form in VB.NET

    I have a problem... When I resize my form, I can only draw on the original form size. The rest of the form will not allow me to draw on it. Any suggestions? tbuch
  8. tbuch

    Adjust Form Size .NET

    Sorry, didn't know there was a .NET forum. tbuch
  9. tbuch

    Adjust Form Size .NET

    I have a problem... When I resize my form, I can only draw on the original form size. The rest of the form will not allow me to draw on it. Any suggestions? tbuch
  10. tbuch

    Won't recognize classes in same directory

    Thanks, Sean! Your advice was right on the mark. Can you tell me why that would happen? Regardless of the classpath, I thought it would always look in the current directory. tbuch
  11. tbuch

    Applet and HTML

    I copied and pasted your code, compiled it, ran it, and everything worked fine in appletviewer as well as IE. Your problem is somewhere else besides in your code. tbuch
  12. tbuch

    Won't recognize classes in same directory

    That's not it, but thanks for the response. Let me give a little more detail. In this exercise, I am having my students create a class, let's call it MyClass, and save it in the C:\java folder. Next, they are to create an applet , we'll call it MyApplet, that instantiates a MyClass object...
  13. tbuch

    Won't recognize classes in same directory

    I have a problem in my classroom. When trying to do labwork in class, I am unable to compile apps that call on other class files. It should be able to find them if they are in the same directory, but doesn't. Everything works fine in my office and at home, but not in the classroom or in the...
  14. tbuch

    App.Path in .NET

    Can someone tell me what has replaced App.Path in VB.NET? tbuch
  15. tbuch

    Setting font in message dialog box

    Thanx, Hologram...That fixed me right up. The only other problem was that I needed multiple lines. I achieved this using HTML tags in my String. tbuch
  16. tbuch

    Setting font in message dialog box

    Could someone please tell me how to set the font in a message dialog box? Just on a hunch, this is what I tried, but to no avail. JOptionPane jopt = new JOptionPane(); String result; result = "Print this string."; jopt.setFont(new Font("Monospaced", Font.BOLD, 12))...
  17. tbuch

    Output to file with no quotes

    Or you could do this: Print #1, "OrgName="; Write #1, "Organization Name" tbuch
  18. tbuch

    Apostrophe

    Another approach would be to use the textbox's keypress event and, if a single quote is entered, changed it then to an apostrophe.
  19. tbuch

    Output to file with no quotes

    Try: Print #2, "HD Test" That should get rid of the quotes. tbuch
  20. tbuch

    Apostrophe

    Good point johnwm. I sometimes forget about int'l settings.

Part and Inventory Search

Back
Top