Hello, I think I ran into a issue. Not sure if this is a bug or something. 

I use to use AbsolutePath and had no issue. Was updating a project with a newer 
Xojo release and AbsolutePath since its been deprecated I switch to the newer 
NativePath replacement. It does not working like the AbsolutePath with 
QLPreviewViewMBS and QLPreviewViewMBS.previewItem=folderitem

I added this to the change event of a listbox that lists files paths (it use to 
work with AbsolutePath)

  dim i as Integer
  i=lbFiles.ListIndex
  
  if i=-1 then
    // no files 
    myQLItem.previewItem = nil

  else
    //get the item

    dim ss as string
    dim f as folderitem
    ss=lbFiles.Text
    f=GetFolderItem(ss)
    
    if f.Exists then
      myQLItem.previewItem=f
    end if
    
  end if


I wondering if this can be fixed to also support the newer nativePath? Or has 
something changed with the QLPreviewViewMBS and 
QLPreviewViewMBS.previewItem=folderitem. I have not used this item since 2013 
so maybe?

Thank you for your time.

System Info
Xojo 2014 r2 
MBS Complete 4.2
Mac OSX 10.9.3

Regards,

Obleo Beck
_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to