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 SkipVought 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: *

  1. pzepernick

    Samba Mount Ownership

    Thank you very much. Is there anyway to change the permissions on the folder from 755 to 775 so that the group can also have write access, or when I specify the gid is it going to automatically give it 775? Thanks, Paul
  2. pzepernick

    Samba Mount Ownership

    Can someone tell me how to change the ownership, and permissions on a mount to a windows share? I have been able to mount a windows share, but when the mount is performed the ownership always goes to root root, and permissions 755. When I try to change the ownership or permissions, I get the...
  3. pzepernick

    hibernate datasource error

    It looks like it is trying to connect to a DB that it is not able to find. Are you trying to use the hibernate connection pooling? I think the example may use HSSQL. You may want to make sure the DB is configured OK. Paul
  4. pzepernick

    Dynamic array as report input parameter

    What are you trying to do? Are you talking about using an array as your Data Source? Paul
  5. pzepernick

    Dynamic Array

    Just to expand on what Gamecock said. Here is an example Dim myarray() ' could also be global Do While "More Data To Put In array" 'Ubound will return the bottom indicy of the array ReDim Preserve myarray(0 To UBound(myarray) + 1) myarray(Ubound(myarray)) = "my value" Loop Paul
  6. pzepernick

    Do While Question

    That is what I am trying to figure out. What is the command to make it go back to the top of the While? I am used to working with Java where I can issue a continue; anywhere inside the loop and it will go back to the top. Thanks, Paul
  7. pzepernick

    CSV file Read Problem! Help needed

    I have an Java API on sourceforge for reading delimited and fixed length text files, that may be able to help. Check it out at: http://www.sourceforge.net/projects/pzfilereader Paul Zepernick
  8. pzepernick

    Connecting to database

    Try changing your url to this: String url = "jdbc:mysql://localhost:3306/vpg"; I have never tried connecting without specifying the port before. If your mysql server is not running on 3306, then you will have to change this to the correct port. Paul
  9. pzepernick

    Document Viewer Plugin

    anyone?
  10. pzepernick

    Document Viewer Plugin

    Does anyone know of a plugin that can support the following formats: Word Docs (*.doc) Excel (*.xls) Acrobat (*.pdf) Tiff (*.tiff) Group 4 compression I have found a couple, but they are out of our price range, ImageGear and ViewCafe. If there is not a realitic plugin to handle all of these...
  11. pzepernick

    Do While Question

    Does anyone know if it is possible to go back up to the top of the Do While without making it all the way through the loop. Example Do While True If True Go back to top of while End If Other code here Loop Thanks, Paul
  12. pzepernick

    caching of Java classes

    This will work, but a couple of warnings. If you do this in production, and publish out a new class. The entire web app you publish to is reloaded. If a user is in the middle of a request, it will fail. It also creates overhead on a production server. Good for development, but I would not...
  13. pzepernick

    PHP Apache2 Integration

    I am having a problem integrating Apache 2.0.50 with php 4.3.8. I have followed the install.txt that came with the PHP install and it looks like I have everything setup right. I can even start apache from the command line and everthing is ok. PHP is also working when it starts. When I try to...

Part and Inventory Search

Back
Top