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 strongm 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: adalger
  • Content: Threads
  • Order by date
  1. adalger

    Use VBA to discover field names in SWF

    Hi, people. I asked this in the Flash forum, but there doesn't seem to be a lot of activity there. If any of you are well-versed in interactions between Flash and VBA, could you please look at my post over there? http://www.tek-tips.com/viewthread.cfm?qid=1622825&page=1 Thanks for any insight...
  2. adalger

    Use VBA to discover field names in SWF

    Hello, a colleague has asked whether it is possible to use VBA to walk a Flash (.SWF) object to find out what objects and methods it exposes. In particular, he's looking to find the names of text fields he can set or retrieve while the app is running. Is there any way to do this without...
  3. adalger

    dao recordset update: move to record just added

    Hi, can I get some opinions, please, on what's the best way to make the record just added with .AddNew and .Update the current record? E.g.: dim rst as DOA.Recordset set rst=CurrentDB.OpenRecordset("tblExample") rst.AddNew rst.Fields("SomeRandomData") = "Trivial Fact" rst.Update ...
  4. adalger

    Host Explorer 10: use VBA to control already open session

    Hi, everybody. I'm working on a batch processor using Host Explorer 10.0, but would like to process batches of instructions using a session that's already open rather than starting a new session to process the batch. Unfortunately, I can't seem to find a way to get a HostExHost object from a...
  5. adalger

    Moved secured .mdb and lost permissions

    A colleague was working on a database, developed with user-level security. When he was satisfied with its operation, he moved the secured .mdb file and its accomplanying .mdw file to a network drive to deploy. He then created a shortcut which appears to properly reference the moved .mdb and .mdw...
  6. adalger

    XCLOCK = xNO_STATUS before all data displayed

    Hi, all. I have an issue. I'm doing this: Dim esys As ExtraSystem Set esys = CreateObject("Extra.System") Dim essn As ExtraSession Set essn = esys.Sessions.Open("Session1.EDP") essn.Visible = True Dim escr As ExtraScreen Set escr = essn.Screen escr.Synchronous = 1 Dim eoia As ExtraOIA Set...
  7. adalger

    Setting value of a named cell in a worksheet

    Hi, all. I have an issue. I have a worksheet in excel. I've defined names for certain cells. These names follow a defined format to make the programming easy and clear (to me, at least). Too bad it doesn't work. Here's what I have: Dim str As String Dim rst As Recordset Dim fld As...

Part and Inventory Search

Back
Top