Add A Watermark With VB?
Nov 14, 2011
i managed to make an input and output box but cant get my head over how to add a watermark with VB, ive got the arguments to add when in dos, but doesnt work when in vb The visual basic code is below
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code].....
View 1 Replies
Aug 19, 2006
I've a project where users can upload images onto the server and i have to add an invisible water mark into it. anyway,i've recommended that it would be better to purchase or use a 3rd party API that allows the invisible watermarking to be done using VB.NET. So i was wondering does anyone have any recommendations
View 1 Replies
Sep 16, 2011
im making a Watermark in a textbox but it keeps buging no mather what i do.i have made a class project but i cant get it to work properly the cod is
[Code]...
View 2 Replies
Jun 14, 2010
I have a strong amount of pictures, which i would like to "protect" by adding watermark on them. Is there any way of adding watermark by using vb.net or C# ?
View 3 Replies
Jun 30, 2010
Well the title says it all, i have bin trying to find an idea or a way to do this but i am stuck so maybe i can get some feedback with this.
View 8 Replies
Dec 18, 2011
is it possible to use water mark in microsoft visual studio 2008? if yes, how?
View 9 Replies
Dec 29, 2011
I am adding watermark text to PDFs in a class library I have created. The code I posted below works fine, however the watermark is sometimes difficult to read because it overlays with content on the PDF. How would I go about adding a white background color around the watermark text? I basically would like the watermark text to be surrounded inside a white rectangle the size of the text.
[Code]...
View 1 Replies
Jan 14, 2009
I working on a distributed mediaplayer that uses the windows media player component.Now the customer asks me if its possible to have their logo overlayed on the media played instead of them having to render every movie with the logotype.I have google it and it seems like I can use a directshow filter to do this, but I havent found any good information on how to do it yet.If anyone here know If I can do this programatically, with a plugin, filter or some other way it would be nice to know. Its fine if its a plugin that costs money too. What I want is to be able to use a jpg/png as watermark/overlay to the running movie in Windows Media Player 11
View 1 Replies
Mar 8, 2012
With oWordDoc
.Activate()
.Sections(1).Range.Select()
.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekCurrentPageHeader
.Selection.HeaderFooter.Shapes.AddTextEffect(
[CODE]...
It throws at this line...
.Selection.HeaderFooter.Shapes.AddTextEffect(Office.MsoPresetTextEffect.msoTextEffect1, "UNCONTROLLED", "Calibri", 1, Office.MsoTriState.msoFalse, Office.MsoTriState.msoFalse, 0, 0).Select()
This is the error...
System.MissingMemberException was unhandled by user code
Message=Public member 'Selection' on type 'DocumentClass' not found.
Source=Microsoft.VisualBasic
View 2 Replies
Apr 28, 2011
I am automating Word from VB.Net.I open a document by:
Dim msWord as Word.Application = CreateObject("Word.Application")
Dim doc As Word.Document = msWord.Documents.Add(Template:=Path)
where path points to a template file I created with a header and a watermark. The template has some bookmarks which I want to dynamically set to some appropriate text values:
doc.Bookmarks("DocumentTitle").Range.Text = "The Joy of Office Automation"
If I comment out that line, the document opens in Word with the watermark, etc, in place. If I let that line execute, it inserts the text as appropriate, but the watermark and other things disappear from the document. You can actually see it flash briefly, and then disappear.FWIW, this is Office Word 2007, and I am opening a .Dot (Word 97-2003) template. The Bookmark.Range.Text I am setting is in the document header.
View 2 Replies