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

  • Users: monasa
  • Order by date
  1. monasa

    ListBox error

    The code give me an error in this line : DGnotes.datasource = MyQueryMethod2(LBnom.SelectedItem.text) The error is : --- Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your...
  2. monasa

    Variable problem please help

    When I execute : --- Try If args.value >= 0 And args.value <= 10 Then args.Isvalid = true exit sub end if Catch args As Exception If args.value = "R" Then args.Isvalid = true exit sub End If End Try --- I had : BC30616...
  3. monasa

    customvalidator

    With custom validator, can I validate more that field with the same customvalidator contol Thanks in advance
  4. monasa

    Custom validator

    With custom validator, can I validate more that field with the same customvalidator contol Thanks in advance
  5. monasa

    urgent Problem please

    When I execute : --- Try If args.value >= 0 And args.value <= 10 Then args.Isvalid = true exit sub end if Catch args As Exception If args.value = "R" Then args.Isvalid = true exit sub End If End Try --- I had : BC30616...
  6. monasa

    regularexpressionvalidator

    although the text writed in the textbox is correct I have the error message of the regularexpressionvalidator I don t now what is the problem. M.N
  7. monasa

    Basic Linux installation in a CD

    Can anybody now how to have a basic linux (redhat) system in a CD (I mean a basic installation) thanks a lot in advance
  8. monasa

    Linux in my laptop

    Can I install Linux redhat in my Toshiba Tecra A2 Laptop with Windows XP prof. is there any problem.. Thanks a lot in advance
  9. monasa

    Software for forums

    Hi, is there a free software for forums management for redhat. Thanks
  10. monasa

    Anti-spam and antivirus for postfix

    Hi, is there any free (and simple) antivirus and anti-spam softwares for postfix? Thanks a lot. M.N
  11. monasa

    header fonction problem

    When I open this page I have this error : Warning: Cannot modify header information - headers already sent by (output started at /part/00/www-etud/usagers/nassihmo/HTML/d3g55na37/reserver1.php:7) in /part/00/www-etud/usagers/nassihmo/HTML/d3g55na37/reserver1.php on line 225 I know that header...
  12. monasa

    Compare date

    How can I compare two dates? For example (10-11-2004 <20-11-2004) or not.. Thanks in advance
  13. monasa

    login and password of mysql in php code

    To connect to mysql I must gave to mysql_connect the login name and the password in php code. @mysql_connect("localhost","root","01232") or die("Echec de connexion au serveur"); How can I hide this? Thanks in advance. M.N
  14. monasa

    HTML and PHP form.. please help

    In php I have a variable which called $room I want to display the containt of this variable as a default valut of input box in HTML form. Like : <input type="text" value=$room name="room"> but like this this does not work. please help
  15. monasa

    Pb with the date.. please help

    The probleme which I have is : I have a date field in the mysql database, and I want to get the month from this field with php. for example if the date in the database is 10-11-2004, I want to have 11 as the month thanks.
  16. monasa

    Pb with the date.. please help

    I m sorry, the code is " $dated = $row["dateD"]; //get a date from database echo $dated; //10-11-2004 $monthdeb = $dated["mon"]; echo $monthdeb //I get 2!! Thanks in advance
  17. monasa

    Pb with the date.. please help

    In the code bellow, when I show $dated I get 10-11-2004 but When display $monthdeb, I get 2 !! $dated = $row["dateD"]; echo $dated; //10-11-2004 //recuperer $datedeb de la base de donnée $monthdeb = $datedeb["mon"]; echo $monthdeb //2 Please help
  18. monasa

    strange date display from mysql

    The date in my table in mysql database is : enddate = 2004-11-16 but when I try to display this field using php, I had : 2004-11-162 the php code is : $requet = mysql_query("SELECT stardate, enddate FROM reservation where chambreID LIKE '%$chambre%'") or die(mysql_error())...
  19. monasa

    calendar

    HI, In my database I have a file which containt the reservation date of each room, (from .. to ..). For Each room I want to build a calendar of the current a month, which show for each day if the room is available or not. Thanks in advance. M.N
  20. monasa

    Form with data from diff table

    I have 3 tables "Guests", "Rooms" and "Reservation". A Guest can reserve a Room using reservation form. How can user from this form go search a room from Rooms table (using an other form ??) and comeback to the form continue the reservation ? Thanks in advance for the help. M.N

Part and Inventory Search

Back
Top