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 Wanet Telecoms Ltd 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: melusi
  • Content: Threads
  • Order by date
  1. melusi

    Copying Files from one folder to another

    I want Code to: I'm using a Drivelist,DirListBox and a FileList Box.I want a user to select a couple of files from the Filelist and after Clicking a button the files are copied to a specified Folder in a second DirListBox.
  2. melusi

    Disabling proxy settings in Internet Explorer

    I want to disable proxy settings in InternetExplore through my VB.I automate my Intranet through this application but most of the browsers have Proxy settings set alread which I don't need for my Intranet Can anyone Help a brother
  3. melusi

    Automating Internet Explorer

    I'm trying to automate internet explore with the following code on a command button cmdIntranet.(I want it to directly open IE). Option Explicit Dim WithEvents ie As InternetExplorer Private Sub cmdExit_Click() End End Sub Private Sub cmdIntranet_Click() Set ie = New...
  4. melusi

    Read permission for an access table

    My ASP page that retrieves information from an access database suddenly gives this error Microsoft OLE DB Provider for ODBC Drivers (0x80040E09) [Microsoft][ODBC Microsoft Access Driver] Record(s) cannot be read; no read permission on 'Assocfemale'. /summary.asp, line 12 How do I ensure the...
  5. melusi

    How to check if field exists in database using ASP

    I have an access database.I want to add a info into a table only if it's not there. I have this sample code which it's not lilanga = Request.Form("Days") ummango = Request.Form("Comms") lusuku = Request.Form("Tikhatsi") set conn =...
  6. melusi

    I want to add records to a table an

    I want to add records to a table and make sure that I do not add it when it's there.I have three fields I campare with and I get the following error message Syntax error /scheduletake.asp, line 18, column 4 and I have this section from the beginning of the file where I think the error is...
  7. melusi

    putting a time field on my database

    Help please I'm trying to put in some time field on my database.I have users who log in tasks to an access database with asp page frontend.Now I want to capture the time the user does this inorder to know when he entered the task. Help
  8. melusi

    Too few parameters. Expected 1.

    The ASP file I have has the first 11 lines as follows: <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2 Final//EN&quot;> <%@ Language = VBscript %> <% set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Open &quot;KDDP&quot; SQL=&quot;SELECT Count(MemberName) AS...
  9. melusi

    Invalid character

    I keep on getting this error with my query on my ASP &quot;Microsoft VBScript compilation (0x800A0408) Invalid character&quot; The query is as follows SQL=&quot;SELECT Count(FarmAssocMembers.MemberName) AS CountOfMemberName,&quot; & _ &quot;FarmAssocMembers.AssocName,&quot; & _ &quot;FROM...

Part and Inventory Search

Back
Top