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

    Moving Linked List Items

    Can someone point out where im going wrong here please. ive got my linked list populated with several objects, and im trying to move the selected object to the front of the list (or the back depending on which direction its supposed to go) what i have so far is: public void toFront() {...
  2. SlykFX

    Input to String

    Can anyone offer any explanation on this please im trying to accept user input from keyb and ultimatly store it in a string ive tried both string sNewName; getline(cin, sNewName); and char cNewName[25]; string sNewName; cin.getline(cNewName, 25); // also tried "sizeof...
  3. SlykFX

    IE, Floating Divs and hiding content

    hi guys a site im currently has a left hand nav column, a right hand ads column and all the content between the two im positioning it all in css with divs (floating divs to get things where i want them) the problem (at its worse) is on this page http://www.3foottall.com/contact.aspx see the...
  4. SlykFX

    record count

    im not sure if this is the right place for this but .. is there any reason as to why this isnt working? Error: Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it...
  5. SlykFX

    div dynamic width

    ive got divs strewn thoughout my page with stuff like navigation, positioning, etc. in them that are resulting in different lines of the page being different widths is it possible to form some method of giving a div tag a variable width based on where the div lies i need this done in css as it...
  6. SlykFX

    Page layout getting messed up

    im uysing a table to layout my page as i want things to originate from the center of the screen, im using an external css to setup the tables and everything the page is displaying perfect until i put the doctype declaration in then the whole layout gets messed up its as though it is affecting...
  7. SlykFX

    Count values in report detail

    ok, heres what i want to do ive got a report using a query to select the required info from 3 tables the query is working great, return the correct records from the table and the supporting data from the other 2 tables i can get all this onto the report, but i need to list it in such a way...
  8. SlykFX

    Some advice and tips please

    Ive decided on a new project that I will be filling my summer with. However Ive not used VB.net before, nor have I attempted anything like this previously. I do have some VB6 knowledge amongst other languages of varying degrees, mainly scripting languages and unix scripting, but some windows...
  9. SlykFX

    functions and pointers

    Apologises if this is covered somewhere else but i did a search and couldnt find what i need im trying to pass an int pointer from one function to another and cos i dont understand the question, the ode below explains a little better int main(void) { int location[maxNum]...
  10. SlykFX

    Networking Problems

    Im having a slight prob with networking my two computers my main computer is running WinXP Pro and runs the proxy for my laptop my laptop is running WinXP Home my laptop can view the workgroup and sees both computers in there - the laptop can access itself but not the computer my computer...
  11. SlykFX

    Variable declaration

    is it possible to assign a variable a value at declaration? the main reason i would like to do this is im using user-defined types but would like each of them to start with preset values but cant use consts as they will change during the applications execution im currently using a subroutine...
  12. SlykFX

    username from registry

    can someone tell me the registry location of the current logged on user please I can't be bothered to have a sig!
  13. SlykFX

    Access Registry values

    is it possible to access registry values with programs made in vb6? and if so, how? im guessing it is possible but not sure how to do it thanks in advance for any help I can't be bothered to have a sig!
  14. SlykFX

    Scrolling textarea on page load

    i beleive this is the corect forum for this but im not sure (i do very little JavaScript, when i cant avoid it) the short question is: how do i automatically scroll to the bottom of a textarea element when the page loads? i believe i need to use "scrollIntoView(false)", but im not...
  15. SlykFX

    redirect to page x if not on page x

    my site has quite a large include file that contains all the page styles, db connection, etc. however, it contains a line that if a certain instance in the db is true it redircts to another page this page also requires the use of the include file (i dont want to copy the current file minus the...
  16. SlykFX

    Formatting numbers

    Is there a way to format a number so that it shows commas in the appropriate location the numbers will be coming from both a database and from user input and can range between anything from -infinite to +infinite (the incredibly large/small numbers wont be coming from the db, but you get the...
  17. SlykFX

    Multiple Submit buttons in one form

    i have a form and i need to use several submit buttons to submit the form so that the input will be sent to the correct sub i have one text box and 3 submit buttons and depending on which submit button is pressed, i want the correct subroutine to be run to query the correct table in my db...
  18. SlykFX

    Next letter

    is it possible to increase the letter that a variable holds? e.g. letter = 'a' -some code- letter value = b i want to repeat that process for an non-predetermined amount i.e. some times it will stop at b, other it will stop at q depending on the number of values being processed i know i can...
  19. SlykFX

    Deleting files

    my db contains the locations of a load of files used in my project (all files are *.dat) however i need to set it so that the user can delete the file from browser my current script will delete the db record of the file, but i need to delete the file aswell the files were all created on the...
  20. SlykFX

    random number

    is it possible for perl cgi to create a random number between 1 and x? if so can u point me in the right direction for the code I can't be bothered to have a sig!

Part and Inventory Search

Back
Top