That is true, but you can't display the mail when you've created it with Mapi. When using outlook you can show the mail so the user can add something or so. I thought this was needed.
But else you can use Mapi. If this response was usefull to you, please mark it with a Star!
Yes, you can!
It is quite simple and looks alot like VBA in Excel. Look for example at this link : http://www.freevbcode.com/ShowCode.Asp?ID=329
Greetz,
Jan If this response was usefull to you, please mark it with a Star!
Sure, you can do this, but the client pc must have Outlook installed (Not Outlook Express).
You have to make a reference to Microsoft Outlook9 Object Library. For more info, look here : http://www.vbcodemagician.dk/tips/office_sendmail.htm
Greetz,
Jan If this response was usefull to you...
Forgot some quotes I think...
con.Execute ("INSERT INTO tblReference (ProdID, ProdDesc, ProdType) " & _
"VALUES ('" & ProdID & "', '" & cboDesc.Text & "', '" & ProdType & "')")
If this response was usefull to you, please mark it with a...
Hi,
C# and VB.NET, SharpDevelop:
http://www.icsharpcode.net/OpenSource/SD/default.asp
ASP.NET, WebMatrix:
http://www.asp.net
Greets,
Jan If this response was usefull to you, please mark it with a Star!
http://www.impactsoft.com/ : Home of Microangelo, complete suite.
Or look at tucows or downloads.com. Many choices!
But I think Microangelo is the best.
Greetz,
Jan If this response was usefull to you, please mark it with a Star!
You could set the StartUpPosition property of the form to CenterScreen. Or you can set the WindowState to Maximized.
Greets,
Jan If this response was usefull to you, please mark it with a Star!
I think AS/400 provides an ODBC driver for accessing data in the database. Just install that driver. Afther the you can use ADO to access your database.
Greetz,
Jan If this response was usefull to you, please mark it with a Star!
Hi,
Try this :
object.ColAlignment(Index) [=value]
The settings for value are:
Constant Value Description
flexAlignLeftTop 0 The column content is aligned left, top.
flexAlignLeftCenter 1 Default for strings. The column content is aligned left, center.
flexAlignLeftBottom 2 The column...
When you right-click on the DataGrid, you can choose 'Retreive fields' from the pop-up menu. Now you can layout the colums.
Let me know if it worked,
Jan If this response was usefull to you, please mark it with a Star!
When you open a RecordSet and you use a clientside cursor with a large table, it can take a long time just to open the recordset.
I think just the inserting is as fast with a recordset than sql. But opening a recordset can take some time... If this response was usefull to you, please mark it...
Hi,
Try this :
'frmA is the main form on the left-side
'frmB will appear on the right of frmA
frmB.Top = frmA.Top
frmB.Left = frmA.Left + frmA.Width
Greets,
Jan If this response was usefull to you, please mark it with a Star!
Hi,
You can write your the SQL statement for the update yourself!
Dim conn As New ADODB.Connection
Dim sql As String
conn.ConnectionString = "..."
sql = "INSERT INTO myTable (Field1, Field2) VALUES ('val1','val2')"
conn.Execute(sql)
conn.Close
Greetz,
Jan If this...
A simple (quick and dirty) solution is to add some DoEvent statements. This will force the current thread to pause and give other threads the oportunity to go on with their tasks. But be careful with this!
What I would recommend is implementing free threading. But this is not so simple. You...
Hi,
If letter_type is a text-field (non-numeric), you should add some quotes like this :
Adodc1.RecordSource = ("SELECT * FROM letter_history WHERE letter_type = '" & LetterType & "'")
Greetz,
Jan If this response was usefull to you, please mark it with a Star!
Maybe it helps using the ODBC .NET dataprovider. This works better then using ODBC with OLEBD.
You can download it here :
http://download.microsoft.com/download/dasdk/Install/1.0.4030.0/W98NT42KMeXP/EN-US/odbc_net.msi
Greetz,
Jan If this response was usefull to you, please mark it with a Star!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.