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

    Compile probs

    please help, when i compile the following code i get errors not sure what they mean though. very new to Linux and C++ #include <iostream> int main () { int localVar = 5; int * plocal = &localVar; int * pheap = new int; *pheap = 7; cout << &quot;localVar: &quot; << localVar <<...
  2. asm1

    which distro ?

    Hi all, i want to move my website from XP over to a redhat 9 but when i went to http://apache.mirrors.rossfell.co.uk/dist/httpd/ i did not have a clue which to get. could some one please point me to the correct one. i would like support for: PHP SSL thanks The tougher it gets the more you...
  3. asm1

    Portability

    Hi all, Thinking of developing a network programme that we would like to be able to use on different platforms (Linux and Windoze) and i was wondering how portable this programme is likely to be. The assumption is that the programmes would have to be compiled on the appropriate platforms. Any...
  4. asm1

    depreciated &lt;iostream.h&gt;

    Hi all, I have a question but not sure if I am in the right forum, so please let me know if there is a more appropriate one to ask the question. I am messing with c++ from a book (C++ for Linux) and when I compile the programme below with the command “gcc cplus.cpp –o myoutput” I get stuff...
  5. asm1

    un-mount usb stick

    Hi all, Now that I have finely got the usb flash stick mounted(thread619-769729) my question is can I just unplug the device or should I use some un-mount command, the reason I am asking is when I unplug the device the files stay in the /mnt/usb directory, I am using RH9. Thx The tougher...
  6. asm1

    printer port

    i am trying to get red hat to print to an epson on an xp machine, the epson is a usb printer. does anybody know what port i should tell redhat that the printer is on and which queue i should use networked cups, networked unix, networked windows smb, networked jet direct? thx
  7. asm1

    mount usb flash

    hi all does any body know how to mount a USB flash drive
  8. asm1

    which language

    A quick question. I am thinking of developing a program that will test an IP address to see if it has an FTP site with anonymous login. My question is should I use C or are there better options. This is purely a self development project!
  9. asm1

    Accessing Array Problem

    I am having problems accessing the following array can some one please show me how to do this (newbie). I am trying to access the array from a class called AccGui and the array is in a class called AddAccount. The array is created as shown private void makeAccount() { String accNum; String...
  10. asm1

    Convert String to Float

    What is the quickest way to convert a String to float. I a managed to do this but the code covers about 20 lines, is there a string method to do this? At the moment my string is converted to a string buffer and then to type float. thx
  11. asm1

    package problem

    Hi all, I am doing the dive log tutorial from the java website but the problem is that they are packaged and this is causing me a problem, here is one of the lines that I am having problems with tabbedPane.addTab(&quot;Favorite Web Site&quot;, null, new WebSite(), &quot;Click here to see a...
  12. asm1

    Driver 4 Modem Problem

    i am using a BT voyager 100 ADSL modem with XP. I have tried to connect to Internet with mandrake but was unable. I looked for a driver for the BT voyager 100 but was unable to find 1 i could only find one for the BT voyager(older model). i am pretty new to Linux but i would have liked to have...
  13. asm1

    can anybody tell me if there is a w

    can anybody tell me if there is a way to print all fields, validations, input masks etc thanks
  14. asm1

    return value wrong

    can anyone tell me why i get the return value of $counter if ($counter%7) $i = &quot;1&quot;; elseif($counter%6) $i = &quot;2&quot;; else $i = &quot;3&quot;; return $i; this is the first time $i is used.
  15. asm1

    output the £ sign

    How do i output the British pound sign to the standard output. when i try i get a u with a mark ontop of it. does any one know why this is? thanks
  16. asm1

    make a new method

    I am trying to add the values from the account method but I don’t know how to call it or how write the first line. creditAccounts() { if theAccountNumber == 1001{ theBalance += 1000; } if theAccountNumber == 1002{ theBalance += 500; } return theBalance; } I am trying to test...
  17. asm1

    unable to make new object

    Hi all, I am trying to teach my self some java to enhance my website which at the moment only uses DHTML, php and JavaScript. I am currently trying to make a new object of an account (I think) ie I want to add a new account number, amount and name but I get a duplicate of the first printed to...
  18. asm1

    array problem

    The powers that be whant a page counter but the counter always returns 1 like TRUE I think because even if I put 2 in the text file, it is over written with 1. have a feeling it is to do with the array as I haven’t just got my head into how they work in php. Any suggestions would be appreciated...
  19. asm1

    query fail

    can anyone see why this query does not work $dbcon = mysql_connect($DB_HOST, $DB_USER, $DB_PASSWORD)or die (&quot;Could not connect to database students part 1&quot;); //select the database mysql_select_db($DB_NAME, $dbcon) or die (&quot;Could not select database part 2&quot;); //create the...

Part and Inventory Search

Back
Top