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. pegazaus

    list.erase(it) problem

    It says nothing, The compilation goes fin , but when executing the program I get like error and the program crashes. You no like error has occured and send report and so on.
  2. pegazaus

    list.erase(it) problem

    Hello , First I wanna thank all the people that hade helpt with "string to int" problem. I'm using Visual studio 6.0 and I 'm woking on the following code: list<Figure *>HildingsKakor; ..... Figure* p = new Figure("somebitmp.bmp, 100, 100"); HildingsKakor.push_back(p); Figure* p = new...
  3. pegazaus

    String to int

    Is there a function in C++ other than atoi() that converts a string to int?
  4. pegazaus

    String to int

    Is there a way to convert a string (class string) to int in c++, Other than atoi()? I mean is there a function writen, specially for C++, that does that?
  5. pegazaus

    Parsing in PHP

    Hi again I'll explain more. what I'm really after is how to go through a string and check it char pre char. Example in C language you can use a silly way to check if the user typed nonalphabethical chars in his/her name. for(i=0;i<strlen(name);i++){ if((char[i]<'a'...
  6. pegazaus

    Parsing in PHP

    Hi I need to know how to parse a String in PHP. Exemple when a use enters his/her name, I need a function that checks if the user did type some nonalphabethical characters.
  7. pegazaus

    Sqlite with PHP

    Thx for the URL. I'll check it.
  8. pegazaus

    Sqlite with PHP

    Hello Good people I'm beginner with PHP and I'm trying to create a simple guest book. I'm using Sqlite because I'm familiar with it and I'm trying to spare me the complications of installing Mysql or other DB-applacation. Does anybody knows a good tutorial about Sqlite with PHP? Thx
  9. pegazaus

    Help Needed to install Apache 2.0.54 on WinXP

    Hello I'm trying to install apache2.0.54 on winXP. I want to use it to test my own PHP files on my local PC. During installation I 've choosen : 1- whatevernet.com 2- www.whatevernet.com 3-webmaster@whatevernet.com then I've choose the option that listens to 8080 (personal use) I really...
  10. pegazaus

    Need help to install Apache 2.0

    Hello I'm trying to install apache2.0.54 for Windows,on winXP. I want to use it to test my own PHP files on my local PC. During installation I 've choosen : 1- whatevernet.com 2- www.whatevernet.com 3-webmaster@whatevernet.com then I've choose the option that listens to 8080 (personal use)...
  11. pegazaus

    Mixing Css with Javascript

    this is how the code looks like now: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>HTML file / Elie Assaf</title> <!-- script Delen --> <script...
  12. pegazaus

    Mixing Css with Javascript

    I tried the last solution and I got the following error error:this.form has no properties If your're not tierd or bord, I appreciate all help
  13. pegazaus

    Mixing Css with Javascript

    Hello again I was actually thinking that the changes should affect everything between <td id=mindt> and <td> (I mean eveything in the first cell). I'm glade you taught me how to target on "textarea", I'm learning great things from you. I checked your page and it's awsome, I wonder how deep...
  14. pegazaus

    Mixing Css with Javascript

    with that last suggestion, nothing happened, No error no reaction Here is the full code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>HTML file / Elie </title> <!--...
  15. pegazaus

    Mixing Css with Javascript

    No I don't have any other Id it's the only id I have actually. I made the changes you talked about. Now I don't see any error :). But I see no changes either when I fill in a new font and press the button. Is there supposed to be some kind of refresh os so?
  16. pegazaus

    Mixing Css with Javascript

    Hello again I have tried the code with firiefox <input type="button" onclick="document.getElementById('mintd').style.font-family = this.form.bfface.value;" value="Change fontface"> But I got the following error: erro: invalid assignment left-hand side code...
  17. pegazaus

    Mixing Css with Javascript

    Hello I'm creating a home page that allow users to change it layout. My layout is defined in CSS form i the <head> tag . . <head> <style type="text/css"> td.mintd {font-family:Verdana; font-weight:normal; font-size: 12px...
  18. pegazaus

    Going back to priviosly visited window via a created button

    Hello I'm new to java script. I need to know how to create script that allow the user to go back to previosely visited window whenshe/he pushes a button from with in the HTML. I don't wanna use the "back" button in the menu. Is there a javascript that can do that? I appreciate all help. thanks
  19. pegazaus

    JSP problem with tomcat 5.0.28

    Thanks nor the problem is solved but an other problem came up. I have the floowing bean, StudentBean: package elie_paket; public class StudentBean{ String Namn; float tentapng; String tentabetyg; public StudentBean(){ } public String getNamn(){ return Namn; } public...
  20. pegazaus

    JSP problem with tomcat 5.0.28

    Hi I 'm beginner with tomcat and I have a problem with JSP files. I have tomcat5.0.28 (preconfigured) installed on WINXP OS. I'm working in ROOT directory (C:\Program\Apache Software Foundation\Tomcat 5.0\webapps\ROOT), this is where all my jsp files are, and my java class-file are in a...

Part and Inventory Search

Back
Top