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
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
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 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
[SHAREPOINT] LES SESSIONS TECHDAYS 2012.[SHAREPOINT] LES SESSIONS TECHDAYS 2012. par Patrick Guimonet
Voici donc pour ceux qui n'ont pas pu venir, ou ceux qui n'ont pas pu toutes les suivre la liste des sessions SharePoint aux TechDays 2012, que je mettrais à jour dès que les liens des vidéo seront disponibles. Ou ici : http...
Cliquez pour lire la suite de l'article par Patrick Guimonet TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3 par ROMELARD Fabrice
Speaker: Bernard Ourghanlian Cette session est comme chaque jour transmise en live par BrainSonic, et j'ai donc suivi cette troisième pleinière par ce moyen sur mon iPad . Elle est dédiée comme chaque année à la mise en perspective de l'é...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice MISHRA READER : UN LECTEUR RSS TRèS ZUNE STYLE EN OPEN SOURCE !MISHRA READER : UN LECTEUR RSS TRèS ZUNE STYLE EN OPEN SOURCE ! par Vko
Hier durant une session dédiée aux Techdays 2012, j'ai eu le plaisir d'annoncer la sortie de la Béta 2 de Mishra Reader. C'est quoi ? Pour les utilisateurs, c'est une vraie expérience de lecture de flux RSS sur Windows. Rien à voir avec les produit...
Cliquez pour lire la suite de l'article par Vko [FRAMEWORK 4] LES TASKS ET LE THREAD UI[FRAMEWORK 4] LES TASKS ET LE THREAD UI par fathi
Je viens de passer quelques temps au TechDay's et j'ai pu voir pas mal de session intéressante. Par contre une chose m'a un peu étonné lors de certaines de ces sessions qui abordaient les améliorations du framework .NET (donc le 4.5) : en gros, bea...
Cliquez pour lire la suite de l'article par fathi WORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBEWORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBE par JeremyJeanson
Depuis déjà un an, je conseille vivement les utilisateurs de Workflow Foundation 3 à migrer vers la version 4. L'information qui va suivre ne devrait donc pas trop prendre au dépourvu les personnes qui m'ont suivi. Je profite de ce poste, pour faire le re...
Cliquez pour lire la suite de l'article par JeremyJeanson
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|