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. ChrisNome

    Access Themes using VBA

    just to not be ambiguous, I mean the theme in the access ribbon. I want to have the user be able to set their own theme in runtime mode, but it appears that the ribbon is disabled in the runtime so was hoping that i could code the operation myself. Any ideas?
  2. ChrisNome

    Access Themes using VBA

    Anyone have any idea how to set access themes using VBA? Just switching to another default theme would be a start. I've found where they are located (ie. currentproject.resources) but can't seem to find how to switch a theme with code.
  3. ChrisNome

    Converting an access 2010 app from runtime back to design mode

    I found a solution for anyone in the future with the same problem. Just renaming the .accdr file in windows will yeild a .accdb.accdr file. Renaming from a command prompt allows you to change the extension. This is good if you want to be able to modify the database design, but if you don't...
  4. ChrisNome

    Converting an access 2010 app from runtime back to design mode

    Hi everyone I used the package solution wizard to convert an access 2010 .accdb file into an .accdr file. A lot of data was changed in the runtime app and now I want to modify the design of the database without losing that data, so I need to convert it back to an accdb file. Any clue on how...
  5. ChrisNome

    Big Thanks to this site

    Big ups to this site. It's by far the most useful resource I've found for professionals. Just sayin' thanks everyone CN
  6. ChrisNome

    Requerying a list box on an access form from another application

    Hey I tried that and it appeared to work at first try, but not afterwards. I also tried to do: list.rowsource = list.rowsource list.requery and forms.setfocus list.setfocus list.rowsource = "" list.requery list.rowsource = "qryDestination" list.requery I kept the "qryDestination" open in...
  7. ChrisNome

    Requerying a list box on an access form from another application

    Hi everyone I'm having a problem with automated a simple requery procedure on a list box on an access form. The problem lies in that I'm requerying this form from a VBA module in another application, not directly from the access application. The sub in that module performs an ADO recordset...
  8. ChrisNome

    how do you select an internet explorer tab using vba?

    where's the recorder for internet explorer?
  9. ChrisNome

    how do you select an internet explorer tab using vba?

    I've got a relatively simple question: how do you select an internet explorer tab using vba? for instance code: For Each appWindow in appShell.Windows If TypeName(appWindow.Document) = "HTMLDocument" Then Set appie = appWindow If appie.LocationURL =...
  10. ChrisNome

    alsec html property?

    sorry, there's an error above, the comma between links.innertext and links.alsec should be concatenate (&)
  11. ChrisNome

    alsec html property?

    it's just weird that for each link in htmldoc.links if link.alsec = "identifier" then msgbox link.innertext, link.alsec end if next produces the correct information while for each link in htmldoc.links if link.alsec = "identifier" then msgbox link.innertext end if next...
  12. ChrisNome

    weird alsec html property throwing me off

    i can garantee the text i want is there. If it's not, there are no 'alsec' values of the text i want. you'd think a simple if/then construct would work, but it doesn't. i don't know why it would dispay in a msgbox all the correct text if the '.alsec' property is displayed with it for each...
  13. ChrisNome

    weird alsec html property throwing me off

    the text I'm scraping is public domain and not copyrighted, so no worries
  14. ChrisNome

    alsec html property?

    hi everyone I posted a thread on a weird html property called alsec that doesn't seem to respond to VB if/then like it should. Didn't get any responses so thought I'd try posting it in a more specific forum to the issue: http://www.tek-tips.com/viewthread.cfm?qid=1657520&page=1 thx for your...
  15. ChrisNome

    weird alsec html property throwing me off

    .. to be complete.. the link object above is an HTMLAnchorElement in the MSHTML library and i got this to work completely fine using the .href property until the ws changed up the format
  16. ChrisNome

    weird alsec html property throwing me off

    for instance.. if i use: For Each link In HTMLDoc.links If link.alsec = "identifier" Then msgbox link.innertext End If Next it will msgbox a huge number of links without the alsec property listed at all. But if i use: For Each link In HTMLDoc.links If...
  17. ChrisNome

    weird alsec html property throwing me off

    work with the alsec property say this is the format for the link I'm looking for <a href="#" outLink="yes" alsec="identifier" alterm="word i want to get">word i want to get</a> I used to identify this link in code by looping through the links collection, using if/then statement to find the...
  18. ChrisNome

    weird alsec html property throwing me off

    hey everyone, i have an access module that identifies terms that are links on a website and loads them into my database. however, the website recently changed up the source code so i can no long find those terms in the links collection, where the identifier was just the .href property. The...
  19. ChrisNome

    Using an sql statement to return all titles given more than one author

    yea I'm pretty good with vba and am working on using the setwindowpos() api to try and keep an access pop-up form always on top of an ie if you want to check out my other threads :). I'm good with code and actually developed an algorithm using recordsets that will solve this problem. But when...
  20. ChrisNome

    Using an sql statement to return all titles given more than one author

    there are 3 comboboxes and the user can use as many as them as they want. The resulting titles must have all authors in comboboxes that aren't null. so if the user chooses one author he'll get a list of all titles by that one. if the user chooses 3 authors he/she gets a list of all titles by...

Part and Inventory Search

Back
Top