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 John Tel 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: CharlesFS
  • Content: Threads
  • Order by date
  1. CharlesFS

    Recordset and ![Field]

    How make "strsql" string get value of field in the current recordset line. I tryed this: Dim Rst As DAO.Recordset Set Rst = CurrentDb.OpenRecordset("ConsultaIPE") Dim Link As Variant With Rst .MoveFirst While Not .EOF Dim strsql As String ... strsql = "INSERT INTO...
  2. CharlesFS

    How store "Date()" value

    Hi, i need of a method to store the Time() value (like recordset) and get this value in a posterior time without using extra files or table. Thanks
  3. CharlesFS

    XMLHTTP & ISO-8859-1

    How can i set the right encoding into my post request function? I tried : .setRequestHeader'encoding','ISO-8859-1' But dont work obs: the response xml have this header: <?xml version=""1.0"" encoding=""ISO-8859-1"" ?> The function Function HTTPSessionRequest(method, url, data) Dim poStvars...
  4. CharlesFS

    For each line+download+Wait Download

    Hi, i don`t know how but i need a way to make one code to: * For each line in table name "resposta" get column "link" value and execute this link(all the links contain files like 300kb~400kb) * How make vba wait the download complete to continue the routine? thanks a lot!
  5. CharlesFS

    Two Digits &quot;dd/mm/yyyy&quot; Format() not work

    Hi friends, i have this: Sub vai() Dim dinicial As Date, dfinal As Date, data As Date Dim hinicial, strhinicial dinicial = DateValue(Form_Atualiza.[date1]) dfinal = DateValue(Form_Atualiza.[date2]) hinicial = Form_Atualiza.[hora] strhinicial = Format(hinicial, "hh:mm") data = dinicial For...
  6. CharlesFS

    &quot;Insert into...Values&quot; with strings

    Hi!, i can not insert 3 strings values in 3 table fields! I think the fault is the string "strDOCfile = f.Name" because his value is a file name like "file.DOC" and i have operator error on debugger. Sub EBA() Dim fs, f, s Dim SourceDir As String 'The source directory Dim ArqExiste As Boolean...
  7. CharlesFS

    &quot;For each&quot; with fields

    Guys, i have two text field in access form.[date1] and [date2]. In field [date1] i put the initial date value and [date2] i put the end date value. like: [01/10/2009] [03/10/2009] Obs:format date(dd/mm/yyyy) I need a code to call one sub for each date between fields [date1] and [date2]...
  8. CharlesFS

    Refer Dll's

    Hi, i have in my access2007 project one vb module with reference to msxml4.dll(Microsoft xml, v4.0) and scrrun.dll(Microsoft Scripting Rintime). I need a way to make my project run in others pc's without these dll's pre installed. But a way without user interention. Sorry for my english...
  9. CharlesFS

    http Post request/response

    Guys, i need a way to make this request(html code(post method)) and get all links from the response page and insert the links in a ms access table. i use Ms access 2007 but i have a lot of results in google finding by "http post method vb" but i cant make the code work please guys help!! The...
  10. CharlesFS

    How Insert Access table data into mysql Table?

    Hy, i need a vba code to insert all data from access table into mysql table. I tryed "DoCmd.TransferDatabase acExport" but this send the table object to mysql. Help please.

Part and Inventory Search

Back
Top