Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
4143 connectés 

 

Sujet(s) à lire :
    - Who's who@Programmation
 

 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  18192  18193  18194  ..  27003  27004  27005  27006  27007  27008
Auteur Sujet :

[blabla@olympe] Le topic du modo, dieu de la fibre et du monde

n°2036296
drasche
Posté le 16-11-2010 à 14:12:35  profilanswer
 

Reprise du message précédent :

skeye a écrit :


Il doit manquer un [/code], ce genre de connerie...[:joce]


Non, il y est.

 

edit: autant pour moi, il a foutu 2 balises code.

 

edit2: c'était bien ça :o

Message cité 2 fois
Message édité par drasche le 16-11-2010 à 14:13:41

---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
mood
Publicité
Posté le 16-11-2010 à 14:12:35  profilanswer
 

n°2036297
drasche
Posté le 16-11-2010 à 14:12:48  profilanswer
 

Bonjour,

 

je n'arrive pas à intégrer le code IF tel que : si la vidéo est présente, on l'affiche, sinon on affiche une image à la place.
Tout en gardant le script fancybox dejà en place et en utilisant le chemin des images que l'on affiche avec le fancybox
J'ai essayé mais ça ne marche pas , je n'ai pas le bon raisonnement.
Merci

 
Code :
  1. [code=css]
  2. include("header.inc.php" );
  3. $id_resto=$_GET["id"];
  4. $query_exists = mysql_query("SELECT COUNT(id) FROM resto WHERE id='$id_resto'" );
  5. $result_exists = mysql_fetch_row($query_exists);
  6. if ($result_exists[0]==0)
  7. {
  8. header("HTTP/1.1 301 Moved Permanently" );
  9. header("Location: index.php" );
  10. die("Redirection" );
  11. }
  12. else
  13. {
  14.  // champs à sélectionner / à afficher
  15. $tab_champs = array("id","title","city","note","description","address","phone","website","cap","menu_entree","menu_plat","menu_dessert","youtube_link","resa","horferm","pain","prix","serviette","latable","sympaekip","aime","aimemoins","ofinal" );
  16. $chr_champs='';
  17. foreach($tab_champs as $val) $chr_champs.=$val.', ';
  18. $chr_champs=substr($chr_champs,0,-2);
  19. $q = mysql_query("SELECT $chr_champs FROM resto WHERE id='$id_resto'" );
  20. $r = mysql_fetch_assoc($q);
  21. $quser = mysql_query("SELECT id_user FROM users_restos WHERE id_resto='$r[id]'" ) or die(mysql_error());
  22. $ruser = mysql_fetch_assoc($quser);
  23. }
  24. // mise a jour des affichages du resto
  25. mysql_query("UPDATE resto SET hits=hits+1 WHERE id='$id_resto'" );
  26. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  27. {
  28. $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  29. $rf = mysql_fetch_assoc($qf);
  30. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  31. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  32. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  33. $_SESSION["fiche_"."$id_resto"]="visited";
  34. }
  35. ?>
  36. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  37. <html xmlns="http://www.w3.org/1999/xhtml">
  38. <head>
  39. <link rel="stylesheet" type="text/css" href="style.css"/>
  40. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  41. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  42. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  43. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  44. </head>
  45. <body>
  46. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  47. <? include("headerhtml.inc.php" ); ?>
  48. <div id="cadre">
  49.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  50.      <tr>
  51.       <td style="vertical-align:top;">
  52.                 <div id="details2">
  53.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  54.     <?
  55.      if(trim($r["youtube_link"])!='')
  56.      {
  57.      ?>
  58.                         <div id="video">
  59.                         <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  60.                         </div>
  61.                         <?
  62.      }
  63.      ?>
  64.                 </div>
  65.                 </div>
  66.       </td>
  67.             <td style="width:300px; vertical-align:top;">
  68.    <?
  69.     if ($r["$tab_champs[13]"]=='y')
  70.     {
  71.     ?>
  72.                     <br><div id="reserver" ><a href="reservations-<?=format_url($r["$tab_champs[1]"].'-'.$r["$tab_champs[2]"]).'-'.$r["$tab_champs[0]"];?>.html"><img src="reserver.jpg" alt="" /></a></div>
  73.                     <?
  74.     }
  75.     ?>
  76.    <?
  77.                 $tab_photos=array();
  78.    for($i=1;$i<=8;$i++)
  79.                 {
  80.                     $path_img = 'photos/'.$r["id"].'_'.$i.'.jpg';
  81.                     $path_img2 = 'photos/'.$r["id"].'_'.$i.'_125.jpg';
  82.                     if(file_exists($path_img)) { $tab_photos[]=array($i,$id_resto,$path_img,$path_img2); }
  83.                 }
  84.                 if (@count($tab_photos)>0)
  85.                 {
  86.                 ?>
  87.                 <script type="text/javascript">
  88.    $(document).ready(function()
  89.    {
  90.     $("a.group" ).fancybox();
  91.    });
  92.    </script><br>
  93.                 <div id="photos">
  94.                     <?
  95.     $cpt=1;
  96.                     foreach($tab_photos as $val)
  97.                     {
  98.                     ?>
  99.                     <p style="float:left; width:130px; margin-bottom:10px; <? if ($cpt%2!=0) { echo 'margin-right:10px;'; } ?>"><a class="group" rel="group" title="Photo <?=$cpt;?>" href="<?=$val[2];?>"><img src="<?=$val[3];?>" alt="Photo <?=$cpt;?>" /></a></p>
  100.                     <?
  101.     $cpt++;
  102.                     }
  103.                     ?>
  104.                 </div><br>
  105.                 <?
  106.                 }
  107.    ?>
  108.    <br><br>
  109.                     </div>
  110.                 </div>
  111.       </td>
  112.      </tr>
  113.     </table>
  114. <div id="back"><a href="resultats.php?recherche=<?=urlencode($_SESSION["recherche"]);?><? if ($_SESSION["p"]>1) { echo '&p='.$_SESSION["p"]; } ?>">Retour à ma recherche</a></div>
  115. </div>
  116. <? include("footer.inc.php" ); ?>
  117. </body>
  118. </html>


Message édité par drasche le 16-11-2010 à 14:15:22

---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036300
erulio
Posté le 16-11-2010 à 14:14:13  profilanswer
 

drasche a écrit :

Jocebug, le code HTML montre que rien n'est envoyé au browser :o


[:kiki] Non, sans déconner ?

n°2036301
erulio
Posté le 16-11-2010 à 14:15:20  profilanswer
 

drasche a écrit :

Non, il y est.
 
edit: autant pour moi, il a foutu 2 balises code.
 
edit2: c'était bien ça :o


Il y a quelque chose dans le code inclus qui fait planter le parser, j'ai pas trouver quoi :o

n°2036302
drasche
Posté le 16-11-2010 à 14:17:02  profilanswer
 

erulio a écrit :

Il y a quelque chose dans le code inclus qui fait planter le parser, j'ai pas trouver quoi :o


La double balise code y est pour quelque chose mais j'ai pas trouvé l'autre moitié du bug.


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036304
___alt
Posté le 16-11-2010 à 14:17:55  profilanswer
 

Code :
  1. [code]

[/code]


---------------
TRIPS RIGHT BUNCH F SHUTTLE TOM AND JERRY RIGHT YELLOW
n°2036307
Profil sup​primé
Posté le 16-11-2010 à 14:20:38  answer
 

___alt a écrit :

Code :
  1. [code]

[/code]


Code :
  1. [code]

[/code]

n°2036309
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:22:07  profilanswer
 

___alt a écrit :

[code][code][/code]

[/code]


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036310
sligor
Posté le 16-11-2010 à 14:22:15  profilanswer
 

putain mais jovalise merde arrête un peu [:prozac]


---------------
qwerty-fr
n°2036311
erulio
Posté le 16-11-2010 à 14:23:09  profilanswer
 

J'ai réduit un peu mais j'arrive pas à aller plus loin que ça :

mood
Publicité
Posté le 16-11-2010 à 14:23:09  profilanswer
 

n°2036312
erulio
Posté le 16-11-2010 à 14:23:14  profilanswer
 

Code :
  1. [code=css]
  2. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  3. { $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  4. $rf = mysql_fetch_assoc($qf);
  5. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  6. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  7. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  8. $_SESSION["fiche_"."$id_resto"]="visited";
  9. }
  10. ?>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <link rel="stylesheet" type="text/css" href="style.css"/>
  15. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  16. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  17. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  18. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  19. </head>
  20. <body>
  21. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  22. <? include("headerhtml.inc.php" ); ?>
  23. <div id="cadre">
  24.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  25.      <tr>
  26.       <td style="vertical-align:top;">
  27.                 <div id="details2">
  28.                    
  29.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  30.     <?
  31.      if(trim($r["youtube_link"])!='')
  32.      {
  33.      ?>
  34.                         <div id="video">                        <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  35.                         </div>
  36.                         <?

Message cité 4 fois
Message édité par erulio le 16-11-2010 à 14:24:15
n°2036315
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:26:35  profilanswer
 

erulio a écrit :

Code :
  1. [code=css]
  2. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  3. { $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  4. $rf = mysql_fetch_assoc($qf);
  5. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  6. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  7. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  8. $_SESSION["fiche_"."$id_resto"]="visited";
  9. }
  10. ?>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <link rel="stylesheet" type="text/css" href="style.css"/>
  15. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  16. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  17. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  18. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  19. </head>
  20. <body>
  21. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  22. <? include("headerhtml.inc.php" ); ?>
  23. <div id="cadre">
  24.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  25.      <tr>
  26.       <td style="vertical-align:top;">
  27.                 <div id="details2">
  28.                    
  29.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  30.     <?
  31.      if(trim($r["youtube_link"])!='')
  32.      {
  33.      ?>
  34.                         <div id="video">                        <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  35.                         </div>
  36.                         <?



+1


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036316
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:27:07  profilanswer
 

Excellent, si je quote et que je rajoute un truc en-dessous, ça affiche rien non plus :D


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036317
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:27:59  profilanswer
 

erulio a écrit :

Code :
  1. [code=css]
  2. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  3. { $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  4. $rf = mysql_fetch_assoc($qf);
  5. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  6. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  7. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  8. $_SESSION["fiche_"."$id_resto"]="visited";
  9. }
  10. ?>




---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036318
lorill
Posté le 16-11-2010 à 14:28:08  profilanswer
 

bon. J'ai besoin de modifier la fenêtre de login windows (xp + 7) par un truc maison. J'y connais rien en windows. Des pistes, ou des idées de formations ?

n°2036319
drasche
Posté le 16-11-2010 à 14:28:09  profilanswer
 


[:bien]


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036320
lorill
Posté le 16-11-2010 à 14:28:27  profilanswer
 

ah, mais je vois que j'arrive au mauvais moment...

n°2036321
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:28:46  profilanswer
 

erulio a écrit :

Code :
  1. [code=css]
  2. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  3. { $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  4. $rf = mysql_fetch_assoc($qf);
  5. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  6. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  7. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  8. $_SESSION["fiche_"."$id_resto"]="visited";
  9. }
  10. ?>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <link rel="stylesheet" type="text/css" href="style.css"/>
  15. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  16. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  17. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  18. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  19. </head>
  20. <body>
  21. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  22. <? include("headerhtml.inc.php" ); ?>
  23. <div id="cadre">
  24.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  25.      <tr>
  26.       <td style="vertical-align:top;">
  27.                 <div id="details2">
  28.                    
  29.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  30.     <?
  31.      if(trim($r["youtube_link"])!='')
  32.      {
  33.      ?>
  34.                         <div id="video">                        <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  35.                         </div>
  36.                         <?




Message édité par Taiche le 16-11-2010 à 14:31:17

---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036324
vapeur_coc​honne
Stig de Loisir
Posté le 16-11-2010 à 14:30:07  profilanswer
 

lorill a écrit :

bon. J'ai besoin de modifier la fenêtre de login windows (xp + 7) par un truc maison. J'y connais rien en windows. Des pistes, ou des idées de formations ?


google  [:cosmoschtroumpf]  
http://www.labo-microsoft.org/t/22947/


---------------
marilou repose sous la neige
n°2036325
lorill
Posté le 16-11-2010 à 14:30:50  profilanswer
 

un truc maison on a dit, pas mettre un fond d'écran...

n°2036327
___alt
Posté le 16-11-2010 à 14:33:26  profilanswer
 

Code :
  1. [code]""""""""""""""""""""""""(((((((((((((((((((((((((())))))))))))))))))))))))))){{{{{{{{{{{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}""""""""""""""""""""""""""""""""""""""""""""""""""

[/code]


Message édité par ___alt le 16-11-2010 à 14:33:51

---------------
TRIPS RIGHT BUNCH F SHUTTLE TOM AND JERRY RIGHT YELLOW
n°2036332
kadreg
profil: Utilisateur
Posté le 16-11-2010 à 14:41:28  profilanswer
 

j'ai une gastro :/ j'en chie :/


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°2036334
nraynaud
lol
Posté le 16-11-2010 à 14:43:36  profilanswer
 

"when I was in my 20's"
je déteste ma vie [:sisicaivrai]


---------------
trainoo.com, c'est fini
n°2036335
verdoux
And I'm still waiting
Posté le 16-11-2010 à 14:45:48  profilanswer
 

lorill a écrit :

bon. J'ai besoin de modifier la fenêtre de login windows (xp + 7) par un truc maison. J'y connais rien en windows. Des pistes, ou des idées de formations ?


http://msdn.microsoft.com/en-us/magazine/cc163489.aspx
 
http://social.msdn.microsoft.com/F [...] 440e84fb98
 
Mais tu vas en chier (specs incomplètes ou inexactes) :o

n°2036336
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:46:40  profilanswer
 

verdoux a écrit :

Mais tu vas en chier


Comme kadreg [:petrus75]


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036337
lorill
Posté le 16-11-2010 à 14:48:22  profilanswer
 


merci. J'aurais sans doute du mal, mais moins qu'avec l'idée alternative :o
 
Tu as déjà fait ce genre de bricoles, ou tu avais juste la doc sous le coude ?

n°2036339
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 14:53:34  profilanswer
 

UP :fou:


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036340
R3g
fonctionnaire certifié ITIL
Posté le 16-11-2010 à 14:55:15  profilanswer
 

drasche a écrit :


Non, il y est.
 
edit: autant pour moi, il a foutu 2 balises code.
 
edit2: c'était bien ça :o


La balise code en plus joue un rôle, mais c'est pas tout : en fonction du contenu derrière ça s'affiche ou pas. Apparemment c'est au stade de la coloration syntaxique que ça merde.


---------------
Au royaume des sourds, les borgnes sont sourds.
n°2036342
___alt
Posté le 16-11-2010 à 14:59:30  profilanswer
 

nraynaud a écrit :

"when I was in my 20's"
je déteste ma vie [:sisicaivrai]


 
Tu détestes ta vie ?!


---------------
TRIPS RIGHT BUNCH F SHUTTLE TOM AND JERRY RIGHT YELLOW
n°2036343
R3g
fonctionnaire certifié ITIL
Posté le 16-11-2010 à 15:00:27  profilanswer
 

lorill a écrit :

bon. J'ai besoin de modifier la fenêtre de login windows (xp + 7) par un truc maison. J'y connais rien en windows. Des pistes, ou des idées de formations ?


Apparemment entre xp et 7 le truc a changé, donc tu es parti pour 2 développements différents ?


---------------
Au royaume des sourds, les borgnes sont sourds.
n°2036344
nraynaud
lol
Posté le 16-11-2010 à 15:01:58  profilanswer
 

___alt a écrit :


 
Tu détestes ta vie ?!


oui


---------------
trainoo.com, c'est fini
n°2036345
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 15:03:11  profilanswer
 


+1


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036346
___alt
Posté le 16-11-2010 à 15:04:48  profilanswer
 

Bah merde quoi, comment on peut détester sa vie en ayant tenté des choses, en ayant baroudé à droite à gauche, en ayant des amis partout ? [:pingouino]


---------------
TRIPS RIGHT BUNCH F SHUTTLE TOM AND JERRY RIGHT YELLOW
n°2036347
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 15:05:17  profilanswer
 

___alt a écrit :

Bah merde quoi, comment on peut détester sa vie en ayant tenté des choses, en ayant baroudé à droite à gauche, en ayant des amis partout ? [:pingouino]


+1


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036348
boulax
Inserer phrase hype en anglais
Posté le 16-11-2010 à 15:06:08  profilanswer
 

___alt a écrit :

[code][code]


KODEK  [:z-4195]

Message cité 3 fois
Message édité par boulax le 16-11-2010 à 15:18:29

---------------
Posté depuis des chiottes, sales. Me gusta.
n°2036349
lorill
Posté le 16-11-2010 à 15:06:32  profilanswer
 

R3g a écrit :


Apparemment entre xp et 7 le truc a changé, donc tu es parti pour 2 développements différents ?


si je n'arrive pas a faire sauter la contrainte xp, faudra bien.

n°2036351
lorill
Posté le 16-11-2010 à 15:07:22  profilanswer
 


c'est le rock n'roll des gallinacées  [:vinzoo]

n°2036352
Taiche
(╯°□°)╯︵ ┻━┻
Posté le 16-11-2010 à 15:07:37  profilanswer
 


http://hfr.toyonos.info/generateurs/fb/?t=Taiche


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
n°2036354
nraynaud
lol
Posté le 16-11-2010 à 15:10:55  profilanswer
 

___alt a écrit :

Bah merde quoi, comment on peut détester sa vie en ayant tenté des choses, en ayant baroudé à droite à gauche, en ayant des amis partout ? [:pingouino]


parce qu'à 31 je sais toujours pas faire du ski (c'était le contexte) et j'ai encore jamais rien fait que j'estime être un succès à mon actif.


---------------
trainoo.com, c'est fini
n°2036355
boulax
Inserer phrase hype en anglais
Posté le 16-11-2010 à 15:11:24  profilanswer
 


Tiens, les balises code du quoteMsg se sont partiellement transformées en balises cpp [:dawa]


---------------
Posté depuis des chiottes, sales. Me gusta.
n°2036356
lorill
Posté le 16-11-2010 à 15:13:26  profilanswer
 

nraynaud a écrit :


parce qu'à 31 je sais toujours pas faire du ski (c'était le contexte) et j'ai encore jamais rien fait que j'estime être un succès à mon actif.


comme quoi, tout est relatif.

mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  18192  18193  18194  ..  27003  27004  27005  27006  27007  27008

Aller à :
Ajouter une réponse
 

Sujets relatifs
Plus de sujets relatifs à : [blabla@olympe] Le topic du modo, dieu de la fibre et du monde


Copyright © 1997-2025 Groupe LDLC (Signaler un contenu illicite / Données personnelles)