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 wOOdy-Soft 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 McBugzz

  1. McBugzz

    How do I specify an assembly's location?

    Hi, I've got an executable which depends on an assembly. The executable runs fine when the assembly sits right next to it in the same folder. Is there a way to remove the assembly from the folder where the executable sits and put is somewhere else, without getting...
  2. McBugzz

    Persistence: generating a value automatically

    Hi, I have a bean: class SomeBean { private long number; //... getter/setter } I need to assign a value to to SomeBean.number automatically, when it's persisted with the EntityManager. Are there any annotations that would do the job? GeneratedValue didn't help, as much as I tried. Note...
  3. McBugzz

    Selecting multiple cells in JTable

    No, that has nothing to do with the problem I've described.
  4. McBugzz

    Selecting multiple cells in JTable

    Hi, Is there a way to have multiple, non adjacent cells selected in JTable? I know there's a method JTable.setCellSelectionEnabled(boolean), but it doesn't help much because if the cell selection is "enabled", then the selected cells are those that are on the intersection of the selected...
  5. McBugzz

    Indy 9 Installation

    Hi, I'm having a problem installing the Indy 9 on to the C++ Builder 6. I've followed the steps described in the ManualInstall.txt, but when I try to install the dclIndy60 package, I get an error: Entry point not found. Smth about the missing @Idresourcestrings@_RSBindingAny. Any clues? Thanx
  6. McBugzz

    Monitoring The Apps In WebLlogic 9

    Hi, Is there a possibility to monitor the application in terms of the number of allocated objects (and, maybe, other profiling) in WL 9? Say, to be able to tell when the app server is starting to slow down? Thanx
  7. McBugzz

    Serialized object size

    some kinD
  8. McBugzz

    Serialized object size

    That simple? I mean, there's the MarshalledObject class that seems to do the job and can tell the objBytes.lenght, but I though that maybe there's some king of a profiler that track that...
  9. McBugzz

    Serialized object size

    I'm calling a remote method (ejb) and as an argument I pass a Serializable Object. The object is a model which has references to other objects (and so forth). Is there a way to measure the exact size of the marshalled data that's going to be actually sent over the net? If yes, please give a...
  10. McBugzz

    JSP Debugging

    Is there a way to debug jsps that are located on a Weblogic (8.1) server? Thanx
  11. McBugzz

    Sharing info between browser instances

    I need to stop the user from using some web-service from more than one browser at the same time. In order to provide that restriction without using additional server-side logic, I need to make an instance counter that would be accessible from all windows. Is that possible? Thanx
  12. McBugzz

    Using oracle hints

    I need to make a small application that would demonstate the benefits from using hints i.e. I need a query that can be significantly optimized with hints, so that I could run it with and without hints and show the difference. Does anybody know an article of that subject or maybe some ideas...
  13. McBugzz

    Using pipes

    I start a new process via Runtime.getRuntime().exec(), and I need to send some data to it. The new process should receive some of the data that I send, and then create a yet another process, which has to start receiving the data instead of the first one. I belive I should use the Pipe object...
  14. McBugzz

    Sending a message from one process to another

    I've got process A, that spawns process B (CreateProcess). Is there a way I could send some data (message) to process B? Smth like SendMessage for windowed apps? (Note: my application used console only) Thanx
  15. McBugzz

    Recycle bin perl script

    I need to add some basic recycle bin functionality to bash. All that's required is a command that would move a file to a special directory (recycle bin), and another command to restore the file. This has to be a perl script. Anybody knows where to find one?

Part and Inventory Search

Back
Top