Search results
Search results 1-11 of 11.
Dear visitor, welcome to Jabaco - Community.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
Elsebi : I remember something now: 1) Are JACOB DLLs in \Program Files (x86)\Java\jre6\bin ? 2) I'm not sure about this, but I think jacob.jar are C:\Program Files (x86)\Java\jre6\lib OR C:\Program Files (x86)\Java\jre6\lib\ext OR C:\Program Files\Java\jdk1.X.X_XX\lib\ext (yes, to try this option, you'll need install JDK in your PC) Best Regards
Hi Elsebi There are many time that I don't develop with JABACO. There's no special reason. I don't remember which dll I setted in my code. And this moment I don't have Outlook installed in my computer I`ll search the project. If I found, I`ll send for you. Sorry my very very poor english.
Hi Everybody Congratulations Dr_Acula for your effort and dedication to solve this problem. I have some questions : 1) How to Open the Serial Port ? 2) How to know if the port is already open ? 3) How to send a string ? (like msconn.output method) 4) How to obtain some info about the ports ? handshaking, velocity, setting... 5) Error handling. I've found a code written in java, but I don't know port to jabaco. http://www.devmedia.com.br/post-7171-Uti…-Parte-III.html The page is in Portuguese, so...
Hi A1880: I saw this post and saw that you put a solution there, but looks like this solution serves only to user controls. I would suggest to put Manuel that somehow we could simulate in a For Each Forms. I think it's very useful resource and should be in the framework Best regards
Hi guys I want make functions that returns: - how many controls are in a form or a control. - which control is positioned closer to the bottom of the control container in which it is inserted Thanks in Advance.
hi guys I don't programming in java. Reading Linux magazines, I saw a java product called HYPERIC HQ Open Source Edition [http://www.springsource.com/landing/hype…source-download]. Looks like cool. Is It possible using Hyperic in Jabaco ? Sorry for any inconvenience.
Hi guys I need insert scrollbars in a form and in a picturebox. I tried, but unsuccessfully. Anybody can help me ? Thanks in advance.
Hi Folks: I made some changes and fix some bugs. Hope you enjoy. New features: - CC propery - BCC property - Importance property - Close Outlook after the mail is sent Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 Public Sub JSendEmailFromOutlook( cTo As String, Optional cSubject As String = "", Optional cBody As String = "", Optional cCC As String = "", Optional cBCC As String = "", Option...
My Friends : I made this. This code works for me. Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 Public Sub JSendEmailFromOutlook( cTo As String, cSubject As String, cBody As String, Optional arrAttachments() As String, Optional lReadReceiptConfirmation As Boolean = False) Dim oOutlook As com#jacob#activeX#ActiveXComponent Dim oOL As com#jacob#com#Dispatch Dim oNs As com#jacob#com#Dispatch Dim oMail As com#jacob#com#Dispatch Dim oAttachs ...
A1880: Thanks for your reply. You are a very active member of this community and I'm happy because you read and answer my single post. I know the code that I post is java + jacob and jabaco doesn't offer direct support of ActiveX. But reading the great post of Stefan Schnell [How to use JavaCOMBridge (JaCoB) with Microsoft Word] I was thinking to try convert the code, but I don't know how can I convert some parts of code (red painted). I need send emails using outlook and I think to make this in...
Hi everybody: I'm new in Jabaco and I don't programming in Java. Sorry for any inconvenience. I found this code in java that send emails by outlook using JACOB. But I don't know how can I convert some parts: Code found in : http://www.guj.com.br/java/100403-outloo…lvido-com-jacob ActiveXComponent axcOutlook = new ActiveXComponent("Outlook.Application"); Dispatch criacaoEmail = Dispatch.invoke(axcOutlook.getObject(), "CreateItem", Dispatch.Get, new Object[] { "0" }, new int[0]).toDispatch(); Stri...