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 SkipVought 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. swaykid

    Convert Access 97 to Access2000 using VB

    I found this: Dim oJro As JRO.JetEngine Dim cnn1 As String, cnn2 As String ' Creamos un nuevo objeto JetEngine Set oJro = New JRO.JetEngine ' Cadena de conexión de origen cnn1 = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data source=c:\Mis documentos\base97.mdb;" & _ "Jet...
  2. swaykid

    Convert Access 97 to Access2000 using VB

    Does anyone know of a way to convert access97 mdb files to Access2000 WITHOUT using access, for example using MDAC in VB6. The problem is I need to do a bulk conversion of the MDB files we used for an old VB/Access project to Access2000 format and the client does not have Access 2000 installed...
  3. swaykid

    Logon Failure when using UNC path - Crystal 9 - HELP!!

    I figured it out today. Basically it was not assigning the path correctly to the db location so I did this little bit of code to set the db locations within the report at runtime. 'COGER RUTADB DEL REPORT Y SACAR LA BASE DE DATOS DEL REPORT. ADAM18/12/2006 TO CORRECT CRYSTAL 9 DBPATH BUG...
  4. swaykid

    Logon Failure when using UNC path - Crystal 9 - HELP!!

    We have just upgraded our VB6 app from crystal 8.5 to 9. All we have done is replace the viewer component and references. All works perfectly when accessing a the local Access2000 database. All works perfectly when accessing the database when on a mapped drive. The problem occurs when...
  5. swaykid

    Launch IE window setting attributes

    better method is this process.start("iexplore","-k [file or webpage]") Adam
  6. swaykid

    Launch IE window setting attributes

    right. got it. Cheers Rick for the inspiration. use a shell command to open "iexplore.exe [web address/page] -k" The -k switch opens internet explorer in "kiosk" mode. Full screen no borders nothing. The only way to close the window is Alt-F4 or with a button the webpage in question. I know...
  7. swaykid

    Launch IE window setting attributes

    Me too. I need a full screen IE windows to open directly from my windows form button. Would it possible to write a class in jscript.net and then use that class in your vb project? I will keep searching......
  8. swaykid

    flash with XML database

    Thanks for that. But my flash movie still does not show the values from the XML file. The source code for the page shows that the HTML is correct. Is there any thing that I have to do in more in the flash movie? If it works by manually typing in the variable to the actionscript why is it not...
  9. swaykid

    flash with XML database

    Cheers for replying. What I have trid to do is this: <PARAM NAME="flashvars" VALUE="xmlurl=lecturas4611.xml"> plus flashvars="xmlurl=lecturas4611.xml" in the embed tag of my asp page. in flash: var xc_url:String xc_url = _root.xmlurl this.xc_xml.URL = xc_url this.xc_xml.trigger(); if I...
  10. swaykid

    flash with XML database

    Lots of usefule stuff on here, but I was wondering if it´s possible to set the url property for the XMLconnector dynamically from a asp page variable? I can seem to figure out how to do it? Anybody have any pointers? TIA.
  11. swaykid

    Error Type: (0x80020009) Exception occurred.

    I have had the same error. It was because I was trying to do recordset actions on an empty recordset. By putting an --if rs1.recordcount >0 then -- after you open the recordset and the end if before your clean up code you can process the page error free.
  12. swaykid

    Need to define the start of year as November

    Does anyone know a function that can do this?. Accountants insist on defining the start of the year at random points, and for my report need to analyse sales figure from start of november to end of october Any takers?

Part and Inventory Search

Back
Top