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

  1. yaakov

    uploading file

    Hello! We want to allow the visitor in our web site sending picture file. Where can i find the applet that offer this service. Thanks Yaakov
  2. yaakov

    Keeping a form focused

    Hi you can do it by defining the second form as vbmodal when you load it the code should be: form2.show vbmodal yaakov
  3. yaakov

    Query in ASP

    Murugesan hi you can limit the number of records by SQL Query for example SELECT TOP 50 COL1,COL2 FROM TABLE1 It will return only first 50 records that answer the query I hope it helps Yaakov
  4. yaakov

    VB Variable

    AliBaba hello! If i understand your question the ComboBox gives you the flexibility to add new items into it. All you have to do is ComboBox.AddItem "the item you want to add" You can sort the items by defining the ComboBox sort property to true. Yaakov
  5. yaakov

    HOW DO I PRINT CONSTRAINTS TO THE DEBUG WINDOW??

    TNN Hi! This is the code you should execute, but first change the strCnn to real connection string. Dim cnn2 As ADODB.Connection Dim rstSchema As ADODB.Recordset Dim strCnn As String Set cnn2 = New ADODB.Connection strCnn = "Provider=SQLOLEDB.1;Persist Security...
  6. yaakov

    Not enough parameter

    Hi The sentence: prodRS.ActiveConnection = Con, isn't enough since the ActiveConnection Con isn't open. If you don't want to create connection object, choose one of the options below: 1. Define connection like DSN and use this code prodRS.open sqlString, "DSN=DSN_Name" 2. Use...
  7. yaakov

    DSN less connection string to SQL Server

    Hello! how do you find out what your server name/ path is? we used the following string but it does not work: "driver={SQL Server};Server=(local); uid=sa; pwd=;"_ &"database=orders" what did we do wrong?? thanks, Yaakov from Israel
  8. yaakov

    Inserting records into tables using Unicode

    Hello! I insert into table some records. I wrote it in Hebrew. When i retrieve it i got question marks. I understand that i have to use unicode but how? The INSERT code was INSERT INTO table_name (field1,field2) VALUES ('value1 in Hebrew','value2 in Hebrew') The result to the query...
  9. yaakov

    How can color components be returned

    Help please!!!I need to know how can i get the rgb components from backcolor or forecolor or other given color?Thanks

Part and Inventory Search

Back
Top