all groups > dotnet interop > august 2003 > threads for august 29 - 31, 2003
Filter by week: 1 2 3 4 5
Translating 64-bit API functions
Posted by Robert Jacobson at 8/31/2003 5:59:08 PM
Hi,
According to MSDN, I should be using the 64-bit compatible SetWindowsLongPtr
function instead of SetWindowsLong. SetWindowsLongPtr is defined as:
LONG_PTR SetWindowLongPtr(HWND hWnd,
int nIndex,
LONG_PTR dwNewLong
);
What is the best way to call this function (and similar 6... more >>
Trap Script Errors in Embedded Browser
Posted by Greg Bielleman at 8/31/2003 1:08:49 PM
I have an built an winforms app in C# which has IE embedded in it.
I have implemented IDocHostUIHandler which does moct of what I want.
The only outstanding issue I have is how do I trap script errors in the web
pages.
Anyone go a sample in C# or VB.net of how I can do this?
Cheers
Greg ... more >>
SHGetDesktopFolder in VB.NET
Posted by Will at 8/30/2003 10:24:49 AM
Hi
I would like to use the shell function SHGetDesktopFolder
from within VB.NET, but I don't know how I can use it
without an implementation of the IShellFolder interface,
and was wondering if anyone could point out an answer, or
resources that would provide an answer
Thanks in advance... more >>
MSDN article: Deploying an Application for COM Access REALLY unclear (to me...)
Posted by José Joye at 8/29/2003 9:19:56 PM
Reeading the MSDN page:
http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondeployingapplicationforcomaccess.asp?frame=true
makes me really skeptic.
I thought that using regasm /tlb:blabla.tlb blabla.dll will register the
assembly so as to be used by COM compliant clients.
To me thi... more >>
Help: Displaying Web OLAP cube in a web chart
Posted by mrwoopey NO[at]SPAM yahoo.com at 8/29/2003 12:10:08 PM
Hi,
I have a web based OLAP cube (based on the SQL 2000 resource kit
version) and I need to know how to display it in a chart (web based).
I know that there are 3rd party tools but I need a cheaper way to do
this.
Please post any code or links. You help is greatly appreciated!
Thanks,
... more >>
Handling Browser control's Alert()'s
Posted by fryguy NO[at]SPAM yahoo.com at 8/29/2003 12:01:25 PM
Situation:
-- VB.NET Windows app with embedded Browser control
-- Browser control loads form-based text entry web app (not ours, I
have no control over the HTML or the script that comes up)
-- Pages of web app contain field validation via JavaScript
-- Validation throws alert()'s to indicate fa... more >>
C# dll calling late-bound COM via InvokeMember gives type mismatch
Posted by Joshua B. Helm at 8/29/2003 10:53:49 AM
I have an extremely large (mostly VB6-based) project that makes extensive
use of late-binding COM. We are attempting to migrate slowly to .NET by
converting a piece at a time. I am attempting to write a replacement for
one of our dlls that late-binds to COM objects. I'm using Type.InvokeMember... more >>
|