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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by VBDemiGod

  1. VBDemiGod

    Narrowcast File ITM Personalization - doesn't work

    If your DB is oracle, you could define connection mappings for each user and tie it together with backend filtering through the FGA Fine Grain Access of Oracle....Hope this helps..
  2. VBDemiGod

    Help with Metric/Fact/Levels issues?

    Has anyone ever seen this error before and can maybe provide a little help with it: Fact does not exist at a level that can support the requested analysis error # -2147212800 this occurs when attempting to execute a report (after the prompts). We are currently in process , adding a few...
  3. VBDemiGod

    VB 6 and XP pro conflict

    Have you recently (or in general) installed office xp your system? If so the problems is that the calendar control that ships with oXP breaks compatibility with the old one. Hope that helps
  4. VBDemiGod

    I get an error Runtime Error "3265" Item cann't be found

    instead of aliasing the column you could also just: wrkProjectNumber = .Fields(0).value
  5. VBDemiGod

    How do I make a user form scrollable at runtime

    steve mcmahons vbaccelerator.com site has a class that can add 'real' win32 scrollbars to any object with an hwnd. Simple!
  6. VBDemiGod

    Delete all Records in Access Table (DAO)

    how about: Delete * from SalesIn
  7. VBDemiGod

    .RecordCount = -1 ???

    I believe CClint is right about the Client side cursor. gotta have it to traverse the recordset and get properties like recordcount, absolutepage, etc...
  8. VBDemiGod

    createobject function gives error! help!!!

    Here is what you need to do if it is a usercontrol project: if running both projects in a group: remove all forms that reference the components in the application project (not the component project) set the Components 'compatibility' setting to project (or binary but project is the most...
  9. VBDemiGod

    Is it possible to selectively skip a level when drilling?

    nLim, I am a MSTR newbie and do not know what ACL or RMC mean. Can you elaborate on this? Ray H.
  10. VBDemiGod

    Is it possible to selectively skip a level when drilling?

    nLim (and anyone else), Could you elaborate on your previous post. I am attempting to do something similiar (refer to thread395-701684 for details) and need to limit certain clients from drilling at certain levels (most often the lowest level). I have attempted to put a security filter in place...
  11. VBDemiGod

    HTML Source code

    Here is another way if you are using the webbrowser control (a bit of a hack). Dim mObj As Object Set mObj = WebBrowser1.Document.getElementsByTagName(&quot;HTML&quot;) MsgBox &quot;<HTML>&quot; & mObj(0).innerHTML & &quot;</HTML>&quot; 'will not return the tags themselves (HTML) but the nested...
  12. VBDemiGod

    Child WIndow without MDI!!!

    This is useful, and not just in the context displayed here. consider the tasks at hand when trying to create a docking/undocking control for forms(hell, even for other controls). Unfortunately, some peoples perception is only based on what they can 'see' and not on what they can envision.
  13. VBDemiGod

    Security Filter &gt; Top Range, Bottom Range not working????

    Hey all, Newbie here, so anything I type below may or may not make any sense to any other than me! lol. When i say not working, i mean 'working' the way I anticipate it to work based on the Technotes and other information i have been able to gleen from their (MSTR) website. A little background...
  14. VBDemiGod

    Duplicate entries in Drill--&gt;Down&gt;&gt; menu ???

    Actually, I figured this one out too. when i would search (in the kb logged in), it would not find this document by just entering the tn number. but if i entered #filename tn5700* in the search box it came right up! Thanks to all who have commented and helped out. i appreciate it. this is a...

Part and Inventory Search

Back
Top