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 TouchToneTommy 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: JavaDude32
  • Content: Threads
  • Order by date
  1. JavaDude32

    Viewing Source

    Well I'm debugging a page and I would like to look at the result of the javascript functions in the page. This includes source changes and modification of HTML through javascript. Plain View Source doesn't cut it as it is only showing me the result of the page after the server side script but...
  2. JavaDude32

    JAR issue

    Hello, I seem to have a complex problem, did a google search, didn't find too much. I'm trying to make a Jar file like so: jar cv0 ZipFlex.jar * I've also tried jar -cv0 ZipFlex.jar * and jar -cv0 ZipFlex.jar *.class This is entered into a terminal (Gnome and Xterm) on Debian with the...
  3. JavaDude32

    File System Problems (CDROM & Floppy)

    I have Debian Sarge installed....I think 3.0 Anyways, after doing a net installation using the minimal boot up cd on my compaq presario laptop, I can't mount my cdrom or floppy drives. I have tried it with a random floppy disk and it tells me that the file system is unrecognizable or something...
  4. JavaDude32

    Cookie Detection

    Alright, I have a script so far and I tested it in Mozilla and it seems to work, but no such luck in IE. The idea is to determine if the user has cookies enabled. If the user doesn't have at least cookies enabled for first-party cookies or cookies from the originating site, it redirects them...
  5. JavaDude32

    This is not sizing correctly for me

    This is not sizing correctly for me, the idea is: ------------------------------------------------------- | Field1 | F2 | Field 3 | ------------------------------------------------------- Instead the browser renders the Student Name cell as the longest cell in the...
  6. JavaDude32

    Possibly Boot Up Problem

    A friend of mine has a computer that isn't displaying anything on screen when the power button is pressed. Fans run, and the lights get power but he has recently installed a video card and the computer refuses to display from this point. I tried removing the card then flashing the bios and the...
  7. JavaDude32

    AutoUpdate

    Okay, I have a Access database that has 3 main index fields (course_Id, module_Id, question_Id). This is for storing student exams and I came up with a few solutions although currently it is just stored as 1 flat table. Data Format is as follows: Question AnsA ... Lesson_Reference course_Id...
  8. JavaDude32

    Netscape CSS Positioning

    I have this code: <html> <body> <div style=&quot;position:absolute; color:white; background-color:transparent;&quot;>THE TEXT ON THE IMAGe </div> <img src=&quot;blackness.bmp&quot;> </body> </html> Now IE renders the Text just fine, but Netscape does not. Netscape places the Text below the...
  9. JavaDude32

    Packaging Question

    I've just recently gotten into creating packages for my applications. My question is does the package, say XXX.YYY, still belong to the package XXX (Wondering if default classes in XXX are available to classes in XXX.YYY)? Next question is if I am distributing an application, does giving...
  10. JavaDude32

    XP HOME - Workgroup problem

    Okay, I would like to be able to restrict access to a workgroup (if this is possible). I'm at a university and so all computers are on the same lan. Is this possible or would I have to set up a domain (if I can)? If I have to set up a domain, then can I just keep the computers in a workgroup...
  11. JavaDude32

    Dynamic program modules

    Okay, I'm working on a server application (not servlet or jsp) that will service multiple users and have a user account system. I'd like to have different modules of code in this program used for users with different security levels. Also I'd like to be able to update the system on fly, or...
  12. JavaDude32

    Mid problem

    I have a loop that essentially breaks down a string character by character (if there is a charAt or any type of method such like please point me to it). It refuses a variable as a 2nd argument even with the CLng conversion function. Dim intTemp For I = 0 to...
  13. JavaDude32

    Mid doesn't work?

    I'm not sure if this is the correct board, but as this code is in an ASP page and the default language is vbscript I'll post here. I have the following code: Dim intTemp For I = 0 to Len(Session(&quot;mapFeatures&quot;))-1 Step 1 intTemp = Session(&quot;mapFeatures&quot;)...
  14. JavaDude32

    Permission Denied

    I'm having this problem with the following line: if(parent.Results.location.href == &quot;processing.htm&quot;)//Error! Here! { parent.Results.location.href = &quot;Results.htm&quot;; } at the top of the page this line exists: <base target=&quot;Map&quot;> But I don't think setting the...
  15. JavaDude32

    ASP not being processed

    I need some help, my OS is Win XP Pro and I'm using IIS 5.1 to publish the pages. The services IIS Admin, and WWW publishing are running, however WWW publishing seems to freeze on a request to stop or restart. I've tried rebooting the machine, but alas the same problem. Can someone please...
  16. JavaDude32

    Writing HTML and JavaScript with ASP

    I have been having errors in writing custom html based on user selections due to the ASP <% %> content not being read correctly. I can't seem to mangle the quotes right, so how can I fix this? <img src='<%=Application(&quot;WebAppVirtualRoot&quot;)%>/Share/GWMProcessing.gif'...
  17. JavaDude32

    Variable Setting\Passing

    I have a webpage that basically serves as an input page to enter address information by utilizing a simple html form. After having entered the data, then the framed page with the map frame and the toolbar frame is supposed to load in the same window (replacing the input page). How do I pass...
  18. JavaDude32

    Printing Lines without Crystal Reports, aka Printer

    How can you print a line from one end of the page to the other end of the page on a printed report? I think I need the Printer.Line function but I don't know how this works with parameters, I only have a copy of the working model of Visual Basic on me and I don't have access to MSDN thanks to...
  19. JavaDude32

    Dynamic Class Loading?

    Okay, as far as I understand the ClassLoader, it loads all classes at runtime. My project I am currently working on, may have about 50 to 60 classes when it is finished. The classes that are needed is dependent on user input, so I was wondering, (a) is Dynamic Class Loading in Java possible...
  20. JavaDude32

    jar files

    Well considering I've never used these before now... How you do make a class the main executable class in a jar file? I'm trying to bundle an application of mine with about 10 classes into 1 jar file and have it run that way, but it is giving me the error on execution about there not being a...

Part and Inventory Search

Back
Top