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 Rhinorhino 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 NiceButDim

  1. NiceButDim

    Newbie - Repainting images

    Hi, I am very new to Java. I have a problem with displaying an image; ------------------------------- package bts; import java.applet.*; import java.awt.*; public class Match extends Applet { Image box; public void init() { prepare(); } public void prepare() { box =...
  2. NiceButDim

    Pro*C/C++ : Compiler freezing

    Hi, We have C code with embedded SQL that we precompile with the ProC compiler. A couple of days ago it stopped working. We have been searching around for an explanation without success. Whats happening is that when you run the command with an input and output filename (as usual) it then...
  3. NiceButDim

    ORA-01000: Maximum open cursors exceeded

    Great. Thanks for your help. john.
  4. NiceButDim

    ORA-01000: Maximum open cursors exceeded

    Hi, I hope that this is the correct forum for this question. I am looking at an intermittant problem in a java program; 'Maximum open cursors exceeded'. The bit of code at fault accesses many tables inside a large loop. Each time it accesses a table it does the following at the start of the...
  5. NiceButDim

    Maximum number of files in a single partition

    Thanks for the reply. The bad news for me is that it appears that the only way to increase the number of inodes is to re-format the partiton. Thanks again john.
  6. NiceButDim

    Maximum number of files in a single partition

    Hi I am experiencing a problem due to having a very large number of files in a single partition which I hope someone might be able to help me with. I have been migrating an old badly written application from a Unix box to a Linux box. In total, the application has around 470,000 files in its...
  7. NiceButDim

    Burning DVD-R disk. 'No Disk In Drive'

    Hi, I am encountering a strange problem with burning dvd-r disks (using Nero). My PC, with I got last year has a dual-format writer. I’ve had on-going problems with dvd+r disks in that I have not been getting the speeds I expected; writing as 4x or even 2x instead of the 8x that I should be...
  8. NiceButDim

    Quotes - Tab Delimited File

    I don't think there is any way to do this within Excel. One option might be to copy the entire spreadsheet (Ctrl-A then Ctrl-C), then paste it into notepad. When you then save the file in notepad it will have tabs between the cells. john.
  9. NiceButDim

    Excel - Simple Macro Question

    Great, Thanks a lot. john.
  10. NiceButDim

    Excel - Simple Macro Question

    I hope that I am in the correct forum for this; I want a simple macro that copies the cell that is to the left of my current cell, into my current cell. When I record the macro it looks like this; Range("C11").Select Selection.Copy Range("D11").Select ActiveSheet.Paste My...
  11. NiceButDim

    Make file - Confused

    Hi, I haven't used make files for quite a while, and I'm having a problem that I hope someone may be able to help me with; I have a simple make file; mcom_Sales.c: mcom_Sales.pc $(ORACLE_HOME)/bin/proc config=/tmp/jh/proc_config_include code=ansi char_map=string def_sqlcode=yes sqlcheck=full...
  12. NiceButDim

    Calling a function in another window

    Exactly what I was after. Thanks a lot! john.
  13. NiceButDim

    Calling a function in another window

    Hi, I don't know much about javascript and I have what I hope is a simple question; I have a web page made up of 2 frames. I want javascript in the second window to call a javascript function in the first window. Assuming that it's possible, can anyone tell me how. Thanks. john.
  14. NiceButDim

    rmi

    Solved this myself. john.
  15. NiceButDim

    rmi

    I’ve been trying to get my rmi application running but when I start the remote service I’m getting the error java.io.streamcorruptedexception Type code out of range, is 125. I’m running on XP, with JVM 1.5_07 I then downloaded the SUN “hello world” getting started with RMI application and it...

Part and Inventory Search

Back
Top