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 Mike Lewis 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: curiousvbnet
  • Order by date
  1. curiousvbnet

    query with parameters

    Hi and thanks a lot. Here is the new request but i receive the error message the variable @critere1 has to be declared what i don't understand. strSQL_recherche = "select DISTINCT Lib_TERME as 'TERMES COMMENCANT PAR @txtcritere' from TERMES where Lib_TERME like @critere1 order by Lib_TERME"...
  2. curiousvbnet

    query with parameters

    Hi, I try to create parametered queries but i see error messages when i run them. Here are these queries Dim strSQL_recherche As String, obj_recherche As SqlCommand strSQL_recherche = "select DISTINCT Lib_TERME as 'TERMES COMMENCANT PAR """ & txt_critere.Text.Trim.ToUpper & """ ' from...
  3. curiousvbnet

    how to locate the user name of an application

    Hi, i have created an application and i want to know which user has used the application. Do i have to create a new field in each table of the db to insert inside the user name( the one who has inserted a data in the concerned table )or is there another way to locate the user who has used the...
  4. curiousvbnet

    application property

    Hi, I have succed to find some of the properties of the application i have created and to insert them on a textbox. But i did't find way to recover this property : application's creator name i work on vb.net 2003 and My.Application.Info.CompanyName is not available so i have tried Dim...
  5. curiousvbnet

    how to recover the database version

    Hi,, How can i recover the sqlserver database version i work with , in a winfom project. Is there a class like DateTimeFormatInfo which can give me this information. Thanks for your help. Regards. Nathalie
  6. curiousvbnet

    code not executed

    Hi, Thanks a lot , it works better but it does not give any result; in fact the program stops just after the drag_over event but i will see with the debbuger where there is a pb . Moreover , does this event(dragdrop), takes in consideration that in the database, now there will be a new...
  7. curiousvbnet

    code not executed

    Hi, I try to make an event dragdrop work in a treeview called Treeview1, but i can see that when i select an item in the treeview, to copy it at another place ,the code below is not executed at all. Only the Treeview1_ItemDrag is considered. Could you explain me what happens? Thanks a lot...
  8. curiousvbnet

    how to recover the path of a .doc or .txt opened file

    Hi, I would like to permit a user to insert into a database fields the lines he has selected in a .doc or a .txt file which will be new datas in the database It is possible the user has already opened a .doc or a txt file and selected lines , how can i test this, because at the first i...
  9. curiousvbnet

    how to recover application properties

    Hi, I have succeeded to find some of the properties of the application i have created and to insert them on a textbox. But these properties i did't find way to recover them -application's creator name -database name and version -format of the system date Could you help me on this point...
  10. curiousvbnet

    how to close directly a form

    Hi, I have created a form and i want to close it just after i click on the cross at the top right of the form but i have to click twice to close it well. Could you explain me why. Is there something to do at the properties level? Here is the associated code to this form. Public Class...
  11. curiousvbnet

    Login and password

    Hi and thanks a lot for your advice. So you mean it would be better to propose the user to relogin after he has changed his login and password ,and so, to get out of the application and to enter a new time. Do you think that if the user does not relogin just after he has changed its password...
  12. curiousvbnet

    how to acess to a public class

    thanks a lot , i know it very well,it is a very good reference but you are right ,i didn't yet have a look at this part of its programm. thanks for all. Nathalie
  13. curiousvbnet

    how to let a form opened

    Hi, here is the code of this form Imports System.Xml Imports Application_Windows_Thesaurus.TreeView_MT_GEN_SPE_ASSOCIES Public Class candidat_descripteur Inherits System.Windows.Forms.Form Private m_objConn As SqlConnection Private objDS6 As DataSet Private objDA6 As...
  14. curiousvbnet

    how to let a form opened

    Hi, In the form 'candidat_desxripteur' i permit a user to keybord a new term and to insert it in the 'descriptors terms' table. I can see that after the user has finished to enter the term text in the textbox called "txtbox_cd", the form closed automatically whereas i want to let it the...
  15. curiousvbnet

    Login and password

    Hi and thanks a lot for your help. So tou advice me not to allow to change the login but only the password, and if the users want it, it is better to propose them to change in the same tim login and password in a same form. I don't understand well what you mean by "it may be a good idea to...
  16. curiousvbnet

    Login and password

    I ma working on the login and password keyboarding and the verification of each one. Do you advice me to create a table with administrators profiles only and another one with users profiles only or is it also a good solution to create a unique table with both administrators and users profiles ...
  17. curiousvbnet

    how to acess to a public class

    Thanks a lot for your help. Is it the same for a sub? Thanks for your help. Nathalie
  18. curiousvbnet

    how to acess to a public class

    Hi, i have created in the same project two classes ;the first onis called TreeView_MT_GEN_SPE_ASSOCIEs and the second one is called candidat_descripteur. In the TreeView_MT_GEN_SPE_ASSOCIES class i have created a public function called sansaccent and i want to use it in the...
  19. curiousvbnet

    no visibility of a new node

    Hi, i have created a listview called listview1. When a user cliks on an item he can see in the treeview2 -the parent terms of the item( each item is a different term) -the name of the microthesaurus to which it belongs( microthesaurus is a semantic field ex : economy, history, geography etc...)...
  20. curiousvbnet

    how to copy a term(node) in a treeview

    Hi, I have created a treeview called TreeView1. this treeview contains terms. I would like to permit a user to copy one term at another place in the treeview. Until now i did not succed to. All the terms are in a table called TERMES All the relationships parent/child are in a table called...

Part and Inventory Search

Back
Top