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 Chris Miller 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: caf
  • Order by date
  1. caf

    Net Send or NetMessageBufferSend equivalent?

    Thanx for replying Your solution is exactly what I've implemented (only through the use of the Process class - which sort of allows you more control over the process you've started than what the tried and trusted old Shell command does.) I'm looking for the customi(s/z)ation allowed by the...
  2. caf

    Net Send or NetMessageBufferSend equivalent?

    Hi all Is there a .NET Framework equivalent to using the NetMessageBufferSend api call? If not, I've been trying to use NetMessageBufferSend but the examples either use Bytes or Any as arguments. I'd appreciate it if someone could show me some code on how to make this work. Until such time...
  3. caf

    Interbase roles in stored procedures

    I know. But in my particular case a user would not be a member of two similar roles which would both have execute permission to the same procedure. Thanks
  4. caf

    Interbase roles in stored procedures

    Okay, Here's the sql to the solution SELECT a.RDB$USER, a.RDB$RELATION_NAME FROM RDB$USER_PRIVILEGES a, RDB$ROLES b WHERE a.RDB$RELATION_NAME = b.RDB$ROLE_NAME AND a.RDB$USER = USER It was a stupid question, I'm sorry I posted it. [blush]
  5. caf

    Interbase roles in stored procedures

    Hi Is there anyway I can determine within a stored procedure whether the user executing the stored proceudre is a member of a particular role? I'm using IB 6 (Open Source) Thank You
  6. caf

    Connecting to InterBase from MS Word or Excel? Help!!!

    True The version of the OLEDB driver (SIBProvider) we have, could not work with the version of Crystal Reports we have (Ver. 7) so we had to either purchase the new SIBProvider or the Easysoft driver or the new Crystal Reports. Mixed case table names were not picked up using other drivers and...
  7. caf

    Interbase and events (alerts)

    Thanx, I'll give it a try (IB7) I was hoping I wouldn't have to resort to using the APi but I figure it's going to be my best bet. C# for .NET doesn't have an #include preprocessor directive command so it makes it a bit difficult if I can't use header files. (ibase.h) Thanx anyway.
  8. caf

    Interbase and events (alerts)

    Thanks for the reply Yes, it would be possible. The only problem is I don't have Delphi. I was thinking of doing the ame in VC.NET or C# using the API but I the examples are all for Borland C++ & Delphi in the documentation.
  9. caf

    Interbase and events (alerts)

    I need to write an application (In .NET (C# or VB.NET) to access an Interbase gdb among other things. It also needs to catch post_event calls made within triggers. I was wondering if anyone ever used the IB API (seems like the only solution) from within C# or VB. I know Interbase is a Borland...
  10. caf

    Connecting to InterBase from MS Word or Excel? Help!!!

    Hi I connect to Interbase 6 via VB (& in one case VBA) using SIBProvider (OLEDB) www.sibprovider.com - and - Easysoft ODBC Driver for Interbase www.easysoft.com
  11. caf

    Lotus Notes E-mail using VB6

    In response to Peter Meachem RE: NotesSession object. As far as Notes 5 Beta goes, I can't say for certain that the type library would exist on your pc after installation as it's a beta and I don't have it to test with. What you need to understand is that if you're going to develop for Notes...
  12. caf

    Lotus Notes E-mail using VB6

    In response to Klopper RE:Getting the server & dbnames from the user's settings without prompting the user for that information requires a simple adjustment to the code I posted above. Instead of using the line: Set lotDatabase = _ lotSession.GetDbDirectory("xxx").OpenMailDatabase...
  13. caf

    Lotus Notes E-mail using VB6

    In response to mcoko RE: Multiplke recipients ;-) It's exactly 2 years since I replied to the original thread but here goes. Since then I've upgraded to 5.08. Dim lotSession As Domino.NotesSession Dim lotDocument As Domino.NotesDocument Dim lotDatabase As Domino.NotesDatabase...
  14. caf

    Access Reporting From Visual Basic

    Hi Had the same problem. Maybe you should try using COM(+) to connect to the server running Access and run reports that way. Otherwise, I doubt using the Access RTL would work if the user doesn't have Access installed....(I could be wrong...) ;)
  15. caf

    HELP: Need to connect to Interbase

    Hi, I need to write a front-end to an interbase server using VB. I installed the Interbase Server 6(Open Source) on a server and would like to connect to it from a workstation. The problem is, there is no odbc driver included or at least i think so cos i checked. If there is one where can i...
  16. caf

    Call VB ActiveX Exe's Using GetObject

    I know this is a tad late (with VS7 Beta2 out already) but - better late than never. Click on the link below to download the source http://www.vb-helper.com/Howto/getobject.zip
  17. caf

    Use GetObject on your ActiveX Exe's

    I know this is a tad late (with VB7 Beta2 out already) but - better late than never. Click on the link below to download the source http://www.vb-helper.com/Howto/getobject.zip
  18. caf

    Implement Getobject on your VB 5&6 ActiveX Exe's

    I know this is a tad late (with VB7 Beta2 out already) but - better late than never. Click on the link below to download the source http://www.vb-helper.com/Howto/getobject.zip
  19. caf

    Need urgent help on calling dll Please help

    Excuse my ignorance but I don't know what that (COM API) entails. I'm using CreateOleObject(Class_String) OlePropertyGet(Property_Name) OlePropertySet(Property_Name) Is this right? If this ActiveX dll is residing on a server how can I access it thru builder? I can access it thru VB using...
  20. caf

    Need urgent help on "calling" a dll

    Hi Is there a (simple) way to call an activex dll(created in visual basic) from within c++. If so could someone be so kind as to provide me with some code. I have searched the net now for two weeks looking for a solution serious!! I would like to know how to query the dll's properties...

Part and Inventory Search

Back
Top