|  01-25-2012, 10:40 PM | #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.
		 | 
|   |   | 
|  02-01-2012, 03:02 PM | #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. | 
|   |   | 
|  02-01-2012, 03:14 PM | #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. | 
|   |   | 
|  02-01-2012, 10:27 PM | #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 =) | 
|   |   | 
|  02-01-2012, 10:55 PM | #425 | 
| Wizard            Posts: 3,671 Karma: 12205348 Join Date: Mar 2008 Device: Galaxy S, Nook w/CM7 | 
			
			Yes a little bit of both. There are two things I have not figured out with 2007. Dynamic creation of ribbon buttons and drop down ribbons, like I have in the bookcreator 2003 version. The features in the drop down menu where not ported to the new UI, so I left the add-on in so folks can still use the older functionality.
		 Last edited by =X=; 02-01-2012 at 11:05 PM. | 
|   |   | 
|  02-02-2012, 01:10 AM | #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 | 
|   |   | 
|  02-02-2012, 02:01 AM | #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? | 
|   |   | 
|  02-02-2012, 12:14 PM | #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= | ||
|   |   | 
|  02-03-2012, 01:39 AM | #429 | 
| Zealot       Posts: 114 Karma: 583 Join Date: Dec 2009 Location: Vigo, Spain Device: Woxter Scriba 150, pocketbook 360 | |
|   |   | 
|  02-04-2012, 04:39 PM | #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 WithCode: 
    With Application.FileDialog(msoFileDialogFolderPicker)
        
        bDisplayVal = .Show
        szPath = .SelectedItems(1)
    End With | 
|   |   | 
|  02-04-2012, 04:42 PM | #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 SubCode: Sub bcInsertfile()
'________________________________________________
' NAME: bcInsertfile
' AUTHOR: =X=
' DESCRIPTION: Opens insert file dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
    CommandBars.FindControl(ID:=777).Execute
End Sub | 
|   |   | 
|  02-04-2012, 04:48 PM | #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 IfCode: #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 | 
|   |   | 
|  02-04-2012, 05:31 PM | #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 | 
|   |   | 
|  02-04-2012, 05:40 PM | #434 | 
| Enthusiast            Posts: 25 Karma: 10000 Join Date: Jan 2012 Device: kindle | 
			
			Corrections should be: PageNumbersInHeaderInsertGallery and AlignJustifyThai | 
|   |   | 
|  02-04-2012, 05:45 PM | #435 | 
| Enthusiast            Posts: 25 Karma: 10000 Join Date: Jan 2012 Device: kindle | 
			
			Here is a file containing the corrections suggested above
		 | 
|   |   | 
|  | 
| Thread Tools | Search this Thread | 
| 
 | 
|  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 |