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 TouchToneTommy 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. 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...
  15. VBDemiGod

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

    where do i locate this tech note, is it on microstrategy's site or here somewhere. I did a search on both sites and was not able to locate anything. Thanks in advance. Ray
  16. VBDemiGod

    Transparent picturebox

    i have an example on pscode that illustrates how to use steve mcmahons clsDibRegion class that can mask a region on any control/object with an hwnd. the illustration is actually an example of how to rotate an image interactively like you can in photoshop or word (with rotation handles), but...
  17. VBDemiGod

    save a Web page without user intervention

    go to google, type in edanmo vb. he has two different topics, one for saving the HTML doc as an IPersistFile and another that saves the file as a (.mht) file (web file complete with resources embeded in it).
  18. VBDemiGod

    Maintaining layering of objects while moving around screen

    your problem may be the fact that you are using an image control, which is lightweight (windowless). try a picturebox or something with an hwnd as I think windowless controls always draw on the second of three layers available in vb. lowest > print statements etc, ... middle > lightweigth...
  19. VBDemiGod

    Close properly an application

    Make sure you set you forms to nothing set frm = nothing after you unload it. Also, if your project references activeX dlls or control projects that have forms, VB will not unload your app depending on a few different conditions (formloaded not but visible, etc..). I cant seem to find the MSDN...

Part and Inventory Search

Back
Top