Accueil > Forum > > > > Moteur de recherche interne
Moteur de recherche interne
mercredi 4 janvier 2006 à 16:51:49 |
Moteur de recherche interne

LABAUDE
|
Bonjour, je n'en pleux plus
Je souhaite mettre en ligne un moteur de recherche mais lorsque je tape test, il me ressort
attestant test testeur
Je souhaiterai uniquement qu'il me ressorte test. Voici les lignes de code. Merci et en esperant que quelqu'un pourra m'aider... :
|
|
mercredi 4 janvier 2006 à 16:55:03 |
Voici le code HTML de la page

LABAUDE
|
<%
QueryString = Request.QueryString( "recherche" )
QueryWords = Split( QueryString )
strIndent = " "
' Setup SQL
sql = "SELECT dictionary_concepts.id_indices, dictionary_concepts.label_fr AS dictionary_concepts_label_fr, dictionary_keywords.label_fr AS dictionary_keywords_label_fr, dictionary_keywords.definition_fr, dictionary_keywords.id_concepts, dictionary_keywords.id AS dictionary_keywords_id FROM dictionary_concepts INNER JOIN dictionary_keywords ON dictionary_concepts.id = dictionary_keywords.id_concepts WHERE"
' Search Description
sql = sql & " ( [dictionary_concepts.label_fr] LIKE '%" & QueryWords( 0 ) & "%'" ' First
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Keywords
sql = sql & " ) OR ( [dictionary_keywords.label_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Title
sql = sql & " ) OR ( [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
sql = sql & " ) ORDER BY dictionary_concepts.id_indices, dictionary_keywords.label_fr"
' Fetch
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 3, 3
%>
|
|
|
|
|
|
|
Votre recherche :
<% Response.Write QueryString %>
<%
Dim MyString, MyArray, strWordy, t , SCheck
strwordy = request.QueryString("recherche")
MyString = Split(strWordy, " ", -1, 1)
Scheck = request.QueryString("Spellcheck")
if SCheck = "True" then response.write("Ou essayez cette orthographe : ")
if SCheck = "" OR "false" then response.write("Recherchez vous ? ")
Dim MyCorrect(20)
t = 0
LoadDictArray
do while t <= UBound(MyString)
If len(MyString(t)) >= 15 then
response.write("Pas de suggestion")
exit do
END IF
Dim strSoundex
Dim i
Dim strSuggestions
Dim intMaxSuggestions
Dim intSuggestionCount
Dim strSuggestion
Dim strSuggestionArray
Dim dblSimilarityArray
Dim dblSimilarity
Dim mySuggest
Dim strword
Dim strFilterWord
strWord = MyString(t)
'-------Word Filter Remove words which gives unnecessery result like to, of, the, etc.-------------------------
if LCase(strWord) = "to" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "of" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "on" then
strFilterWord = LCase(strWord)
strword = ""
end if
'You can add more words or remove filter just remove dash line code to add , add else statement with word or you can use OR Statement.
'----------------------------END Word filter-------------------------------------------------------------------
intMaxSuggestions = 1
strSoundex = Soundex(strWord)
i = 0
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) <> LCase(Left(strWord, 1)) then
i = i + 1
else
exit do
end if
loop
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) = LCase(Left(strWord, 1)) then
if Soundex(strDictArray(i)) = strSoundex then
if strSuggestions & "" = "" then
strSuggestions = strDictArray(i)
else
strSuggestions = strSuggestions & "|" & strDictArray(i)
end if
end if
i = i + 1
else
exit do
end if
loop
mySuggest = Split(strSuggestions, "|")
if UBound(mySuggest) < intMaxSuggestions then
intSuggestionCount = UBound(mySuggest)
else
intSuggestionCount = intMaxSuggestions - 1
end if
ReDim strSuggestionArray(intSuggestionCount)
ReDim dblSimilarityArray(intSuggestionCount)
for each strSuggestion in mySuggest
dblSimilarity = WordSimilarity(strWord, strSuggestion)
i = intSuggestionCount
do while dblSimilarity > dblSimilarityArray(i)
if i < intSuggestionCount then
strSuggestionArray(i + 1) = strSuggestionArray(i)
dblSimilarityArray(i + 1) = dblSimilarityArray(i)
end if
strSuggestionArray(i) = strSuggestion
dblSimilarityArray(i) = dblSimilarity
i = i - 1
if i = -1 then
exit do
end if
loop
next
mySuggest = strSuggestionArray
if t > UBound(MyString) then
exit do
end if
t = t + 1
'Error handler
On Error Resume Next
'Set the error object to 0
Err.Number = 0
MyCorrect(t) = mySuggest(0)
'If an error has occured then the server does not support Regular Expresions
If Err.Number <> 0 Then
Response.Write("Pas de suggestion")
'Reset error object
Err.Number = 0
Exit do
End If
loop
Dim MySys
MySys = Trim(Join(MyCorrect))
Response.write("" & MySys & "")
if len(strFilterWord)>0 then
Response.write("" & strFilterWord & " N'est pas dans votre recherche")
end if
%>
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
<%
rs.close : Set rs=nothing
conn.close : Set conn=nothing
%>
|
|
mercredi 4 janvier 2006 à 16:55:10 |
Voici le code HTML de la page

LABAUDE
|
<%
QueryString = Request.QueryString( "recherche" )
QueryWords = Split( QueryString )
strIndent = " "
' Setup SQL
sql = "SELECT dictionary_concepts.id_indices, dictionary_concepts.label_fr AS dictionary_concepts_label_fr, dictionary_keywords.label_fr AS dictionary_keywords_label_fr, dictionary_keywords.definition_fr, dictionary_keywords.id_concepts, dictionary_keywords.id AS dictionary_keywords_id FROM dictionary_concepts INNER JOIN dictionary_keywords ON dictionary_concepts.id = dictionary_keywords.id_concepts WHERE"
' Search Description
sql = sql & " ( [dictionary_concepts.label_fr] LIKE '%" & QueryWords( 0 ) & "%'" ' First
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Keywords
sql = sql & " ) OR ( [dictionary_keywords.label_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Title
sql = sql & " ) OR ( [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
sql = sql & " ) ORDER BY dictionary_concepts.id_indices, dictionary_keywords.label_fr"
' Fetch
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 3, 3
%>
|
|
|
|
|
|
|
Votre recherche :
<% Response.Write QueryString %>
<%
Dim MyString, MyArray, strWordy, t , SCheck
strwordy = request.QueryString("recherche")
MyString = Split(strWordy, " ", -1, 1)
Scheck = request.QueryString("Spellcheck")
if SCheck = "True" then response.write("Ou essayez cette orthographe : ")
if SCheck = "" OR "false" then response.write("Recherchez vous ? ")
Dim MyCorrect(20)
t = 0
LoadDictArray
do while t <= UBound(MyString)
If len(MyString(t)) >= 15 then
response.write("Pas de suggestion")
exit do
END IF
Dim strSoundex
Dim i
Dim strSuggestions
Dim intMaxSuggestions
Dim intSuggestionCount
Dim strSuggestion
Dim strSuggestionArray
Dim dblSimilarityArray
Dim dblSimilarity
Dim mySuggest
Dim strword
Dim strFilterWord
strWord = MyString(t)
'-------Word Filter Remove words which gives unnecessery result like to, of, the, etc.-------------------------
if LCase(strWord) = "to" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "of" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "on" then
strFilterWord = LCase(strWord)
strword = ""
end if
'You can add more words or remove filter just remove dash line code to add , add else statement with word or you can use OR Statement.
'----------------------------END Word filter-------------------------------------------------------------------
intMaxSuggestions = 1
strSoundex = Soundex(strWord)
i = 0
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) <> LCase(Left(strWord, 1)) then
i = i + 1
else
exit do
end if
loop
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) = LCase(Left(strWord, 1)) then
if Soundex(strDictArray(i)) = strSoundex then
if strSuggestions & "" = "" then
strSuggestions = strDictArray(i)
else
strSuggestions = strSuggestions & "|" & strDictArray(i)
end if
end if
i = i + 1
else
exit do
end if
loop
mySuggest = Split(strSuggestions, "|")
if UBound(mySuggest) < intMaxSuggestions then
intSuggestionCount = UBound(mySuggest)
else
intSuggestionCount = intMaxSuggestions - 1
end if
ReDim strSuggestionArray(intSuggestionCount)
ReDim dblSimilarityArray(intSuggestionCount)
for each strSuggestion in mySuggest
dblSimilarity = WordSimilarity(strWord, strSuggestion)
i = intSuggestionCount
do while dblSimilarity > dblSimilarityArray(i)
if i < intSuggestionCount then
strSuggestionArray(i + 1) = strSuggestionArray(i)
dblSimilarityArray(i + 1) = dblSimilarityArray(i)
end if
strSuggestionArray(i) = strSuggestion
dblSimilarityArray(i) = dblSimilarity
i = i - 1
if i = -1 then
exit do
end if
loop
next
mySuggest = strSuggestionArray
if t > UBound(MyString) then
exit do
end if
t = t + 1
'Error handler
On Error Resume Next
'Set the error object to 0
Err.Number = 0
MyCorrect(t) = mySuggest(0)
'If an error has occured then the server does not support Regular Expresions
If Err.Number <> 0 Then
Response.Write("Pas de suggestion")
'Reset error object
Err.Number = 0
Exit do
End If
loop
Dim MySys
MySys = Trim(Join(MyCorrect))
Response.write("" & MySys & "")
if len(strFilterWord)>0 then
Response.write("" & strFilterWord & " N'est pas dans votre recherche")
end if
%>
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
<%
rs.close : Set rs=nothing
conn.close : Set conn=nothing
%>
|
|
mercredi 4 janvier 2006 à 16:55:12 |
Voici le code HTML de la page

LABAUDE
|
<%
QueryString = Request.QueryString( "recherche" )
QueryWords = Split( QueryString )
strIndent = " "
' Setup SQL
sql = "SELECT dictionary_concepts.id_indices, dictionary_concepts.label_fr AS dictionary_concepts_label_fr, dictionary_keywords.label_fr AS dictionary_keywords_label_fr, dictionary_keywords.definition_fr, dictionary_keywords.id_concepts, dictionary_keywords.id AS dictionary_keywords_id FROM dictionary_concepts INNER JOIN dictionary_keywords ON dictionary_concepts.id = dictionary_keywords.id_concepts WHERE"
' Search Description
sql = sql & " ( [dictionary_concepts.label_fr] LIKE '%" & QueryWords( 0 ) & "%'" ' First
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Keywords
sql = sql & " ) OR ( [dictionary_keywords.label_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.label_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
' Search Title
sql = sql & " ) OR ( [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( 0 ) & "%'"
For i = LBound( QueryWords ) + 1 to UBound( QueryWords )
If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then
If uCase( QueryWords( i-1 ) ) = "OR" Then
sql = sql & " OR [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
Else
sql = sql & " AND [dictionary_keywords.definition_fr] LIKE '%" & QueryWords( i ) & "%'"
End If
End If
Next
sql = sql & " ) ORDER BY dictionary_concepts.id_indices, dictionary_keywords.label_fr"
' Fetch
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 3, 3
%>
|
|
|
|
|
|
|
Votre recherche :
<% Response.Write QueryString %>
<%
Dim MyString, MyArray, strWordy, t , SCheck
strwordy = request.QueryString("recherche")
MyString = Split(strWordy, " ", -1, 1)
Scheck = request.QueryString("Spellcheck")
if SCheck = "True" then response.write("Ou essayez cette orthographe : ")
if SCheck = "" OR "false" then response.write("Recherchez vous ? ")
Dim MyCorrect(20)
t = 0
LoadDictArray
do while t <= UBound(MyString)
If len(MyString(t)) >= 15 then
response.write("Pas de suggestion")
exit do
END IF
Dim strSoundex
Dim i
Dim strSuggestions
Dim intMaxSuggestions
Dim intSuggestionCount
Dim strSuggestion
Dim strSuggestionArray
Dim dblSimilarityArray
Dim dblSimilarity
Dim mySuggest
Dim strword
Dim strFilterWord
strWord = MyString(t)
'-------Word Filter Remove words which gives unnecessery result like to, of, the, etc.-------------------------
if LCase(strWord) = "to" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "of" then
strFilterWord = LCase(strWord)
strword = ""
end if
if LCase(strWord) = "on" then
strFilterWord = LCase(strWord)
strword = ""
end if
'You can add more words or remove filter just remove dash line code to add , add else statement with word or you can use OR Statement.
'----------------------------END Word filter-------------------------------------------------------------------
intMaxSuggestions = 1
strSoundex = Soundex(strWord)
i = 0
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) <> LCase(Left(strWord, 1)) then
i = i + 1
else
exit do
end if
loop
do while i <= UBound(strDictArray)
if LCase(Left(strDictArray(i), 1)) = LCase(Left(strWord, 1)) then
if Soundex(strDictArray(i)) = strSoundex then
if strSuggestions & "" = "" then
strSuggestions = strDictArray(i)
else
strSuggestions = strSuggestions & "|" & strDictArray(i)
end if
end if
i = i + 1
else
exit do
end if
loop
mySuggest = Split(strSuggestions, "|")
if UBound(mySuggest) < intMaxSuggestions then
intSuggestionCount = UBound(mySuggest)
else
intSuggestionCount = intMaxSuggestions - 1
end if
ReDim strSuggestionArray(intSuggestionCount)
ReDim dblSimilarityArray(intSuggestionCount)
for each strSuggestion in mySuggest
dblSimilarity = WordSimilarity(strWord, strSuggestion)
i = intSuggestionCount
do while dblSimilarity > dblSimilarityArray(i)
if i < intSuggestionCount then
strSuggestionArray(i + 1) = strSuggestionArray(i)
dblSimilarityArray(i + 1) = dblSimilarityArray(i)
end if
strSuggestionArray(i) = strSuggestion
dblSimilarityArray(i) = dblSimilarity
i = i - 1
if i = -1 then
exit do
end if
loop
next
mySuggest = strSuggestionArray
if t > UBound(MyString) then
exit do
end if
t = t + 1
'Error handler
On Error Resume Next
'Set the error object to 0
Err.Number = 0
MyCorrect(t) = mySuggest(0)
'If an error has occured then the server does not support Regular Expresions
If Err.Number <> 0 Then
Response.Write("Pas de suggestion")
'Reset error object
Err.Number = 0
Exit do
End If
loop
Dim MySys
MySys = Trim(Join(MyCorrect))
Response.write("" & MySys & "")
if len(strFilterWord)>0 then
Response.write("" & strFilterWord & " N'est pas dans votre recherche")
end if
%>
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
<%
rs.close : Set rs=nothing
conn.close : Set conn=nothing
%>
|
|
mercredi 4 janvier 2006 à 21:25:20 |
Re : Moteur de recherche interne

azra
|
Je ne sais pas si c'est exactement la, la flemme de tout lire mais: "If QueryWords( i ) <> "" and UCase( QueryWords(i) ) <> "OR" and UCase( QueryWords(i) ) <> "AND" Then If uCase( QueryWords( i-1 ) ) = "OR" Then sql = sql & " OR [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'" Else sql = sql & " AND [dictionary_concepts.label_fr] LIKE '%" & QueryWords( i ) & "%'" End If " Enleve les '%' au début et a la fin de tes LIKE, car ils signifient que tu veux quelque chose qui contient LIKE et qui peut contenir autre chose avant et apres.
Azra ( Florent) - MVS - MCAD.NET
|
|
Cette discussion est classée dans : recherche, test, interne, moteur
Répondre à ce message
Sujets en rapport avec ce message
Moteur de recherche interne au site [ par Nightwolf774 ]
Bonjour,Je cherche un code sources pour faire une recherche automatique dasn mes bases de donnée par rapport à un mot ou une référence.Je suis débutan
moteur de recherche interne d'un site [ par wally88 ]
Bonjour, J'aimerais faire un moteur de recherche sur mot clé.Par exemple dans les site de petites annonces on saisie "je veux une voiture rouge" , il
PB de moteur de recherche [ par hichamdeb ]
Bonjour,Voila un moteur de recherche que j'ai trouver sur ce forum et qui fonctionne parfaitement, vous le mettez dans n'importe quel projet et il fai
un moteur de recherche en asp.net [ par nassirsource ]
salut, vous pouvez m'aider, je suis en train de réaliser une application web avec asp.net et je ne sais pas comment faire un moteur de recherche pour
Moteur de recherche [ par abdoulayediouf ]
Bonjour, J'aimerai savoir s'il est possible de créer un moteur de recherche sans que vous ayez la connexion internet. Merci
moteur de recherche aspx sur une base access [ par lotfi_dgi ]
slt a tous je suis sur un PFE je suis entrain d'pprendre ASP.net sur le tas, donc je suis arrivé au point ou g une table affiché sur 70 pages et c pas
moteur de recherche [ par lhoazour ]
Salut tout le monde,Je développe un site avec ASP et Access que je teste sur un serveur IIS local.Je veux faire la recherche en plein texte dans un ré
ameliorer un moteur de recherche [ par berserk ]
Bonjour à tous!!!Rentrons de suite dans le vif du sujet.J'ai un moteur de recherche asp avec une base acces, jusque la tout tourne bien.Mais je voudra
moteur de recherche avec lien intranet [ par benares8 ]
Re bonjourJ'aimerais connaitre le moyen de faire des lien intranet avec un moteur de recherche.Je vais essayer de m'expliquer:J'ai un nombre n de page
Livres en rapport
|
Derniers Blogs
[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA par cyril
Le deuxième keynote du mix fut très riche en contenu. Internet Explorer 9 Juste un après le lancement de Internet Explorer 8, Microsoft a dévoilé les nouveautés de Internet Explorer 9. Désormais, IE supportera HTML5, SVG et CSS3. L'élément ...
Cliquez pour lire la suite de l'article par cyril CERTIFICATIONS BETA .NET 4CERTIFICATIONS BETA .NET 4 par KooKiz
Les inscriptions pour les certifications beta .NET 4 ont commencé. L'inscription est offerte pour les examens suivants : - 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 71-515, TS: Web Applications Development with...
Cliquez pour lire la suite de l'article par KooKiz [MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2[MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2 par redo
J'imagine que la plupart d'entre vous connaissent bien et utilisent le service de traduction de Google, mais connaissez-vous celui de Microsoft . Microsoft Translator ? Effectivement, Microsoft nous annoncé le lancement version 2 de la Technologie Preview...
Cliquez pour lire la suite de l'article par redo LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010!LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010! par MPOWARE
Toutes les vidéos de ce lancement sont en ligne!
Partie I - Intro
http://www.youtube.com/watch?v=LkQzTQ8T6CA
Partie II - Démo 1
http://www.youtube.com/watch?v=drAhYQ7lqvo
Partie III - Démo 2
http://www.youtube.com/watch?v=c8KM_1Gqybc...
Cliquez pour lire la suite de l'article par MPOWARE
Logiciels
Academy System (10.9.4.0)ACADEMY SYSTEM (10.9.4.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods
Comparez les prix

HTC Magic
Entre 429€ et 429€
|