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 Coderifous

  1. Coderifous

    Help w/ errors.add_to_base between controller and model

    The errors for your model objects will be available via the objects that they were added too. So, in your controller code, if you have a model object called "invitation", and you try to save it but get validation errors, then you can retrieve the errors by doing something like...
  2. Coderifous

    public/dispatch.fcgi No such file or directory

    This might be helpful.
  3. Coderifous

    JTable behavior

    When I'm editing a cell in a JTable, I can hit "Enter" and the focus goes to the next row. Where is this behavior defined? Is it a look and feel thing? I need to change the behavior, because, when you are on the last row of the table, and you hit enter, the TOP row is selected (which is good)...
  4. Coderifous

    $1 not set by regexp in loop

    Whew, I am rusty. You are right. If I have a break today I'll copy your test data and try to debug it, but I'm sure someone will beat me to it. Sorry about the uselessnses of my previous post. --jim
  5. Coderifous

    $1 not set by regexp in loop

    Not sure if this is it - but the first thing I notice is that you probably don't want a greedy quantifier. Change: s|^(<[^>]*>)||g To s|^(<[^>]*?>)||g --jim
  6. Coderifous

    Overriding a tiny part of look and feel.

    Hi Dian, I'd love to subclass it, but I don't know how to 1) subclass an inner class (Handler is inner-class to BasicListUI) or 2) how to tell JOptionPane swing constructor to use my special subclassed look'n'feel class, instead of the default one. Any clues? --jim
  7. Coderifous

    Overriding a tiny part of look and feel.

    In my system I have a JList that displays values LIKE: Foo Bar Baz 1023 10432x 11101 11200 113 114 117 213 232 And my users like to use the type-ahead type functionality provided by the basic look and feel package. So if the user wants to select the "232" value, the user merely begins typing...
  8. Coderifous

    Is samba the &quot;right&quot; way? LOE?

    I'm definitely going to use Samba. I've got it installed on my test unix server. Any idea how long something like this generally takes to setup? I'm on a time-budget, and want to make sure I notify ahead of time if this is a typically time consuming process.
  9. Coderifous

    Is samba the &quot;right&quot; way? LOE?

    At work I am tasked with setting up a "Unix Server that Windows Clients use". The requirements couldn't be more vague, but I've dug a little deeper and learned that they want authentication to be handled by the Unix server, they want shared resources on the unix server, and they also want to...
  10. Coderifous

    Noob

    At work I am tasked with setting up a "Unix Server that Windows Clients use". The requirements couldn't be more vague, but I've dug a little deeper and learned that they want authentication to be handled by the Unix server, they want shared resources on the unix server, and they also want to...
  11. Coderifous

    Migration from MS-SQL Server (on windows) to Sybase (on unix)

    My contract has inherited a legacy MS-SQL Server DB, and our mission will be to port it to Unix - the chosen target DB is Sybase. Not sure exactly who chose Sybase, but whatever. The good news, as I understand it, is that MS-SQL Server and Sybase have a shared heritage - making many features...
  12. Coderifous

    Migration from MS-SQL Server (on windows) to Sybase (on unix)

    My contract has inherited a legacy MS-SQL Server DB, and our mission will be to port it to Unix - the chosen target DB is Sybase. Not sure exactly who chose Sybase, but whatever. The good news, as I understand it, is that MS-SQL Server and Sybase have a shared heritage - making many features...
  13. Coderifous

    &quot;THEY&quot; want a GUI - any suggestions?

    There's also Qt, which has a sweet GUI-building sweet called designer-qt3 (I think). Now, I tried installing it on my mandrake laptop, and it installed ok, but the designer-qt3 app crashes miserably when I try to use it. seg fault. I think that is a symptom of some crappy lib configs on my...
  14. Coderifous

    square brackets?

    Can you provide an example of what you are talking about? --jim
  15. Coderifous

    Using SSI with Perl

    inforeqd, your problem is somewhat vague, but that's not the major problem here I think. Based on how you worded your question and your stated goal, it's probably safe to say you are a beginner. Cool. Tek-Tips is the place to be. In order to help you out, I think a little more info is...

Part and Inventory Search

Back
Top