|
|
#421 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
|
Art the time I wrote the app for word2003 and calibre .6 the executable was not part of the app path. If calibre its starting to add itself to the app path then I can remove the code that looks for the path and BC should work just fine.
|
|
|
|
|
|
#422 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
|
Book Creator 2007 released
Book Creator and BookCreator 2007 released.
BookCreator - Bug fixes. BookCreator 2007 - GUI update uses 2007+ Ribbons - Bug Fixes *** Fixed crash that would happen after book was created. |
|
|
|
| Advert | |
|
|
|
|
#423 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
|
Can a Mod please update the title to "BookCreator Tool v3.5"
Thank You. |
|
|
|
|
|
#424 |
|
Addict
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 300
Karma: 1006538
Join Date: Jul 2008
Device: Kindle Paperwhite (11th Gen)
|
Just downloaded and opened up the latest version (2007 ribbon version)
Question tho, I have a Add-ins tab as well as the new eBook Creator tab. Is this normal? Or is it a left over from previous versions for some compatibility reason? I would think with the new ribbon tab etc that the old tab could be done away with. Thank you very much for the update !! I plan on playing with it a lot =) |
|
|
|
|
|
#425 | |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
|
Quote:
Last edited by =X=; 02-01-2012 at 11:05 PM. |
|
|
|
|
| Advert | |
|
|
|
|
#426 |
|
Bookmaker & Cat Slave
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
|
Hi:
Stupid Q: I'm using the old version with Win7 and it seems to work, when I need it. I get an Add-in item on my 2010 Ribbon...any reason to upgrade? Hitch |
|
|
|
|
|
#427 |
|
Zealot
![]() ![]() ![]() ![]() ![]() ![]() Posts: 114
Karma: 583
Join Date: Dec 2009
Location: Vigo, Spain
Device: Woxter Scriba 150, pocketbook 360
|
Thank you for the new version, I'll try it today.
I have word 2010 in mylaptop, will work on it the 2007 version? |
|
|
|
|
|
#428 | ||
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
|
Quote:
For the BC 2003 I fixed few bugs and changed the way tags work. Instead of tagging italics with an underscore, I tag them with a !i! field. That change makes the format tag much more reliable. Quote:
=X= |
||
|
|
|
|
|
#429 |
|
Zealot
![]() ![]() ![]() ![]() ![]() ![]() Posts: 114
Karma: 583
Join Date: Dec 2009
Location: Vigo, Spain
Device: Woxter Scriba 150, pocketbook 360
|
|
|
|
|
|
|
#430 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
Correction for the parent folder selection issue I have.
replace Code:
With Application.FileDialog(msoFileDialogFolderPicker)
bDisplayVal = .Show
szPath = VBA.CurDir
End With
Code:
With Application.FileDialog(msoFileDialogFolderPicker)
bDisplayVal = .Show
szPath = .SelectedItems(1)
End With
|
|
|
|
|
|
#431 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
Correction To allow Multiple file selection on Import File (Word 2007/2010 only)
Replace Code:
Sub bcInsertfile()
'________________________________________________
' NAME: bcInsertfile
' AUTHOR: =X=
' DESCRIPTION: Opens insert file dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
With Dialogs(wdDialogInsertFile)
.Name = "*.*"
.Show
End With
End Sub
Code:
Sub bcInsertfile()
'________________________________________________
' NAME: bcInsertfile
' AUTHOR: =X=
' DESCRIPTION: Opens insert file dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
CommandBars.FindControl(ID:=777).Execute
End Sub
|
|
|
|
|
|
#432 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
Corrections for Word 2010 64 bit compatibility
1 vbaKernelStuff Code:
#If VBA7 Then
Private Declare PtrSafe Function WaitForSingleObject Lib "kernel32" ( _
ByVal hHandle As LongPtr, _
ByVal dwMilliseconds As Long) As Long
Private Declare PtrSafe Function OpenProcess Lib "kernel32.dll" ( _
ByVal dwDesiredAccess As Long, _
ByVal bInheritHandle As LongPtr, _
ByVal dwProcessId As LongPtr) As LongPtr
Private Declare PtrSafe Function CloseHandle Lib "kernel32" ( _
ByVal hObject As LongPtr) As Long
#Else
Private Declare Function WaitForSingleObject Lib "kernel32" ( _
ByVal hHandle As Long, _
ByVal dwMilliseconds As Long) As Long
Private Declare Function OpenProcess Lib "kernel32.dll" ( _
ByVal dwDesiredAccess As Long, _
ByVal bInheritHandle As Long, _
ByVal dwProcessId As Long) As Long
Private Declare Function CloseHandle Lib "kernel32" ( _
ByVal hObject As Long) As Long
#End If
Code:
#If VBA7 Then Dim TaskID As LongPtr Dim ProcHandle As LongPtr #Else Dim TaskID As Long Dim ProcHandle As Long #End If Code:
#If VBA7 Then Public Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) #Else Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) #End If Code:
strPFPath = VBA.Environ("ProgramFiles(x86)")
If strPFPath = "" Then
strPFPath = VBA.Environ("ProgramFiles")
End If
setCalibrePath strPFPath + "\Calibre"
End If
|
|
|
|
|
|
#433 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
When activating Custom UI Errors warning (File->Options->Advanced->General->Show add-in user interface errors
I got on Word 2010: Custom UI Errors: Line:19 Column:136 Error Code 0x8004005 Unknown Office control ID: PageNumberInHeaderInsertGallery Line:30 Column: 123 Error Code 0x8004005 Unknown Office control ID: AlignJustofyThai |
|
|
|
|
|
#434 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
Corrections should be:
PageNumbersInHeaderInsertGallery and AlignJustifyThai |
|
|
|
|
|
#435 |
|
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
|
Here is a file containing the corrections suggested above
|
|
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Bookcreator | MalcolmFranks | Introduce Yourself | 8 | 10-13-2010 10:49 PM |
| BookCreator 3.0 Beta | =X= | Workshop | 43 | 11-21-2009 12:08 AM |
| New Update BookCreator v2.6 | =X= | Workshop | 2 | 09-22-2009 06:04 AM |
| BookCreator v2.5: Just Released | =X= | Workshop | 0 | 09-28-2008 06:40 PM |
| BookCreator v2.0 Released (Book Creating tool) | =X= | Workshop | 1 | 09-15-2008 06:01 PM |