- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
I'd like to programatically add a page border to a document being created. The Macro code from Word is With Selection.Sections(1) With .Borders(wdBorderLeft) .LineStyle = wdLineStyleThinThickSmallGap .LineWidth = wdLineWidth300pt .Color = wdColorAutomatic End With End With I can't fathom out how to convert this, if indeed it is possible, the …
I have a program that creates a report in MS Word 2010 from a database. For each entry in the database it formats the data into a table in the word document. However the size of the table can vary if one entry has extraordinarily large field (some 'Memo' fields) …
I want to access some data in an Access MDB but I want to make sure that nothing can be accidentally altered. I have tried: conn = New OleDbConnection(Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Test.MDB;Mode=adModeRead;") I've also used conn = New OleDbConnection(Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Test.MDB;Mode=Read;") I then run a quick UPDATE WHERE query and it still alters …
I beleive you dont need to put the whole code in every place, I've placed the following in my application: Public Function ApostopheDB(ByVal Str As String) As String 'formats apostrophes so it doesn't cause errors ApostopheDB = Str.Replace("'", "''") End Function Then when I'm inserting data in to the database …
The End.
pedders