|
Outlook Express is a wrapper for the Messaging Application Programming Inferface, or MAPI. Google for "MAPI VB.NET" and you'll find examples of all kinds of uses, problems, and examples.
|
|
|
|
|
System.Diagnosis.Process.Start("mailto:mailaddress.yahoo.com")
This will pop up a Window to send the mail (a very similar to the outlook express.)
|
|
|
|
|
Hello,
i have a problem with the AxMozillaBrowser NewWindow2 Event.
Now that's my Code:
Private Sub AxMozillaBrowser1_NewWindow2(ByVal sender As System.Object, ByVal e As AxMOZILLACONTROLLib.DWebBrowserEvents2_NewWindow2Event) Handles AxMozillaBrowser1.NewWindow2
Dim a As New Form
Dim ax As New AxMOZILLACONTROLLib.AxMozillaBrowser
ax.Dock = DockStyle.Fill
a.Controls.Add(ax)
ax.Show()
a.Show()
e.ppDisp = ax
End Sub
The problem is, that it doesn't load the page. The window opened but then nothing else happened. What's wrong there or from where do i get the to opened url???
Anybody an idea??
|
|
|
|
|
How are you calling the AxMozillaBrowser1.NewWindow2 event?
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
Your code creates a new blank form, then a MozillaBrowser object, adds it to the new form and shows it. But nowhere does your code tell the new browser object to nagivate to any URL.
|
|
|
|
|
Yes exactly that WAS the problem, i have no possibility to get any URL from the popup.
i've founded a tutorial for that problem:
http://support.microsoft.com/kb/311282/de[^]
The problem was, that i've said e.ppDisp = ax and not e.ppDisp = ax.Application (and ax.RegisterAsBrowser=True)
But thanks for your help.
|
|
|
|
|
Hi all,
I Have Created a COM+ Serviced Based Application Dot Net
I have installed The Application Proxy In my Client machine when I access the COM+ Service in the Server I Get a error “ Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))”
|
|
|
|
|
sunder vel wrote: I Have Created a COM+ Serviced Based Application Dot Net
Let's see a sample fo the source code. Make sure to check the "Ignore HTML tags" checkbox before you click "Post Message".
Somehow, I think you're missing a bunch of COM decorations from your classes and methods...
|
|
|
|
|
Hello,
I am trying to create an email client however I don't know how to use the pop3 fumctions of vb.net can anyone help me with the parameters or does anyone know somewhere where I can download one ?
Thanks
al968
Avast Antivirus-<url>http://www.avast.com<url>
|
|
|
|
|
|
hi ,
i want to know what is the difference between Debug and Release folder.
any link that specify particular this point ?
Rupesh Kumar Swami
Software Engineer,
Integrated Solution,
Bikaner (India)
|
|
|
|
|
Hi, do their names suggest nothing to you?
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
|
|
|
|
|
Visual Studio provides different build scenarios. There are two build scenarios that are created when for a solution, Debug and Release. As the names suggest, the Debug configuration contains extra information inside the EXE or DLL to allow you to debug the application. The Release is stripped of all of the extra debugging information and is ready to be shipped or released.
|
|
|
|
|
i have a bounded combobox control on form in windows application, i tay to retrive selected value from it and try to show in a label control
but in label it not shows value,it shows system.datarow......
how i do it.
i write label1.text=combobox1.selectedItem
try to solve my problem.
|
|
|
|
|
hi Ajeet,
use following code
label1.text=combobox1.text
Hope this Helps
Rupesh Kumar Swami
Software Engineer,
Integrated Solution,
Bikaner (India)
|
|
|
|
|
It's because the selected item is of type DataRow and when you assign it to the label1.Text the ToString method is called on the DataRow, which returns System.DataRow.
If you want to display the selected value in the label try:
label1.Text = combobox1.SelectedValue.ToString.
Mike Lasseter
|
|
|
|
|
The SelectedItem will return the DataRow object in the datasource that your box is bound to. Cast SelectedItem to a DataRow object, then you can use the DataRow's properties and methods to get the data you want out of that row.
Dim dr As DataRow = DirectCast(ComboBox1.SelectedItem, DataRow)
Dim id As Integer = dr("SomeIdColumnName")
|
|
|
|
|
can anyone tell me a way to replace a line and to remove.
I used this; doesn't work.
ex:-Richtextbox1.lines(0).replace("sdf")
|
|
|
|
|
In vb.net you do .Replace("sdf","") to remove that section.
Ben
|
|
|
|
|
If you could give a more clear coding it will be appreciated.
|
|
|
|
|
Your first error: The Replace method needs more than one parameter.
Your second error: The Replace method doesn't change a string, it returns a new string instance that contains the changes.
Richtextbox1.lines(0) = Richtextbox1.lines(0).Replace("sdf", String.Empty)
---
single minded; short sighted; long gone;
|
|
|
|
|
|
Then you need to be more precise in you postings.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
|
|
|
|
|
Standard question #1:
What do you mean by "not working"?
Standard question #2:
What error message do you get?
Standard question #3:
What does your code look like?
---
single minded; short sighted; long gone;
|
|
|
|
|
no error messages just doesn't work.(doesn't do anything)
|
|
|
|