view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_buildPropertiesPanel.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

function ltpdv_buildPropertiesPanel(panH, mainfig)

  EditFontSize = 11;
  vmarg   = 0.03;
  pmarg   = 0.01;
  CommHeight = EditFontSize/400;
  ph = 1-2*vmarg;
  htab = uipanel('Parent', panH, 'Position', [pmarg vmarg 1-2*pmarg ph]);
  set(htab, 'Units', 'Normalized')
  set(htab, 'Title', 'Properties for ')
  set(htab, 'BackgroundColor', [1 1 0.6]);
  set(htab, 'ForegroundColor', 'k');
  set(htab, 'Tag', 'LTPDVobjectProperties');




end