frmPIN.designer.vb 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class frmPIN
  3. Inherits System.Windows.Forms.Form
  4. 'Form reemplaza a Dispose para limpiar la lista de componentes.
  5. <System.Diagnostics.DebuggerNonUserCode()>
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Requerido por el Diseñador de Windows Forms
  16. Private components As System.ComponentModel.IContainer
  17. 'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
  18. 'Se puede modificar usando el Diseñador de Windows Forms.
  19. 'No lo modifique con el editor de código.
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Me.components = New System.ComponentModel.Container()
  23. Dim navSiguienteRegistro As System.Windows.Forms.ToolStripButton
  24. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmPIN))
  25. Me.cboCalificadoraDeRiesgo = New System.Windows.Forms.ComboBox()
  26. Me.PIN0BindingSource4 = New System.Windows.Forms.BindingSource(Me.components)
  27. Me.InversionesDEVDataSet5 = New Inversiones.InversionesDEVDataSet5()
  28. Me.cboEmisores = New System.Windows.Forms.ComboBox()
  29. Me.cboInstrumentosFinancieros = New System.Windows.Forms.ComboBox()
  30. Me.cboEmpresas = New System.Windows.Forms.ComboBox()
  31. Me.cboEstadoDocumento = New System.Windows.Forms.ComboBox()
  32. Me.cboOrigenDeFondos = New System.Windows.Forms.ComboBox()
  33. Me.cboCalificacionDeRiesgo = New System.Windows.Forms.ComboBox()
  34. Me.txtCodigoInversion = New System.Windows.Forms.TextBox()
  35. Me.lblCodigoInversion = New System.Windows.Forms.Label()
  36. Me.txtAsunto = New System.Windows.Forms.TextBox()
  37. Me.lblAsunto = New System.Windows.Forms.Label()
  38. Me.txtComentarios = New System.Windows.Forms.TextBox()
  39. Me.Label9 = New System.Windows.Forms.Label()
  40. Me.txtJustificacion = New System.Windows.Forms.TextBox()
  41. Me.Label8 = New System.Windows.Forms.Label()
  42. Me.dtpFechaDocumento = New System.Windows.Forms.DateTimePicker()
  43. Me.lblFecha = New System.Windows.Forms.Label()
  44. Me.cboPlazosFactor = New System.Windows.Forms.ComboBox()
  45. Me.btnAccion = New System.Windows.Forms.Button()
  46. Me.btnCancelar = New System.Windows.Forms.Button()
  47. Me.cboTipoOperacion = New System.Windows.Forms.ComboBox()
  48. Me.cboAutorizacion = New System.Windows.Forms.ComboBox()
  49. Me.btnActivar = New System.Windows.Forms.Button()
  50. Me.cboTipoMercado = New System.Windows.Forms.ComboBox()
  51. Me.Label22 = New System.Windows.Forms.Label()
  52. Me.pnlPie = New System.Windows.Forms.Panel()
  53. Me.txtNombre = New System.Windows.Forms.TextBox()
  54. Me.lblNombre = New System.Windows.Forms.Label()
  55. Me.cboRenta = New System.Windows.Forms.ComboBox()
  56. Me.cboTasa = New System.Windows.Forms.ComboBox()
  57. Me.cboPeriodicidad = New System.Windows.Forms.ComboBox()
  58. Me.Navegador = New System.Windows.Forms.BindingNavigator(Me.components)
  59. Me.navNuevoRegistro = New System.Windows.Forms.ToolStripButton()
  60. Me.BindingNavigatorCountItem = New System.Windows.Forms.ToolStripLabel()
  61. Me.navPrimerRegistro = New System.Windows.Forms.ToolStripButton()
  62. Me.navRegistroAnterior = New System.Windows.Forms.ToolStripButton()
  63. Me.BindingNavigatorSeparator = New System.Windows.Forms.ToolStripSeparator()
  64. Me.BindingNavigatorPositionItem = New System.Windows.Forms.ToolStripTextBox()
  65. Me.BindingNavigatorSeparator1 = New System.Windows.Forms.ToolStripSeparator()
  66. Me.navUltimoRegistro = New System.Windows.Forms.ToolStripButton()
  67. Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator()
  68. Me.navNuevo = New System.Windows.Forms.ToolStripButton()
  69. Me.navModificar = New System.Windows.Forms.ToolStripButton()
  70. Me.navEliminar = New System.Windows.Forms.ToolStripButton()
  71. Me.navEliminarRegistro = New System.Windows.Forms.ToolStripButton()
  72. Me.navBuscar = New System.Windows.Forms.ToolStripButton()
  73. Me.navRecorrer = New System.Windows.Forms.ToolStripButton()
  74. Me.navVistaPrevia = New System.Windows.Forms.ToolStripButton()
  75. Me.navImprimir = New System.Windows.Forms.ToolStripButton()
  76. Me.grbInversión = New System.Windows.Forms.GroupBox()
  77. Me.chkUsuario = New System.Windows.Forms.CheckBox()
  78. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  79. Me.pnlMenu = New System.Windows.Forms.Panel()
  80. Me.pnlInstrumento = New System.Windows.Forms.Panel()
  81. Me.lblInstrumento = New System.Windows.Forms.Label()
  82. Me.pnlEmpresa = New System.Windows.Forms.Panel()
  83. Me.lblEmpresa = New System.Windows.Forms.Label()
  84. Me.pnlOrigenFondos = New System.Windows.Forms.Panel()
  85. Me.lblOrigenFondos = New System.Windows.Forms.Label()
  86. Me.pnlEmisor = New System.Windows.Forms.Panel()
  87. Me.lblEmisor = New System.Windows.Forms.Label()
  88. Me.pnlPlazo = New System.Windows.Forms.Panel()
  89. Me.lblPlazo = New System.Windows.Forms.Label()
  90. Me.pnlCalificacionRiesgo = New System.Windows.Forms.Panel()
  91. Me.lblCalificacionRiesgo = New System.Windows.Forms.Label()
  92. Me.pnlAutorizacion = New System.Windows.Forms.Panel()
  93. Me.lblAutorizacion = New System.Windows.Forms.Label()
  94. Me.pnlCalificadora = New System.Windows.Forms.Panel()
  95. Me.lblCalificadora = New System.Windows.Forms.Label()
  96. Me.pnlTipMercado = New System.Windows.Forms.Panel()
  97. Me.lblTipoMercado = New System.Windows.Forms.Label()
  98. Me.pnlPais = New System.Windows.Forms.Panel()
  99. Me.lblPais = New System.Windows.Forms.Label()
  100. Me.pnlTipOper = New System.Windows.Forms.Panel()
  101. Me.lblTipoOperacion = New System.Windows.Forms.Label()
  102. Me.pnlEstado = New System.Windows.Forms.Panel()
  103. Me.lblEstado = New System.Windows.Forms.Label()
  104. Me.pnlCargaDatos = New System.Windows.Forms.Panel()
  105. Me.pnlContenedor = New System.Windows.Forms.Panel()
  106. Me.Panel3 = New System.Windows.Forms.Panel()
  107. Me.Label3 = New System.Windows.Forms.Label()
  108. Me.txtBuscar = New System.Windows.Forms.TextBox()
  109. Me.Panel1 = New System.Windows.Forms.Panel()
  110. Me.btnCancel = New System.Windows.Forms.Button()
  111. Me.btnAceptar = New System.Windows.Forms.Button()
  112. Me.grpTipoMercado = New System.Windows.Forms.GroupBox()
  113. Me.flpTipoMercado = New System.Windows.Forms.FlowLayoutPanel()
  114. Me.grpAutorizacion = New System.Windows.Forms.GroupBox()
  115. Me.flpAutorizacion = New System.Windows.Forms.FlowLayoutPanel()
  116. Me.grpTipoOperacion = New System.Windows.Forms.GroupBox()
  117. Me.flpTipoOperacion = New System.Windows.Forms.FlowLayoutPanel()
  118. Me.grpEstadoDocumento = New System.Windows.Forms.GroupBox()
  119. Me.flpEstadoDocumento = New System.Windows.Forms.FlowLayoutPanel()
  120. Me.grpPais = New System.Windows.Forms.GroupBox()
  121. Me.flpPais = New System.Windows.Forms.FlowLayoutPanel()
  122. Me.grpCalificadoraRiesgo = New System.Windows.Forms.GroupBox()
  123. Me.flpCalificadoraRiesgo = New System.Windows.Forms.FlowLayoutPanel()
  124. Me.grpCalificacionRiesgo = New System.Windows.Forms.GroupBox()
  125. Me.flpCalificacionRiesgo = New System.Windows.Forms.FlowLayoutPanel()
  126. Me.grpEmisor = New System.Windows.Forms.GroupBox()
  127. Me.flpEmisor = New System.Windows.Forms.FlowLayoutPanel()
  128. Me.grpPlazo = New System.Windows.Forms.GroupBox()
  129. Me.flpPlazo = New System.Windows.Forms.FlowLayoutPanel()
  130. Me.grpOrigenFondos = New System.Windows.Forms.GroupBox()
  131. Me.flpOrigenFondos = New System.Windows.Forms.FlowLayoutPanel()
  132. Me.grpInstrumentos = New System.Windows.Forms.GroupBox()
  133. Me.flpInstrumentos = New System.Windows.Forms.FlowLayoutPanel()
  134. Me.grpEmpresas = New System.Windows.Forms.GroupBox()
  135. Me.flpEmpresas = New System.Windows.Forms.FlowLayoutPanel()
  136. Me.cboPaises = New System.Windows.Forms.ComboBox()
  137. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  138. Me.lblCodigoInversionCM = New System.Windows.Forms.Label()
  139. Me.txtCodigoInversionCM = New System.Windows.Forms.TextBox()
  140. Me.TabCampos = New System.Windows.Forms.TabControl()
  141. Me.TbIngresarModificar = New System.Windows.Forms.TabPage()
  142. Me.btnDetalleIF = New System.Windows.Forms.Button()
  143. Me.Label18 = New System.Windows.Forms.Label()
  144. Me.Label17 = New System.Windows.Forms.Label()
  145. Me.Label16 = New System.Windows.Forms.Label()
  146. Me.Label15 = New System.Windows.Forms.Label()
  147. Me.Label14 = New System.Windows.Forms.Label()
  148. Me.Label13 = New System.Windows.Forms.Label()
  149. Me.Label12 = New System.Windows.Forms.Label()
  150. Me.Label11 = New System.Windows.Forms.Label()
  151. Me.Label10 = New System.Windows.Forms.Label()
  152. Me.Label7 = New System.Windows.Forms.Label()
  153. Me.Label6 = New System.Windows.Forms.Label()
  154. Me.Label5 = New System.Windows.Forms.Label()
  155. Me.Label4 = New System.Windows.Forms.Label()
  156. Me.Label2 = New System.Windows.Forms.Label()
  157. Me.TbBuscar = New System.Windows.Forms.TabPage()
  158. Me.BottomToolStripPanel = New System.Windows.Forms.ToolStripPanel()
  159. Me.TopToolStripPanel = New System.Windows.Forms.ToolStripPanel()
  160. Me.RightToolStripPanel = New System.Windows.Forms.ToolStripPanel()
  161. Me.LeftToolStripPanel = New System.Windows.Forms.ToolStripPanel()
  162. Me.ContentPanel = New System.Windows.Forms.ToolStripContentPanel()
  163. Me.InstrumentoToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
  164. Me.lblCambiarRev = New System.Windows.Forms.Label()
  165. Me.pnlCambiarRev = New System.Windows.Forms.Panel()
  166. Me.btnCambiarRev = New System.Windows.Forms.Button()
  167. Me.pnlCambiarApro = New System.Windows.Forms.Panel()
  168. Me.btnCambiarApro = New System.Windows.Forms.Button()
  169. Me.lblCambiarApro = New System.Windows.Forms.Label()
  170. Me.pnlCambiarRec = New System.Windows.Forms.Panel()
  171. Me.btnCambiarRec = New System.Windows.Forms.Button()
  172. Me.lblCambiarRec = New System.Windows.Forms.Label()
  173. Me.PIN0TableAdapter3 = New Inversiones.InversionesDEVDataSet5TableAdapters.PIN0TableAdapter()
  174. Me.TableAdapterManager = New Inversiones.InversionesDEVDataSet5TableAdapters.TableAdapterManager()
  175. Me.TableLayoutPanel3 = New System.Windows.Forms.TableLayoutPanel()
  176. Me.FlowLayoutPanel1 = New System.Windows.Forms.FlowLayoutPanel()
  177. navSiguienteRegistro = New System.Windows.Forms.ToolStripButton()
  178. CType(Me.PIN0BindingSource4, System.ComponentModel.ISupportInitialize).BeginInit()
  179. CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).BeginInit()
  180. Me.pnlPie.SuspendLayout()
  181. CType(Me.Navegador, System.ComponentModel.ISupportInitialize).BeginInit()
  182. Me.Navegador.SuspendLayout()
  183. Me.grbInversión.SuspendLayout()
  184. Me.GroupBox1.SuspendLayout()
  185. Me.pnlMenu.SuspendLayout()
  186. Me.pnlInstrumento.SuspendLayout()
  187. Me.pnlEmpresa.SuspendLayout()
  188. Me.pnlOrigenFondos.SuspendLayout()
  189. Me.pnlEmisor.SuspendLayout()
  190. Me.pnlPlazo.SuspendLayout()
  191. Me.pnlCalificacionRiesgo.SuspendLayout()
  192. Me.pnlAutorizacion.SuspendLayout()
  193. Me.pnlCalificadora.SuspendLayout()
  194. Me.pnlTipMercado.SuspendLayout()
  195. Me.pnlPais.SuspendLayout()
  196. Me.pnlTipOper.SuspendLayout()
  197. Me.pnlEstado.SuspendLayout()
  198. Me.pnlCargaDatos.SuspendLayout()
  199. Me.pnlContenedor.SuspendLayout()
  200. Me.Panel3.SuspendLayout()
  201. Me.Panel1.SuspendLayout()
  202. Me.grpTipoMercado.SuspendLayout()
  203. Me.grpAutorizacion.SuspendLayout()
  204. Me.grpTipoOperacion.SuspendLayout()
  205. Me.grpEstadoDocumento.SuspendLayout()
  206. Me.grpPais.SuspendLayout()
  207. Me.grpCalificadoraRiesgo.SuspendLayout()
  208. Me.grpCalificacionRiesgo.SuspendLayout()
  209. Me.grpEmisor.SuspendLayout()
  210. Me.grpPlazo.SuspendLayout()
  211. Me.grpOrigenFondos.SuspendLayout()
  212. Me.grpInstrumentos.SuspendLayout()
  213. Me.grpEmpresas.SuspendLayout()
  214. Me.GroupBox2.SuspendLayout()
  215. Me.TabCampos.SuspendLayout()
  216. Me.TbIngresarModificar.SuspendLayout()
  217. Me.TbBuscar.SuspendLayout()
  218. Me.pnlCambiarRev.SuspendLayout()
  219. Me.pnlCambiarApro.SuspendLayout()
  220. Me.pnlCambiarRec.SuspendLayout()
  221. Me.TableLayoutPanel3.SuspendLayout()
  222. Me.FlowLayoutPanel1.SuspendLayout()
  223. Me.SuspendLayout()
  224. '
  225. 'navSiguienteRegistro
  226. '
  227. navSiguienteRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  228. navSiguienteRegistro.Image = CType(resources.GetObject("navSiguienteRegistro.Image"), System.Drawing.Image)
  229. navSiguienteRegistro.Name = "navSiguienteRegistro"
  230. navSiguienteRegistro.RightToLeftAutoMirrorImage = True
  231. navSiguienteRegistro.Size = New System.Drawing.Size(23, 22)
  232. navSiguienteRegistro.Text = "Mover siguiente"
  233. AddHandler navSiguienteRegistro.Click, AddressOf Me.navSiguienteRegistro_Click_1
  234. '
  235. 'cboCalificadoraDeRiesgo
  236. '
  237. Me.cboCalificadoraDeRiesgo.BackColor = System.Drawing.SystemColors.Menu
  238. Me.cboCalificadoraDeRiesgo.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodECalRi", True))
  239. Me.cboCalificadoraDeRiesgo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  240. Me.cboCalificadoraDeRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  241. Me.cboCalificadoraDeRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  242. Me.cboCalificadoraDeRiesgo.FormattingEnabled = True
  243. Me.cboCalificadoraDeRiesgo.Location = New System.Drawing.Point(893, 199)
  244. Me.cboCalificadoraDeRiesgo.Name = "cboCalificadoraDeRiesgo"
  245. Me.cboCalificadoraDeRiesgo.Size = New System.Drawing.Size(182, 26)
  246. Me.cboCalificadoraDeRiesgo.TabIndex = 13
  247. '
  248. 'PIN0BindingSource4
  249. '
  250. Me.PIN0BindingSource4.DataMember = "PIN0"
  251. Me.PIN0BindingSource4.DataSource = Me.InversionesDEVDataSet5
  252. '
  253. 'InversionesDEVDataSet5
  254. '
  255. Me.InversionesDEVDataSet5.DataSetName = "InversionesDEVDataSet5"
  256. Me.InversionesDEVDataSet5.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
  257. '
  258. 'cboEmisores
  259. '
  260. Me.cboEmisores.BackColor = System.Drawing.SystemColors.Menu
  261. Me.cboEmisores.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodEmis", True))
  262. Me.cboEmisores.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  263. Me.cboEmisores.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  264. Me.cboEmisores.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  265. Me.cboEmisores.FormattingEnabled = True
  266. Me.cboEmisores.Location = New System.Drawing.Point(171, 343)
  267. Me.cboEmisores.Name = "cboEmisores"
  268. Me.cboEmisores.Size = New System.Drawing.Size(182, 26)
  269. Me.cboEmisores.TabIndex = 11
  270. '
  271. 'cboInstrumentosFinancieros
  272. '
  273. Me.cboInstrumentosFinancieros.BackColor = System.Drawing.SystemColors.Menu
  274. Me.cboInstrumentosFinancieros.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodIF", True))
  275. Me.cboInstrumentosFinancieros.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  276. Me.cboInstrumentosFinancieros.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  277. Me.cboInstrumentosFinancieros.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  278. Me.cboInstrumentosFinancieros.FormattingEnabled = True
  279. Me.cboInstrumentosFinancieros.Location = New System.Drawing.Point(171, 244)
  280. Me.cboInstrumentosFinancieros.MaxLength = 100000
  281. Me.cboInstrumentosFinancieros.Name = "cboInstrumentosFinancieros"
  282. Me.cboInstrumentosFinancieros.Size = New System.Drawing.Size(142, 26)
  283. Me.cboInstrumentosFinancieros.TabIndex = 3
  284. '
  285. 'cboEmpresas
  286. '
  287. Me.cboEmpresas.Anchor = System.Windows.Forms.AnchorStyles.None
  288. Me.cboEmpresas.BackColor = System.Drawing.SystemColors.Menu
  289. Me.cboEmpresas.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodEmpr", True))
  290. Me.cboEmpresas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  291. Me.cboEmpresas.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  292. Me.cboEmpresas.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  293. Me.cboEmpresas.FormattingEnabled = True
  294. Me.cboEmpresas.Location = New System.Drawing.Point(171, 184)
  295. Me.cboEmpresas.Name = "cboEmpresas"
  296. Me.cboEmpresas.Size = New System.Drawing.Size(182, 26)
  297. Me.cboEmpresas.TabIndex = 1
  298. '
  299. 'cboEstadoDocumento
  300. '
  301. Me.cboEstadoDocumento.BackColor = System.Drawing.SystemColors.Menu
  302. Me.cboEstadoDocumento.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "DocEst", True))
  303. Me.cboEstadoDocumento.DisplayMember = "Nombre"
  304. Me.cboEstadoDocumento.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  305. Me.cboEstadoDocumento.Enabled = False
  306. Me.cboEstadoDocumento.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  307. Me.cboEstadoDocumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  308. Me.cboEstadoDocumento.FormattingEnabled = True
  309. Me.cboEstadoDocumento.Location = New System.Drawing.Point(532, 249)
  310. Me.cboEstadoDocumento.MaxLength = 100000
  311. Me.cboEstadoDocumento.Name = "cboEstadoDocumento"
  312. Me.cboEstadoDocumento.Size = New System.Drawing.Size(183, 26)
  313. Me.cboEstadoDocumento.TabIndex = 17
  314. '
  315. 'cboOrigenDeFondos
  316. '
  317. Me.cboOrigenDeFondos.BackColor = System.Drawing.SystemColors.Menu
  318. Me.cboOrigenDeFondos.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "OFon", True))
  319. Me.cboOrigenDeFondos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  320. Me.cboOrigenDeFondos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  321. Me.cboOrigenDeFondos.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  322. Me.cboOrigenDeFondos.FormattingEnabled = True
  323. Me.cboOrigenDeFondos.Location = New System.Drawing.Point(893, 294)
  324. Me.cboOrigenDeFondos.Name = "cboOrigenDeFondos"
  325. Me.cboOrigenDeFondos.Size = New System.Drawing.Size(182, 26)
  326. Me.cboOrigenDeFondos.TabIndex = 10
  327. '
  328. 'cboCalificacionDeRiesgo
  329. '
  330. Me.cboCalificacionDeRiesgo.BackColor = System.Drawing.SystemColors.Menu
  331. Me.cboCalificacionDeRiesgo.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodCalRi", True))
  332. Me.cboCalificacionDeRiesgo.DisplayMember = "Codigo"
  333. Me.cboCalificacionDeRiesgo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  334. Me.cboCalificacionDeRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  335. Me.cboCalificacionDeRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  336. Me.cboCalificacionDeRiesgo.FormattingEnabled = True
  337. Me.cboCalificacionDeRiesgo.Location = New System.Drawing.Point(171, 394)
  338. Me.cboCalificacionDeRiesgo.Name = "cboCalificacionDeRiesgo"
  339. Me.cboCalificacionDeRiesgo.Size = New System.Drawing.Size(182, 26)
  340. Me.cboCalificacionDeRiesgo.TabIndex = 12
  341. Me.cboCalificacionDeRiesgo.ValueMember = "Codigo"
  342. '
  343. 'txtCodigoInversion
  344. '
  345. Me.txtCodigoInversion.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "CodInv", True))
  346. Me.txtCodigoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  347. Me.txtCodigoInversion.Location = New System.Drawing.Point(168, 66)
  348. Me.txtCodigoInversion.MaxLength = 100
  349. Me.txtCodigoInversion.Name = "txtCodigoInversion"
  350. Me.txtCodigoInversion.ReadOnly = True
  351. Me.txtCodigoInversion.Size = New System.Drawing.Size(182, 23)
  352. Me.txtCodigoInversion.TabIndex = 0
  353. '
  354. 'lblCodigoInversion
  355. '
  356. Me.lblCodigoInversion.AutoSize = True
  357. Me.lblCodigoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  358. Me.lblCodigoInversion.Location = New System.Drawing.Point(20, 66)
  359. Me.lblCodigoInversion.Name = "lblCodigoInversion"
  360. Me.lblCodigoInversion.Size = New System.Drawing.Size(48, 18)
  361. Me.lblCodigoInversion.TabIndex = 54
  362. Me.lblCodigoInversion.Text = "Código"
  363. '
  364. 'txtAsunto
  365. '
  366. Me.txtAsunto.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  367. Me.txtAsunto.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Asunto", True))
  368. Me.txtAsunto.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  369. Me.txtAsunto.Location = New System.Drawing.Point(168, 24)
  370. Me.txtAsunto.MaxLength = 100
  371. Me.txtAsunto.Name = "txtAsunto"
  372. Me.txtAsunto.Size = New System.Drawing.Size(182, 23)
  373. Me.txtAsunto.TabIndex = 2
  374. '
  375. 'lblAsunto
  376. '
  377. Me.lblAsunto.AutoSize = True
  378. Me.lblAsunto.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  379. Me.lblAsunto.Location = New System.Drawing.Point(20, 24)
  380. Me.lblAsunto.Name = "lblAsunto"
  381. Me.lblAsunto.Size = New System.Drawing.Size(48, 18)
  382. Me.lblAsunto.TabIndex = 53
  383. Me.lblAsunto.Text = "Asunto"
  384. '
  385. 'txtComentarios
  386. '
  387. Me.txtComentarios.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  388. Or System.Windows.Forms.AnchorStyles.Left) _
  389. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  390. Me.txtComentarios.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Coment", True))
  391. Me.txtComentarios.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  392. Me.txtComentarios.Location = New System.Drawing.Point(25, 455)
  393. Me.txtComentarios.MaxLength = 100
  394. Me.txtComentarios.Multiline = True
  395. Me.txtComentarios.Name = "txtComentarios"
  396. Me.txtComentarios.Size = New System.Drawing.Size(327, 82)
  397. Me.txtComentarios.TabIndex = 15
  398. '
  399. 'Label9
  400. '
  401. Me.Label9.Anchor = System.Windows.Forms.AnchorStyles.None
  402. Me.Label9.AutoSize = True
  403. Me.Label9.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  404. Me.Label9.Location = New System.Drawing.Point(23, 423)
  405. Me.Label9.Name = "Label9"
  406. Me.Label9.Size = New System.Drawing.Size(82, 18)
  407. Me.Label9.TabIndex = 67
  408. Me.Label9.Text = "Comentarios"
  409. '
  410. 'txtJustificacion
  411. '
  412. Me.txtJustificacion.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  413. Or System.Windows.Forms.AnchorStyles.Left) _
  414. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  415. Me.txtJustificacion.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Just", True))
  416. Me.txtJustificacion.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  417. Me.txtJustificacion.Location = New System.Drawing.Point(392, 455)
  418. Me.txtJustificacion.MaxLength = 100
  419. Me.txtJustificacion.Multiline = True
  420. Me.txtJustificacion.Name = "txtJustificacion"
  421. Me.txtJustificacion.Size = New System.Drawing.Size(322, 82)
  422. Me.txtJustificacion.TabIndex = 14
  423. '
  424. 'Label8
  425. '
  426. Me.Label8.Anchor = System.Windows.Forms.AnchorStyles.None
  427. Me.Label8.AutoSize = True
  428. Me.Label8.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  429. Me.Label8.Location = New System.Drawing.Point(390, 423)
  430. Me.Label8.Name = "Label8"
  431. Me.Label8.Size = New System.Drawing.Size(82, 18)
  432. Me.Label8.TabIndex = 66
  433. Me.Label8.Text = "Justificación"
  434. '
  435. 'dtpFechaDocumento
  436. '
  437. Me.dtpFechaDocumento.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.PIN0BindingSource4, "FechaDoc", True))
  438. Me.dtpFechaDocumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  439. Me.dtpFechaDocumento.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  440. Me.dtpFechaDocumento.Location = New System.Drawing.Point(513, 22)
  441. Me.dtpFechaDocumento.Name = "dtpFechaDocumento"
  442. Me.dtpFechaDocumento.Size = New System.Drawing.Size(182, 23)
  443. Me.dtpFechaDocumento.TabIndex = 18
  444. '
  445. 'lblFecha
  446. '
  447. Me.lblFecha.AutoSize = True
  448. Me.lblFecha.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  449. Me.lblFecha.Location = New System.Drawing.Point(429, 24)
  450. Me.lblFecha.Name = "lblFecha"
  451. Me.lblFecha.Size = New System.Drawing.Size(42, 18)
  452. Me.lblFecha.TabIndex = 76
  453. Me.lblFecha.Text = "Fecha"
  454. '
  455. 'cboPlazosFactor
  456. '
  457. Me.cboPlazosFactor.BackColor = System.Drawing.SystemColors.Menu
  458. Me.cboPlazosFactor.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "PlazoFact", True))
  459. Me.cboPlazosFactor.DisplayMember = "Nombre"
  460. Me.cboPlazosFactor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  461. Me.cboPlazosFactor.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  462. Me.cboPlazosFactor.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  463. Me.cboPlazosFactor.FormattingEnabled = True
  464. Me.cboPlazosFactor.Location = New System.Drawing.Point(890, 21)
  465. Me.cboPlazosFactor.Name = "cboPlazosFactor"
  466. Me.cboPlazosFactor.Size = New System.Drawing.Size(121, 26)
  467. Me.cboPlazosFactor.TabIndex = 8
  468. Me.cboPlazosFactor.Visible = False
  469. '
  470. 'btnAccion
  471. '
  472. Me.btnAccion.BackColor = System.Drawing.Color.White
  473. Me.btnAccion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  474. Me.btnAccion.ForeColor = System.Drawing.Color.Maroon
  475. Me.btnAccion.Location = New System.Drawing.Point(245, 19)
  476. Me.btnAccion.Name = "btnAccion"
  477. Me.btnAccion.Size = New System.Drawing.Size(163, 29)
  478. Me.btnAccion.TabIndex = 18
  479. Me.btnAccion.Text = "Aceptar"
  480. Me.btnAccion.UseVisualStyleBackColor = False
  481. '
  482. 'btnCancelar
  483. '
  484. Me.btnCancelar.BackColor = System.Drawing.Color.White
  485. Me.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel
  486. Me.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  487. Me.btnCancelar.ForeColor = System.Drawing.Color.Maroon
  488. Me.btnCancelar.Location = New System.Drawing.Point(25, 19)
  489. Me.btnCancelar.Name = "btnCancelar"
  490. Me.btnCancelar.Size = New System.Drawing.Size(163, 29)
  491. Me.btnCancelar.TabIndex = 19
  492. Me.btnCancelar.Text = "Cancelar"
  493. Me.btnCancelar.UseVisualStyleBackColor = False
  494. '
  495. 'cboTipoOperacion
  496. '
  497. Me.cboTipoOperacion.BackColor = System.Drawing.SystemColors.Menu
  498. Me.cboTipoOperacion.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoOper", True))
  499. Me.cboTipoOperacion.DisplayMember = "Nombre"
  500. Me.cboTipoOperacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  501. Me.cboTipoOperacion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  502. Me.cboTipoOperacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  503. Me.cboTipoOperacion.FormattingEnabled = True
  504. Me.cboTipoOperacion.Location = New System.Drawing.Point(532, 388)
  505. Me.cboTipoOperacion.Name = "cboTipoOperacion"
  506. Me.cboTipoOperacion.Size = New System.Drawing.Size(183, 26)
  507. Me.cboTipoOperacion.TabIndex = 88
  508. '
  509. 'cboAutorizacion
  510. '
  511. Me.cboAutorizacion.BackColor = System.Drawing.SystemColors.Menu
  512. Me.cboAutorizacion.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "AutEstado", True))
  513. Me.cboAutorizacion.DisplayMember = "Nombre"
  514. Me.cboAutorizacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  515. Me.cboAutorizacion.Enabled = False
  516. Me.cboAutorizacion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  517. Me.cboAutorizacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  518. Me.cboAutorizacion.FormattingEnabled = True
  519. Me.cboAutorizacion.Location = New System.Drawing.Point(893, 340)
  520. Me.cboAutorizacion.Name = "cboAutorizacion"
  521. Me.cboAutorizacion.Size = New System.Drawing.Size(182, 26)
  522. Me.cboAutorizacion.TabIndex = 91
  523. '
  524. 'btnActivar
  525. '
  526. Me.btnActivar.BackColor = System.Drawing.Color.FromArgb(CType(CType(21, Byte), Integer), CType(CType(81, Byte), Integer), CType(CType(118, Byte), Integer))
  527. Me.btnActivar.FlatAppearance.BorderSize = 0
  528. Me.btnActivar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  529. Me.btnActivar.ForeColor = System.Drawing.Color.White
  530. Me.btnActivar.Location = New System.Drawing.Point(443, 19)
  531. Me.btnActivar.Name = "btnActivar"
  532. Me.btnActivar.Size = New System.Drawing.Size(207, 37)
  533. Me.btnActivar.TabIndex = 155
  534. Me.btnActivar.Text = "Activar"
  535. Me.btnActivar.UseVisualStyleBackColor = False
  536. '
  537. 'cboTipoMercado
  538. '
  539. Me.cboTipoMercado.BackColor = System.Drawing.SystemColors.Menu
  540. Me.cboTipoMercado.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoMerc", True))
  541. Me.cboTipoMercado.DisplayMember = "Nombre"
  542. Me.cboTipoMercado.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  543. Me.cboTipoMercado.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  544. Me.cboTipoMercado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  545. Me.cboTipoMercado.FormattingEnabled = True
  546. Me.cboTipoMercado.Location = New System.Drawing.Point(171, 294)
  547. Me.cboTipoMercado.Name = "cboTipoMercado"
  548. Me.cboTipoMercado.Size = New System.Drawing.Size(182, 26)
  549. Me.cboTipoMercado.TabIndex = 158
  550. Me.cboTipoMercado.ValueMember = "Codigo"
  551. '
  552. 'Label22
  553. '
  554. Me.Label22.AutoSize = True
  555. Me.Label22.Font = New System.Drawing.Font("Trebuchet MS", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  556. Me.Label22.Location = New System.Drawing.Point(3, 0)
  557. Me.Label22.Name = "Label22"
  558. Me.Label22.Size = New System.Drawing.Size(223, 24)
  559. Me.Label22.TabIndex = 160
  560. Me.Label22.Text = "Propuestas de Inversión"
  561. '
  562. 'pnlPie
  563. '
  564. Me.pnlPie.Anchor = System.Windows.Forms.AnchorStyles.None
  565. Me.pnlPie.Controls.Add(Me.btnCancelar)
  566. Me.pnlPie.Controls.Add(Me.btnAccion)
  567. Me.pnlPie.Location = New System.Drawing.Point(3, 778)
  568. Me.pnlPie.Name = "pnlPie"
  569. Me.pnlPie.Size = New System.Drawing.Size(435, 92)
  570. Me.pnlPie.TabIndex = 161
  571. '
  572. 'txtNombre
  573. '
  574. Me.txtNombre.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "NombreManual", True))
  575. Me.txtNombre.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  576. Me.txtNombre.Location = New System.Drawing.Point(168, 110)
  577. Me.txtNombre.MaxLength = 100
  578. Me.txtNombre.Name = "txtNombre"
  579. Me.txtNombre.Size = New System.Drawing.Size(182, 23)
  580. Me.txtNombre.TabIndex = 162
  581. '
  582. 'lblNombre
  583. '
  584. Me.lblNombre.AutoSize = True
  585. Me.lblNombre.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  586. Me.lblNombre.ForeColor = System.Drawing.Color.Maroon
  587. Me.lblNombre.Location = New System.Drawing.Point(20, 115)
  588. Me.lblNombre.Name = "lblNombre"
  589. Me.lblNombre.Size = New System.Drawing.Size(62, 18)
  590. Me.lblNombre.TabIndex = 163
  591. Me.lblNombre.Text = "Nombre *"
  592. '
  593. 'cboRenta
  594. '
  595. Me.cboRenta.BackColor = System.Drawing.SystemColors.Menu
  596. Me.cboRenta.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoRenta", True))
  597. Me.cboRenta.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  598. Me.cboRenta.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  599. Me.cboRenta.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  600. Me.cboRenta.FormattingEnabled = True
  601. Me.cboRenta.Location = New System.Drawing.Point(532, 343)
  602. Me.cboRenta.Name = "cboRenta"
  603. Me.cboRenta.Size = New System.Drawing.Size(183, 26)
  604. Me.cboRenta.TabIndex = 164
  605. '
  606. 'cboTasa
  607. '
  608. Me.cboTasa.BackColor = System.Drawing.SystemColors.Menu
  609. Me.cboTasa.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoTasa", True))
  610. Me.cboTasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  611. Me.cboTasa.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  612. Me.cboTasa.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  613. Me.cboTasa.FormattingEnabled = True
  614. Me.cboTasa.Location = New System.Drawing.Point(893, 244)
  615. Me.cboTasa.Name = "cboTasa"
  616. Me.cboTasa.Size = New System.Drawing.Size(182, 26)
  617. Me.cboTasa.TabIndex = 166
  618. '
  619. 'cboPeriodicidad
  620. '
  621. Me.cboPeriodicidad.BackColor = System.Drawing.SystemColors.Menu
  622. Me.cboPeriodicidad.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "Periodicidad", True))
  623. Me.cboPeriodicidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  624. Me.cboPeriodicidad.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  625. Me.cboPeriodicidad.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  626. Me.cboPeriodicidad.FormattingEnabled = True
  627. Me.cboPeriodicidad.Location = New System.Drawing.Point(532, 295)
  628. Me.cboPeriodicidad.Name = "cboPeriodicidad"
  629. Me.cboPeriodicidad.Size = New System.Drawing.Size(183, 26)
  630. Me.cboPeriodicidad.TabIndex = 167
  631. '
  632. 'Navegador
  633. '
  634. Me.Navegador.AddNewItem = Me.navNuevoRegistro
  635. Me.Navegador.BindingSource = Me.PIN0BindingSource4
  636. Me.Navegador.CountItem = Me.BindingNavigatorCountItem
  637. Me.Navegador.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "DocId", True))
  638. Me.Navegador.DeleteItem = Nothing
  639. Me.Navegador.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.navPrimerRegistro, Me.navRegistroAnterior, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, navSiguienteRegistro, Me.navUltimoRegistro, Me.BindingNavigatorSeparator2, Me.navNuevoRegistro, Me.navNuevo, Me.navModificar, Me.navEliminar, Me.navEliminarRegistro, Me.navBuscar, Me.navRecorrer, Me.navVistaPrevia, Me.navImprimir})
  640. Me.Navegador.Location = New System.Drawing.Point(0, 0)
  641. Me.Navegador.MoveFirstItem = Me.navPrimerRegistro
  642. Me.Navegador.MoveLastItem = Me.navUltimoRegistro
  643. Me.Navegador.MoveNextItem = navSiguienteRegistro
  644. Me.Navegador.MovePreviousItem = Me.navRegistroAnterior
  645. Me.Navegador.Name = "Navegador"
  646. Me.Navegador.PositionItem = Me.BindingNavigatorPositionItem
  647. Me.Navegador.Size = New System.Drawing.Size(1157, 25)
  648. Me.Navegador.TabIndex = 173
  649. Me.Navegador.Text = "BindingNavigator1"
  650. '
  651. 'navNuevoRegistro
  652. '
  653. Me.navNuevoRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  654. Me.navNuevoRegistro.Enabled = False
  655. Me.navNuevoRegistro.Image = CType(resources.GetObject("navNuevoRegistro.Image"), System.Drawing.Image)
  656. Me.navNuevoRegistro.Name = "navNuevoRegistro"
  657. Me.navNuevoRegistro.RightToLeftAutoMirrorImage = True
  658. Me.navNuevoRegistro.Size = New System.Drawing.Size(23, 22)
  659. Me.navNuevoRegistro.Text = "Agregar nuevo"
  660. Me.navNuevoRegistro.Visible = False
  661. '
  662. 'BindingNavigatorCountItem
  663. '
  664. Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
  665. Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(37, 22)
  666. Me.BindingNavigatorCountItem.Text = "de {0}"
  667. Me.BindingNavigatorCountItem.ToolTipText = "Número total de elementos"
  668. '
  669. 'navPrimerRegistro
  670. '
  671. Me.navPrimerRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  672. Me.navPrimerRegistro.Image = CType(resources.GetObject("navPrimerRegistro.Image"), System.Drawing.Image)
  673. Me.navPrimerRegistro.Name = "navPrimerRegistro"
  674. Me.navPrimerRegistro.RightToLeftAutoMirrorImage = True
  675. Me.navPrimerRegistro.Size = New System.Drawing.Size(23, 22)
  676. Me.navPrimerRegistro.Text = "Mover primero"
  677. '
  678. 'navRegistroAnterior
  679. '
  680. Me.navRegistroAnterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  681. Me.navRegistroAnterior.Image = CType(resources.GetObject("navRegistroAnterior.Image"), System.Drawing.Image)
  682. Me.navRegistroAnterior.Name = "navRegistroAnterior"
  683. Me.navRegistroAnterior.RightToLeftAutoMirrorImage = True
  684. Me.navRegistroAnterior.Size = New System.Drawing.Size(23, 22)
  685. Me.navRegistroAnterior.Text = "Mover anterior"
  686. '
  687. 'BindingNavigatorSeparator
  688. '
  689. Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
  690. Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
  691. '
  692. 'BindingNavigatorPositionItem
  693. '
  694. Me.BindingNavigatorPositionItem.AccessibleName = "Posición"
  695. Me.BindingNavigatorPositionItem.AutoSize = False
  696. Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
  697. Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
  698. Me.BindingNavigatorPositionItem.Text = "0"
  699. Me.BindingNavigatorPositionItem.ToolTipText = "Posición actual"
  700. '
  701. 'BindingNavigatorSeparator1
  702. '
  703. Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
  704. Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
  705. '
  706. 'navUltimoRegistro
  707. '
  708. Me.navUltimoRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  709. Me.navUltimoRegistro.Image = CType(resources.GetObject("navUltimoRegistro.Image"), System.Drawing.Image)
  710. Me.navUltimoRegistro.Name = "navUltimoRegistro"
  711. Me.navUltimoRegistro.RightToLeftAutoMirrorImage = True
  712. Me.navUltimoRegistro.Size = New System.Drawing.Size(23, 22)
  713. Me.navUltimoRegistro.Text = "Mover último"
  714. '
  715. 'BindingNavigatorSeparator2
  716. '
  717. Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
  718. Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
  719. '
  720. 'navNuevo
  721. '
  722. Me.navNuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  723. Me.navNuevo.Image = CType(resources.GetObject("navNuevo.Image"), System.Drawing.Image)
  724. Me.navNuevo.ImageTransparentColor = System.Drawing.Color.Magenta
  725. Me.navNuevo.Name = "navNuevo"
  726. Me.navNuevo.Size = New System.Drawing.Size(23, 22)
  727. Me.navNuevo.Text = "Nuevo"
  728. '
  729. 'navModificar
  730. '
  731. Me.navModificar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  732. Me.navModificar.Image = CType(resources.GetObject("navModificar.Image"), System.Drawing.Image)
  733. Me.navModificar.ImageTransparentColor = System.Drawing.Color.Magenta
  734. Me.navModificar.Name = "navModificar"
  735. Me.navModificar.Size = New System.Drawing.Size(23, 22)
  736. Me.navModificar.Text = "Modificar"
  737. '
  738. 'navEliminar
  739. '
  740. Me.navEliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  741. Me.navEliminar.Image = CType(resources.GetObject("navEliminar.Image"), System.Drawing.Image)
  742. Me.navEliminar.ImageTransparentColor = System.Drawing.Color.Magenta
  743. Me.navEliminar.Name = "navEliminar"
  744. Me.navEliminar.Size = New System.Drawing.Size(23, 22)
  745. Me.navEliminar.Text = "Eliminar"
  746. '
  747. 'navEliminarRegistro
  748. '
  749. Me.navEliminarRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  750. Me.navEliminarRegistro.Enabled = False
  751. Me.navEliminarRegistro.Image = CType(resources.GetObject("navEliminarRegistro.Image"), System.Drawing.Image)
  752. Me.navEliminarRegistro.Name = "navEliminarRegistro"
  753. Me.navEliminarRegistro.RightToLeftAutoMirrorImage = True
  754. Me.navEliminarRegistro.Size = New System.Drawing.Size(23, 22)
  755. Me.navEliminarRegistro.Text = "Eliminar"
  756. Me.navEliminarRegistro.Visible = False
  757. '
  758. 'navBuscar
  759. '
  760. Me.navBuscar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  761. Me.navBuscar.Image = CType(resources.GetObject("navBuscar.Image"), System.Drawing.Image)
  762. Me.navBuscar.ImageTransparentColor = System.Drawing.Color.Magenta
  763. Me.navBuscar.Name = "navBuscar"
  764. Me.navBuscar.Size = New System.Drawing.Size(23, 22)
  765. Me.navBuscar.Text = "Buscar"
  766. Me.navBuscar.ToolTipText = "Buscar"
  767. '
  768. 'navRecorrer
  769. '
  770. Me.navRecorrer.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  771. Me.navRecorrer.Image = Global.Inversiones.My.Resources.Resources.Busqueda
  772. Me.navRecorrer.ImageTransparentColor = System.Drawing.Color.Magenta
  773. Me.navRecorrer.Name = "navRecorrer"
  774. Me.navRecorrer.Size = New System.Drawing.Size(23, 22)
  775. Me.navRecorrer.Text = "Recorrer"
  776. '
  777. 'navVistaPrevia
  778. '
  779. Me.navVistaPrevia.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  780. Me.navVistaPrevia.Image = Global.Inversiones.My.Resources.Resources.FILEprintp
  781. Me.navVistaPrevia.ImageTransparentColor = System.Drawing.Color.Magenta
  782. Me.navVistaPrevia.Name = "navVistaPrevia"
  783. Me.navVistaPrevia.Size = New System.Drawing.Size(23, 22)
  784. Me.navVistaPrevia.Text = "Vista"
  785. '
  786. 'navImprimir
  787. '
  788. Me.navImprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
  789. Me.navImprimir.Image = Global.Inversiones.My.Resources.Resources.FILEprint
  790. Me.navImprimir.ImageTransparentColor = System.Drawing.Color.Magenta
  791. Me.navImprimir.Name = "navImprimir"
  792. Me.navImprimir.Size = New System.Drawing.Size(23, 22)
  793. Me.navImprimir.Text = "Impresion"
  794. Me.navImprimir.Visible = False
  795. '
  796. 'grbInversión
  797. '
  798. Me.grbInversión.AccessibleRole = System.Windows.Forms.AccessibleRole.TitleBar
  799. Me.grbInversión.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  800. Or System.Windows.Forms.AnchorStyles.Left) _
  801. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  802. Me.grbInversión.Controls.Add(Me.btnActivar)
  803. Me.grbInversión.Location = New System.Drawing.Point(25, 543)
  804. Me.grbInversión.Name = "grbInversión"
  805. Me.grbInversión.Size = New System.Drawing.Size(1050, 77)
  806. Me.grbInversión.TabIndex = 174
  807. Me.grbInversión.TabStop = False
  808. Me.grbInversión.Text = "Convertir a Inversión"
  809. Me.grbInversión.Visible = False
  810. '
  811. 'chkUsuario
  812. '
  813. Me.chkUsuario.Anchor = System.Windows.Forms.AnchorStyles.None
  814. Me.chkUsuario.AutoSize = True
  815. Me.chkUsuario.Location = New System.Drawing.Point(468, 47)
  816. Me.chkUsuario.Name = "chkUsuario"
  817. Me.chkUsuario.Size = New System.Drawing.Size(67, 17)
  818. Me.chkUsuario.TabIndex = 175
  819. Me.chkUsuario.Text = "Autorizar"
  820. Me.chkUsuario.UseVisualStyleBackColor = True
  821. '
  822. 'GroupBox1
  823. '
  824. Me.GroupBox1.BackColor = System.Drawing.Color.WhiteSmoke
  825. Me.GroupBox1.Controls.Add(Me.pnlMenu)
  826. Me.GroupBox1.Controls.Add(Me.pnlCargaDatos)
  827. Me.GroupBox1.Location = New System.Drawing.Point(6, 6)
  828. Me.GroupBox1.Name = "GroupBox1"
  829. Me.GroupBox1.Size = New System.Drawing.Size(1073, 574)
  830. Me.GroupBox1.TabIndex = 177
  831. Me.GroupBox1.TabStop = False
  832. '
  833. 'pnlMenu
  834. '
  835. Me.pnlMenu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  836. Me.pnlMenu.Controls.Add(Me.pnlInstrumento)
  837. Me.pnlMenu.Controls.Add(Me.pnlEmpresa)
  838. Me.pnlMenu.Controls.Add(Me.pnlOrigenFondos)
  839. Me.pnlMenu.Controls.Add(Me.pnlEmisor)
  840. Me.pnlMenu.Controls.Add(Me.pnlPlazo)
  841. Me.pnlMenu.Controls.Add(Me.pnlCalificacionRiesgo)
  842. Me.pnlMenu.Controls.Add(Me.pnlAutorizacion)
  843. Me.pnlMenu.Controls.Add(Me.pnlCalificadora)
  844. Me.pnlMenu.Controls.Add(Me.pnlTipMercado)
  845. Me.pnlMenu.Controls.Add(Me.pnlPais)
  846. Me.pnlMenu.Controls.Add(Me.pnlTipOper)
  847. Me.pnlMenu.Controls.Add(Me.pnlEstado)
  848. Me.pnlMenu.Location = New System.Drawing.Point(0, 19)
  849. Me.pnlMenu.Name = "pnlMenu"
  850. Me.pnlMenu.Size = New System.Drawing.Size(231, 410)
  851. Me.pnlMenu.TabIndex = 189
  852. '
  853. 'pnlInstrumento
  854. '
  855. Me.pnlInstrumento.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  856. Me.pnlInstrumento.Controls.Add(Me.lblInstrumento)
  857. Me.pnlInstrumento.Location = New System.Drawing.Point(3, 36)
  858. Me.pnlInstrumento.Name = "pnlInstrumento"
  859. Me.pnlInstrumento.Size = New System.Drawing.Size(228, 33)
  860. Me.pnlInstrumento.TabIndex = 187
  861. '
  862. 'lblInstrumento
  863. '
  864. Me.lblInstrumento.Anchor = System.Windows.Forms.AnchorStyles.None
  865. Me.lblInstrumento.AutoSize = True
  866. Me.lblInstrumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  867. Me.lblInstrumento.Location = New System.Drawing.Point(68, 5)
  868. Me.lblInstrumento.Name = "lblInstrumento"
  869. Me.lblInstrumento.Size = New System.Drawing.Size(85, 18)
  870. Me.lblInstrumento.TabIndex = 62
  871. Me.lblInstrumento.Text = "Instrumentos"
  872. '
  873. 'pnlEmpresa
  874. '
  875. Me.pnlEmpresa.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  876. Me.pnlEmpresa.Controls.Add(Me.lblEmpresa)
  877. Me.pnlEmpresa.Location = New System.Drawing.Point(3, 4)
  878. Me.pnlEmpresa.Name = "pnlEmpresa"
  879. Me.pnlEmpresa.Size = New System.Drawing.Size(228, 33)
  880. Me.pnlEmpresa.TabIndex = 186
  881. '
  882. 'lblEmpresa
  883. '
  884. Me.lblEmpresa.Anchor = System.Windows.Forms.AnchorStyles.None
  885. Me.lblEmpresa.AutoSize = True
  886. Me.lblEmpresa.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  887. Me.lblEmpresa.Location = New System.Drawing.Point(82, 7)
  888. Me.lblEmpresa.Name = "lblEmpresa"
  889. Me.lblEmpresa.Size = New System.Drawing.Size(64, 18)
  890. Me.lblEmpresa.TabIndex = 62
  891. Me.lblEmpresa.Text = "Empresas"
  892. '
  893. 'pnlOrigenFondos
  894. '
  895. Me.pnlOrigenFondos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  896. Me.pnlOrigenFondos.Controls.Add(Me.lblOrigenFondos)
  897. Me.pnlOrigenFondos.Location = New System.Drawing.Point(3, 70)
  898. Me.pnlOrigenFondos.Name = "pnlOrigenFondos"
  899. Me.pnlOrigenFondos.Size = New System.Drawing.Size(228, 33)
  900. Me.pnlOrigenFondos.TabIndex = 162
  901. '
  902. 'lblOrigenFondos
  903. '
  904. Me.lblOrigenFondos.Anchor = System.Windows.Forms.AnchorStyles.None
  905. Me.lblOrigenFondos.AutoSize = True
  906. Me.lblOrigenFondos.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  907. Me.lblOrigenFondos.Location = New System.Drawing.Point(45, 6)
  908. Me.lblOrigenFondos.Name = "lblOrigenFondos"
  909. Me.lblOrigenFondos.Size = New System.Drawing.Size(130, 18)
  910. Me.lblOrigenFondos.TabIndex = 62
  911. Me.lblOrigenFondos.Text = "Origen de los Fondos"
  912. '
  913. 'pnlEmisor
  914. '
  915. Me.pnlEmisor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  916. Me.pnlEmisor.Controls.Add(Me.lblEmisor)
  917. Me.pnlEmisor.Location = New System.Drawing.Point(3, 138)
  918. Me.pnlEmisor.Name = "pnlEmisor"
  919. Me.pnlEmisor.Size = New System.Drawing.Size(228, 33)
  920. Me.pnlEmisor.TabIndex = 163
  921. '
  922. 'lblEmisor
  923. '
  924. Me.lblEmisor.Anchor = System.Windows.Forms.AnchorStyles.None
  925. Me.lblEmisor.AutoSize = True
  926. Me.lblEmisor.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  927. Me.lblEmisor.Location = New System.Drawing.Point(87, 6)
  928. Me.lblEmisor.Name = "lblEmisor"
  929. Me.lblEmisor.Size = New System.Drawing.Size(48, 18)
  930. Me.lblEmisor.TabIndex = 59
  931. Me.lblEmisor.Text = "Emisor"
  932. '
  933. 'pnlPlazo
  934. '
  935. Me.pnlPlazo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  936. Me.pnlPlazo.Controls.Add(Me.lblPlazo)
  937. Me.pnlPlazo.Location = New System.Drawing.Point(3, 104)
  938. Me.pnlPlazo.Name = "pnlPlazo"
  939. Me.pnlPlazo.Size = New System.Drawing.Size(228, 33)
  940. Me.pnlPlazo.TabIndex = 0
  941. '
  942. 'lblPlazo
  943. '
  944. Me.lblPlazo.Anchor = System.Windows.Forms.AnchorStyles.None
  945. Me.lblPlazo.AutoSize = True
  946. Me.lblPlazo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  947. Me.lblPlazo.Location = New System.Drawing.Point(92, 7)
  948. Me.lblPlazo.Name = "lblPlazo"
  949. Me.lblPlazo.Size = New System.Drawing.Size(38, 18)
  950. Me.lblPlazo.TabIndex = 78
  951. Me.lblPlazo.Text = "Plazo"
  952. '
  953. 'pnlCalificacionRiesgo
  954. '
  955. Me.pnlCalificacionRiesgo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  956. Me.pnlCalificacionRiesgo.Controls.Add(Me.lblCalificacionRiesgo)
  957. Me.pnlCalificacionRiesgo.Location = New System.Drawing.Point(3, 172)
  958. Me.pnlCalificacionRiesgo.Name = "pnlCalificacionRiesgo"
  959. Me.pnlCalificacionRiesgo.Size = New System.Drawing.Size(228, 33)
  960. Me.pnlCalificacionRiesgo.TabIndex = 164
  961. '
  962. 'lblCalificacionRiesgo
  963. '
  964. Me.lblCalificacionRiesgo.Anchor = System.Windows.Forms.AnchorStyles.None
  965. Me.lblCalificacionRiesgo.AutoSize = True
  966. Me.lblCalificacionRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  967. Me.lblCalificacionRiesgo.Location = New System.Drawing.Point(42, 4)
  968. Me.lblCalificacionRiesgo.Name = "lblCalificacionRiesgo"
  969. Me.lblCalificacionRiesgo.Size = New System.Drawing.Size(137, 18)
  970. Me.lblCalificacionRiesgo.TabIndex = 60
  971. Me.lblCalificacionRiesgo.Text = "Calificación de Riesgo"
  972. '
  973. 'pnlAutorizacion
  974. '
  975. Me.pnlAutorizacion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  976. Me.pnlAutorizacion.Controls.Add(Me.lblAutorizacion)
  977. Me.pnlAutorizacion.Location = New System.Drawing.Point(3, 308)
  978. Me.pnlAutorizacion.Name = "pnlAutorizacion"
  979. Me.pnlAutorizacion.Size = New System.Drawing.Size(228, 33)
  980. Me.pnlAutorizacion.TabIndex = 185
  981. '
  982. 'lblAutorizacion
  983. '
  984. Me.lblAutorizacion.Anchor = System.Windows.Forms.AnchorStyles.None
  985. Me.lblAutorizacion.AutoSize = True
  986. Me.lblAutorizacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  987. Me.lblAutorizacion.Location = New System.Drawing.Point(69, 5)
  988. Me.lblAutorizacion.Name = "lblAutorizacion"
  989. Me.lblAutorizacion.Size = New System.Drawing.Size(81, 18)
  990. Me.lblAutorizacion.TabIndex = 63
  991. Me.lblAutorizacion.Text = "Autorización"
  992. '
  993. 'pnlCalificadora
  994. '
  995. Me.pnlCalificadora.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  996. Me.pnlCalificadora.Controls.Add(Me.lblCalificadora)
  997. Me.pnlCalificadora.Location = New System.Drawing.Point(3, 206)
  998. Me.pnlCalificadora.Name = "pnlCalificadora"
  999. Me.pnlCalificadora.Size = New System.Drawing.Size(228, 33)
  1000. Me.pnlCalificadora.TabIndex = 180
  1001. '
  1002. 'lblCalificadora
  1003. '
  1004. Me.lblCalificadora.Anchor = System.Windows.Forms.AnchorStyles.None
  1005. Me.lblCalificadora.AutoSize = True
  1006. Me.lblCalificadora.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1007. Me.lblCalificadora.Location = New System.Drawing.Point(72, 6)
  1008. Me.lblCalificadora.Name = "lblCalificadora"
  1009. Me.lblCalificadora.Size = New System.Drawing.Size(78, 18)
  1010. Me.lblCalificadora.TabIndex = 61
  1011. Me.lblCalificadora.Text = "Calificadora"
  1012. '
  1013. 'pnlTipMercado
  1014. '
  1015. Me.pnlTipMercado.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1016. Me.pnlTipMercado.Controls.Add(Me.lblTipoMercado)
  1017. Me.pnlTipMercado.Location = New System.Drawing.Point(3, 376)
  1018. Me.pnlTipMercado.Name = "pnlTipMercado"
  1019. Me.pnlTipMercado.Size = New System.Drawing.Size(228, 33)
  1020. Me.pnlTipMercado.TabIndex = 184
  1021. '
  1022. 'lblTipoMercado
  1023. '
  1024. Me.lblTipoMercado.Anchor = System.Windows.Forms.AnchorStyles.None
  1025. Me.lblTipoMercado.AutoSize = True
  1026. Me.lblTipoMercado.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  1027. Me.lblTipoMercado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1028. Me.lblTipoMercado.Location = New System.Drawing.Point(67, 5)
  1029. Me.lblTipoMercado.Name = "lblTipoMercado"
  1030. Me.lblTipoMercado.Size = New System.Drawing.Size(86, 18)
  1031. Me.lblTipoMercado.TabIndex = 159
  1032. Me.lblTipoMercado.Text = "Tipo Mercado"
  1033. '
  1034. 'pnlPais
  1035. '
  1036. Me.pnlPais.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1037. Me.pnlPais.Controls.Add(Me.lblPais)
  1038. Me.pnlPais.Location = New System.Drawing.Point(3, 240)
  1039. Me.pnlPais.Name = "pnlPais"
  1040. Me.pnlPais.Size = New System.Drawing.Size(228, 33)
  1041. Me.pnlPais.TabIndex = 181
  1042. '
  1043. 'lblPais
  1044. '
  1045. Me.lblPais.Anchor = System.Windows.Forms.AnchorStyles.None
  1046. Me.lblPais.AutoSize = True
  1047. Me.lblPais.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  1048. Me.lblPais.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1049. Me.lblPais.Location = New System.Drawing.Point(91, 7)
  1050. Me.lblPais.Name = "lblPais"
  1051. Me.lblPais.Size = New System.Drawing.Size(31, 18)
  1052. Me.lblPais.TabIndex = 157
  1053. Me.lblPais.Text = "Pais"
  1054. '
  1055. 'pnlTipOper
  1056. '
  1057. Me.pnlTipOper.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1058. Me.pnlTipOper.Controls.Add(Me.lblTipoOperacion)
  1059. Me.pnlTipOper.Location = New System.Drawing.Point(3, 342)
  1060. Me.pnlTipOper.Name = "pnlTipOper"
  1061. Me.pnlTipOper.Size = New System.Drawing.Size(228, 33)
  1062. Me.pnlTipOper.TabIndex = 183
  1063. '
  1064. 'lblTipoOperacion
  1065. '
  1066. Me.lblTipoOperacion.Anchor = System.Windows.Forms.AnchorStyles.None
  1067. Me.lblTipoOperacion.AutoSize = True
  1068. Me.lblTipoOperacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1069. Me.lblTipoOperacion.Location = New System.Drawing.Point(61, 7)
  1070. Me.lblTipoOperacion.Name = "lblTipoOperacion"
  1071. Me.lblTipoOperacion.Size = New System.Drawing.Size(96, 18)
  1072. Me.lblTipoOperacion.TabIndex = 89
  1073. Me.lblTipoOperacion.Text = "Tipo Operación"
  1074. '
  1075. 'pnlEstado
  1076. '
  1077. Me.pnlEstado.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1078. Me.pnlEstado.Controls.Add(Me.lblEstado)
  1079. Me.pnlEstado.Location = New System.Drawing.Point(3, 274)
  1080. Me.pnlEstado.Name = "pnlEstado"
  1081. Me.pnlEstado.Size = New System.Drawing.Size(228, 33)
  1082. Me.pnlEstado.TabIndex = 182
  1083. '
  1084. 'lblEstado
  1085. '
  1086. Me.lblEstado.Anchor = System.Windows.Forms.AnchorStyles.None
  1087. Me.lblEstado.AutoSize = True
  1088. Me.lblEstado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1089. Me.lblEstado.Location = New System.Drawing.Point(87, 6)
  1090. Me.lblEstado.Name = "lblEstado"
  1091. Me.lblEstado.Size = New System.Drawing.Size(47, 18)
  1092. Me.lblEstado.TabIndex = 90
  1093. Me.lblEstado.Text = "Estado"
  1094. '
  1095. 'pnlCargaDatos
  1096. '
  1097. Me.pnlCargaDatos.AutoScroll = True
  1098. Me.pnlCargaDatos.Controls.Add(Me.pnlContenedor)
  1099. Me.pnlCargaDatos.Location = New System.Drawing.Point(231, 19)
  1100. Me.pnlCargaDatos.Name = "pnlCargaDatos"
  1101. Me.pnlCargaDatos.Size = New System.Drawing.Size(814, 485)
  1102. Me.pnlCargaDatos.TabIndex = 191
  1103. '
  1104. 'pnlContenedor
  1105. '
  1106. Me.pnlContenedor.BackColor = System.Drawing.Color.White
  1107. Me.pnlContenedor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1108. Me.pnlContenedor.Controls.Add(Me.Panel3)
  1109. Me.pnlContenedor.Controls.Add(Me.Panel1)
  1110. Me.pnlContenedor.Controls.Add(Me.grpTipoMercado)
  1111. Me.pnlContenedor.Controls.Add(Me.grpAutorizacion)
  1112. Me.pnlContenedor.Controls.Add(Me.grpTipoOperacion)
  1113. Me.pnlContenedor.Controls.Add(Me.grpEstadoDocumento)
  1114. Me.pnlContenedor.Controls.Add(Me.grpPais)
  1115. Me.pnlContenedor.Controls.Add(Me.grpCalificadoraRiesgo)
  1116. Me.pnlContenedor.Controls.Add(Me.grpCalificacionRiesgo)
  1117. Me.pnlContenedor.Controls.Add(Me.grpEmisor)
  1118. Me.pnlContenedor.Controls.Add(Me.grpPlazo)
  1119. Me.pnlContenedor.Controls.Add(Me.grpOrigenFondos)
  1120. Me.pnlContenedor.Controls.Add(Me.grpInstrumentos)
  1121. Me.pnlContenedor.Controls.Add(Me.grpEmpresas)
  1122. Me.pnlContenedor.Location = New System.Drawing.Point(-2, 3)
  1123. Me.pnlContenedor.Name = "pnlContenedor"
  1124. Me.pnlContenedor.Size = New System.Drawing.Size(339, 404)
  1125. Me.pnlContenedor.TabIndex = 161
  1126. Me.pnlContenedor.Visible = False
  1127. '
  1128. 'Panel3
  1129. '
  1130. Me.Panel3.Controls.Add(Me.Label3)
  1131. Me.Panel3.Controls.Add(Me.txtBuscar)
  1132. Me.Panel3.Dock = System.Windows.Forms.DockStyle.Top
  1133. Me.Panel3.Location = New System.Drawing.Point(0, 0)
  1134. Me.Panel3.Name = "Panel3"
  1135. Me.Panel3.Size = New System.Drawing.Size(335, 37)
  1136. Me.Panel3.TabIndex = 171
  1137. '
  1138. 'Label3
  1139. '
  1140. Me.Label3.AutoSize = True
  1141. Me.Label3.Location = New System.Drawing.Point(57, 10)
  1142. Me.Label3.Name = "Label3"
  1143. Me.Label3.Size = New System.Drawing.Size(40, 13)
  1144. Me.Label3.TabIndex = 1
  1145. Me.Label3.Text = "Buscar"
  1146. '
  1147. 'txtBuscar
  1148. '
  1149. Me.txtBuscar.Location = New System.Drawing.Point(107, 7)
  1150. Me.txtBuscar.Name = "txtBuscar"
  1151. Me.txtBuscar.Size = New System.Drawing.Size(171, 20)
  1152. Me.txtBuscar.TabIndex = 0
  1153. '
  1154. 'Panel1
  1155. '
  1156. Me.Panel1.Controls.Add(Me.btnCancel)
  1157. Me.Panel1.Controls.Add(Me.btnAceptar)
  1158. Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
  1159. Me.Panel1.Location = New System.Drawing.Point(0, 358)
  1160. Me.Panel1.Name = "Panel1"
  1161. Me.Panel1.Size = New System.Drawing.Size(335, 42)
  1162. Me.Panel1.TabIndex = 170
  1163. '
  1164. 'btnCancel
  1165. '
  1166. Me.btnCancel.Location = New System.Drawing.Point(195, 13)
  1167. Me.btnCancel.Name = "btnCancel"
  1168. Me.btnCancel.Size = New System.Drawing.Size(75, 23)
  1169. Me.btnCancel.TabIndex = 1
  1170. Me.btnCancel.Text = "Cancelar"
  1171. Me.btnCancel.UseVisualStyleBackColor = True
  1172. '
  1173. 'btnAceptar
  1174. '
  1175. Me.btnAceptar.Location = New System.Drawing.Point(47, 13)
  1176. Me.btnAceptar.Name = "btnAceptar"
  1177. Me.btnAceptar.Size = New System.Drawing.Size(75, 23)
  1178. Me.btnAceptar.TabIndex = 0
  1179. Me.btnAceptar.Text = "Aceptar"
  1180. Me.btnAceptar.UseVisualStyleBackColor = True
  1181. '
  1182. 'grpTipoMercado
  1183. '
  1184. Me.grpTipoMercado.Controls.Add(Me.flpTipoMercado)
  1185. Me.grpTipoMercado.Location = New System.Drawing.Point(540, 492)
  1186. Me.grpTipoMercado.Name = "grpTipoMercado"
  1187. Me.grpTipoMercado.Size = New System.Drawing.Size(216, 131)
  1188. Me.grpTipoMercado.TabIndex = 167
  1189. Me.grpTipoMercado.TabStop = False
  1190. Me.grpTipoMercado.Text = "Tipo de Mercado"
  1191. Me.grpTipoMercado.Visible = False
  1192. '
  1193. 'flpTipoMercado
  1194. '
  1195. Me.flpTipoMercado.AutoScroll = True
  1196. Me.flpTipoMercado.Location = New System.Drawing.Point(0, 19)
  1197. Me.flpTipoMercado.Name = "flpTipoMercado"
  1198. Me.flpTipoMercado.Size = New System.Drawing.Size(216, 106)
  1199. Me.flpTipoMercado.TabIndex = 171
  1200. '
  1201. 'grpAutorizacion
  1202. '
  1203. Me.grpAutorizacion.Controls.Add(Me.flpAutorizacion)
  1204. Me.grpAutorizacion.Location = New System.Drawing.Point(540, 344)
  1205. Me.grpAutorizacion.Name = "grpAutorizacion"
  1206. Me.grpAutorizacion.Size = New System.Drawing.Size(216, 131)
  1207. Me.grpAutorizacion.TabIndex = 169
  1208. Me.grpAutorizacion.TabStop = False
  1209. Me.grpAutorizacion.Text = "Autorizacion"
  1210. Me.grpAutorizacion.Visible = False
  1211. '
  1212. 'flpAutorizacion
  1213. '
  1214. Me.flpAutorizacion.AutoScroll = True
  1215. Me.flpAutorizacion.Location = New System.Drawing.Point(0, 22)
  1216. Me.flpAutorizacion.Name = "flpAutorizacion"
  1217. Me.flpAutorizacion.Size = New System.Drawing.Size(213, 109)
  1218. Me.flpAutorizacion.TabIndex = 171
  1219. '
  1220. 'grpTipoOperacion
  1221. '
  1222. Me.grpTipoOperacion.Controls.Add(Me.flpTipoOperacion)
  1223. Me.grpTipoOperacion.Location = New System.Drawing.Point(540, 172)
  1224. Me.grpTipoOperacion.Name = "grpTipoOperacion"
  1225. Me.grpTipoOperacion.Size = New System.Drawing.Size(216, 131)
  1226. Me.grpTipoOperacion.TabIndex = 168
  1227. Me.grpTipoOperacion.TabStop = False
  1228. Me.grpTipoOperacion.Text = "Tipo de Operacion"
  1229. Me.grpTipoOperacion.Visible = False
  1230. '
  1231. 'flpTipoOperacion
  1232. '
  1233. Me.flpTipoOperacion.AutoScroll = True
  1234. Me.flpTipoOperacion.Location = New System.Drawing.Point(0, 19)
  1235. Me.flpTipoOperacion.Name = "flpTipoOperacion"
  1236. Me.flpTipoOperacion.Size = New System.Drawing.Size(216, 112)
  1237. Me.flpTipoOperacion.TabIndex = 170
  1238. '
  1239. 'grpEstadoDocumento
  1240. '
  1241. Me.grpEstadoDocumento.Controls.Add(Me.flpEstadoDocumento)
  1242. Me.grpEstadoDocumento.Location = New System.Drawing.Point(540, 14)
  1243. Me.grpEstadoDocumento.Name = "grpEstadoDocumento"
  1244. Me.grpEstadoDocumento.Size = New System.Drawing.Size(216, 131)
  1245. Me.grpEstadoDocumento.TabIndex = 167
  1246. Me.grpEstadoDocumento.TabStop = False
  1247. Me.grpEstadoDocumento.Text = "Estado del Documento"
  1248. Me.grpEstadoDocumento.Visible = False
  1249. '
  1250. 'flpEstadoDocumento
  1251. '
  1252. Me.flpEstadoDocumento.AutoScroll = True
  1253. Me.flpEstadoDocumento.Location = New System.Drawing.Point(0, 19)
  1254. Me.flpEstadoDocumento.Name = "flpEstadoDocumento"
  1255. Me.flpEstadoDocumento.Size = New System.Drawing.Size(210, 111)
  1256. Me.flpEstadoDocumento.TabIndex = 170
  1257. '
  1258. 'grpPais
  1259. '
  1260. Me.grpPais.Controls.Add(Me.flpPais)
  1261. Me.grpPais.Location = New System.Drawing.Point(276, 492)
  1262. Me.grpPais.Name = "grpPais"
  1263. Me.grpPais.Size = New System.Drawing.Size(216, 131)
  1264. Me.grpPais.TabIndex = 166
  1265. Me.grpPais.TabStop = False
  1266. Me.grpPais.Text = "Pais"
  1267. Me.grpPais.Visible = False
  1268. '
  1269. 'flpPais
  1270. '
  1271. Me.flpPais.AutoScroll = True
  1272. Me.flpPais.Location = New System.Drawing.Point(0, 19)
  1273. Me.flpPais.Name = "flpPais"
  1274. Me.flpPais.Size = New System.Drawing.Size(216, 112)
  1275. Me.flpPais.TabIndex = 171
  1276. '
  1277. 'grpCalificadoraRiesgo
  1278. '
  1279. Me.grpCalificadoraRiesgo.Controls.Add(Me.flpCalificadoraRiesgo)
  1280. Me.grpCalificadoraRiesgo.Location = New System.Drawing.Point(276, 344)
  1281. Me.grpCalificadoraRiesgo.Name = "grpCalificadoraRiesgo"
  1282. Me.grpCalificadoraRiesgo.Size = New System.Drawing.Size(216, 131)
  1283. Me.grpCalificadoraRiesgo.TabIndex = 165
  1284. Me.grpCalificadoraRiesgo.TabStop = False
  1285. Me.grpCalificadoraRiesgo.Text = "Calificadora de Riesgo"
  1286. Me.grpCalificadoraRiesgo.Visible = False
  1287. '
  1288. 'flpCalificadoraRiesgo
  1289. '
  1290. Me.flpCalificadoraRiesgo.AutoScroll = True
  1291. Me.flpCalificadoraRiesgo.Location = New System.Drawing.Point(0, 22)
  1292. Me.flpCalificadoraRiesgo.Name = "flpCalificadoraRiesgo"
  1293. Me.flpCalificadoraRiesgo.Size = New System.Drawing.Size(216, 108)
  1294. Me.flpCalificadoraRiesgo.TabIndex = 171
  1295. '
  1296. 'grpCalificacionRiesgo
  1297. '
  1298. Me.grpCalificacionRiesgo.Controls.Add(Me.flpCalificacionRiesgo)
  1299. Me.grpCalificacionRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.System
  1300. Me.grpCalificacionRiesgo.Location = New System.Drawing.Point(276, 172)
  1301. Me.grpCalificacionRiesgo.Name = "grpCalificacionRiesgo"
  1302. Me.grpCalificacionRiesgo.Size = New System.Drawing.Size(216, 131)
  1303. Me.grpCalificacionRiesgo.TabIndex = 164
  1304. Me.grpCalificacionRiesgo.TabStop = False
  1305. Me.grpCalificacionRiesgo.Text = "Calificacion de Riesgo"
  1306. Me.grpCalificacionRiesgo.Visible = False
  1307. '
  1308. 'flpCalificacionRiesgo
  1309. '
  1310. Me.flpCalificacionRiesgo.AutoScroll = True
  1311. Me.flpCalificacionRiesgo.Location = New System.Drawing.Point(0, 19)
  1312. Me.flpCalificacionRiesgo.Name = "flpCalificacionRiesgo"
  1313. Me.flpCalificacionRiesgo.Size = New System.Drawing.Size(216, 112)
  1314. Me.flpCalificacionRiesgo.TabIndex = 170
  1315. '
  1316. 'grpEmisor
  1317. '
  1318. Me.grpEmisor.Controls.Add(Me.flpEmisor)
  1319. Me.grpEmisor.Location = New System.Drawing.Point(276, 14)
  1320. Me.grpEmisor.Name = "grpEmisor"
  1321. Me.grpEmisor.Size = New System.Drawing.Size(216, 131)
  1322. Me.grpEmisor.TabIndex = 163
  1323. Me.grpEmisor.TabStop = False
  1324. Me.grpEmisor.Text = "Emisor"
  1325. Me.grpEmisor.Visible = False
  1326. '
  1327. 'flpEmisor
  1328. '
  1329. Me.flpEmisor.AutoScroll = True
  1330. Me.flpEmisor.Location = New System.Drawing.Point(0, 19)
  1331. Me.flpEmisor.Name = "flpEmisor"
  1332. Me.flpEmisor.Size = New System.Drawing.Size(216, 111)
  1333. Me.flpEmisor.TabIndex = 170
  1334. '
  1335. 'grpPlazo
  1336. '
  1337. Me.grpPlazo.Controls.Add(Me.flpPlazo)
  1338. Me.grpPlazo.Location = New System.Drawing.Point(17, 492)
  1339. Me.grpPlazo.Name = "grpPlazo"
  1340. Me.grpPlazo.Size = New System.Drawing.Size(216, 131)
  1341. Me.grpPlazo.TabIndex = 162
  1342. Me.grpPlazo.TabStop = False
  1343. Me.grpPlazo.Text = "Plazo"
  1344. Me.grpPlazo.Visible = False
  1345. '
  1346. 'flpPlazo
  1347. '
  1348. Me.flpPlazo.AutoScroll = True
  1349. Me.flpPlazo.Location = New System.Drawing.Point(0, 19)
  1350. Me.flpPlazo.Name = "flpPlazo"
  1351. Me.flpPlazo.Size = New System.Drawing.Size(216, 109)
  1352. Me.flpPlazo.TabIndex = 171
  1353. '
  1354. 'grpOrigenFondos
  1355. '
  1356. Me.grpOrigenFondos.Controls.Add(Me.flpOrigenFondos)
  1357. Me.grpOrigenFondos.Location = New System.Drawing.Point(17, 335)
  1358. Me.grpOrigenFondos.Name = "grpOrigenFondos"
  1359. Me.grpOrigenFondos.Size = New System.Drawing.Size(216, 131)
  1360. Me.grpOrigenFondos.TabIndex = 161
  1361. Me.grpOrigenFondos.TabStop = False
  1362. Me.grpOrigenFondos.Text = "Origen de Fondos"
  1363. Me.grpOrigenFondos.Visible = False
  1364. '
  1365. 'flpOrigenFondos
  1366. '
  1367. Me.flpOrigenFondos.AutoScroll = True
  1368. Me.flpOrigenFondos.Location = New System.Drawing.Point(0, 19)
  1369. Me.flpOrigenFondos.Name = "flpOrigenFondos"
  1370. Me.flpOrigenFondos.Size = New System.Drawing.Size(216, 112)
  1371. Me.flpOrigenFondos.TabIndex = 170
  1372. '
  1373. 'grpInstrumentos
  1374. '
  1375. Me.grpInstrumentos.Controls.Add(Me.flpInstrumentos)
  1376. Me.grpInstrumentos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  1377. Me.grpInstrumentos.Location = New System.Drawing.Point(17, 172)
  1378. Me.grpInstrumentos.Name = "grpInstrumentos"
  1379. Me.grpInstrumentos.Size = New System.Drawing.Size(216, 131)
  1380. Me.grpInstrumentos.TabIndex = 160
  1381. Me.grpInstrumentos.TabStop = False
  1382. Me.grpInstrumentos.Text = "Instrumentos"
  1383. Me.grpInstrumentos.Visible = False
  1384. '
  1385. 'flpInstrumentos
  1386. '
  1387. Me.flpInstrumentos.AutoScroll = True
  1388. Me.flpInstrumentos.Location = New System.Drawing.Point(0, 19)
  1389. Me.flpInstrumentos.Name = "flpInstrumentos"
  1390. Me.flpInstrumentos.Size = New System.Drawing.Size(216, 112)
  1391. Me.flpInstrumentos.TabIndex = 170
  1392. '
  1393. 'grpEmpresas
  1394. '
  1395. Me.grpEmpresas.Controls.Add(Me.flpEmpresas)
  1396. Me.grpEmpresas.Location = New System.Drawing.Point(17, 14)
  1397. Me.grpEmpresas.Name = "grpEmpresas"
  1398. Me.grpEmpresas.Size = New System.Drawing.Size(216, 131)
  1399. Me.grpEmpresas.TabIndex = 159
  1400. Me.grpEmpresas.TabStop = False
  1401. Me.grpEmpresas.Text = "Empresas"
  1402. Me.grpEmpresas.Visible = False
  1403. '
  1404. 'flpEmpresas
  1405. '
  1406. Me.flpEmpresas.AutoScroll = True
  1407. Me.flpEmpresas.Location = New System.Drawing.Point(0, 19)
  1408. Me.flpEmpresas.Name = "flpEmpresas"
  1409. Me.flpEmpresas.Size = New System.Drawing.Size(216, 112)
  1410. Me.flpEmpresas.TabIndex = 2
  1411. '
  1412. 'cboPaises
  1413. '
  1414. Me.cboPaises.BackColor = System.Drawing.SystemColors.Menu
  1415. Me.cboPaises.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodPais", True))
  1416. Me.cboPaises.DisplayMember = "Nombre"
  1417. Me.cboPaises.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1418. Me.cboPaises.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  1419. Me.cboPaises.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  1420. Me.cboPaises.ForeColor = System.Drawing.SystemColors.InfoText
  1421. Me.cboPaises.FormattingEnabled = True
  1422. Me.cboPaises.Location = New System.Drawing.Point(532, 199)
  1423. Me.cboPaises.Name = "cboPaises"
  1424. Me.cboPaises.Size = New System.Drawing.Size(183, 26)
  1425. Me.cboPaises.TabIndex = 156
  1426. Me.cboPaises.ValueMember = "Codigo"
  1427. '
  1428. 'GroupBox2
  1429. '
  1430. Me.GroupBox2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1431. Or System.Windows.Forms.AnchorStyles.Left) _
  1432. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1433. Me.GroupBox2.Controls.Add(Me.lblCodigoInversionCM)
  1434. Me.GroupBox2.Controls.Add(Me.cboPlazosFactor)
  1435. Me.GroupBox2.Controls.Add(Me.txtCodigoInversionCM)
  1436. Me.GroupBox2.Controls.Add(Me.lblAsunto)
  1437. Me.GroupBox2.Controls.Add(Me.lblNombre)
  1438. Me.GroupBox2.Controls.Add(Me.txtNombre)
  1439. Me.GroupBox2.Controls.Add(Me.lblCodigoInversion)
  1440. Me.GroupBox2.Controls.Add(Me.txtAsunto)
  1441. Me.GroupBox2.Controls.Add(Me.txtCodigoInversion)
  1442. Me.GroupBox2.Controls.Add(Me.dtpFechaDocumento)
  1443. Me.GroupBox2.Controls.Add(Me.lblFecha)
  1444. Me.GroupBox2.Location = New System.Drawing.Point(3, 6)
  1445. Me.GroupBox2.Name = "GroupBox2"
  1446. Me.GroupBox2.Size = New System.Drawing.Size(1101, 172)
  1447. Me.GroupBox2.TabIndex = 178
  1448. Me.GroupBox2.TabStop = False
  1449. Me.GroupBox2.Text = "Montos"
  1450. '
  1451. 'lblCodigoInversionCM
  1452. '
  1453. Me.lblCodigoInversionCM.AutoSize = True
  1454. Me.lblCodigoInversionCM.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1455. Me.lblCodigoInversionCM.Location = New System.Drawing.Point(429, 69)
  1456. Me.lblCodigoInversionCM.Name = "lblCodigoInversionCM"
  1457. Me.lblCodigoInversionCM.Size = New System.Drawing.Size(70, 18)
  1458. Me.lblCodigoInversionCM.TabIndex = 178
  1459. Me.lblCodigoInversionCM.Text = "Código CM"
  1460. Me.lblCodigoInversionCM.Visible = False
  1461. '
  1462. 'txtCodigoInversionCM
  1463. '
  1464. Me.txtCodigoInversionCM.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "CodInv", True))
  1465. Me.txtCodigoInversionCM.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  1466. Me.txtCodigoInversionCM.Location = New System.Drawing.Point(513, 69)
  1467. Me.txtCodigoInversionCM.Name = "txtCodigoInversionCM"
  1468. Me.txtCodigoInversionCM.ReadOnly = True
  1469. Me.txtCodigoInversionCM.Size = New System.Drawing.Size(182, 23)
  1470. Me.txtCodigoInversionCM.TabIndex = 177
  1471. Me.txtCodigoInversionCM.Visible = False
  1472. '
  1473. 'TabCampos
  1474. '
  1475. Me.TabCampos.Controls.Add(Me.TbIngresarModificar)
  1476. Me.TabCampos.Controls.Add(Me.TbBuscar)
  1477. Me.TabCampos.Location = New System.Drawing.Point(3, 120)
  1478. Me.TabCampos.Name = "TabCampos"
  1479. Me.TabCampos.SelectedIndex = 0
  1480. Me.TabCampos.Size = New System.Drawing.Size(1115, 652)
  1481. Me.TabCampos.TabIndex = 179
  1482. '
  1483. 'TbIngresarModificar
  1484. '
  1485. Me.TbIngresarModificar.BackColor = System.Drawing.Color.WhiteSmoke
  1486. Me.TbIngresarModificar.Controls.Add(Me.btnDetalleIF)
  1487. Me.TbIngresarModificar.Controls.Add(Me.grbInversión)
  1488. Me.TbIngresarModificar.Controls.Add(Me.txtJustificacion)
  1489. Me.TbIngresarModificar.Controls.Add(Me.Label8)
  1490. Me.TbIngresarModificar.Controls.Add(Me.txtComentarios)
  1491. Me.TbIngresarModificar.Controls.Add(Me.Label9)
  1492. Me.TbIngresarModificar.Controls.Add(Me.cboCalificadoraDeRiesgo)
  1493. Me.TbIngresarModificar.Controls.Add(Me.cboTasa)
  1494. Me.TbIngresarModificar.Controls.Add(Me.Label18)
  1495. Me.TbIngresarModificar.Controls.Add(Me.cboAutorizacion)
  1496. Me.TbIngresarModificar.Controls.Add(Me.cboOrigenDeFondos)
  1497. Me.TbIngresarModificar.Controls.Add(Me.cboRenta)
  1498. Me.TbIngresarModificar.Controls.Add(Me.cboPaises)
  1499. Me.TbIngresarModificar.Controls.Add(Me.cboPeriodicidad)
  1500. Me.TbIngresarModificar.Controls.Add(Me.cboCalificacionDeRiesgo)
  1501. Me.TbIngresarModificar.Controls.Add(Me.cboTipoMercado)
  1502. Me.TbIngresarModificar.Controls.Add(Me.cboInstrumentosFinancieros)
  1503. Me.TbIngresarModificar.Controls.Add(Me.cboTipoOperacion)
  1504. Me.TbIngresarModificar.Controls.Add(Me.cboEstadoDocumento)
  1505. Me.TbIngresarModificar.Controls.Add(Me.cboEmisores)
  1506. Me.TbIngresarModificar.Controls.Add(Me.cboEmpresas)
  1507. Me.TbIngresarModificar.Controls.Add(Me.Label17)
  1508. Me.TbIngresarModificar.Controls.Add(Me.Label16)
  1509. Me.TbIngresarModificar.Controls.Add(Me.Label15)
  1510. Me.TbIngresarModificar.Controls.Add(Me.Label14)
  1511. Me.TbIngresarModificar.Controls.Add(Me.Label13)
  1512. Me.TbIngresarModificar.Controls.Add(Me.Label12)
  1513. Me.TbIngresarModificar.Controls.Add(Me.Label11)
  1514. Me.TbIngresarModificar.Controls.Add(Me.Label10)
  1515. Me.TbIngresarModificar.Controls.Add(Me.Label7)
  1516. Me.TbIngresarModificar.Controls.Add(Me.Label6)
  1517. Me.TbIngresarModificar.Controls.Add(Me.Label5)
  1518. Me.TbIngresarModificar.Controls.Add(Me.Label4)
  1519. Me.TbIngresarModificar.Controls.Add(Me.Label2)
  1520. Me.TbIngresarModificar.Controls.Add(Me.GroupBox2)
  1521. Me.TbIngresarModificar.Location = New System.Drawing.Point(4, 22)
  1522. Me.TbIngresarModificar.Name = "TbIngresarModificar"
  1523. Me.TbIngresarModificar.Padding = New System.Windows.Forms.Padding(3)
  1524. Me.TbIngresarModificar.Size = New System.Drawing.Size(1107, 626)
  1525. Me.TbIngresarModificar.TabIndex = 0
  1526. Me.TbIngresarModificar.Text = "Ingresar o Modificar"
  1527. '
  1528. 'btnDetalleIF
  1529. '
  1530. Me.btnDetalleIF.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
  1531. Me.btnDetalleIF.ForeColor = System.Drawing.SystemColors.ControlDark
  1532. Me.btnDetalleIF.Location = New System.Drawing.Point(319, 244)
  1533. Me.btnDetalleIF.Name = "btnDetalleIF"
  1534. Me.btnDetalleIF.Size = New System.Drawing.Size(34, 26)
  1535. Me.btnDetalleIF.TabIndex = 193
  1536. Me.btnDetalleIF.Text = "..."
  1537. Me.btnDetalleIF.UseVisualStyleBackColor = True
  1538. '
  1539. 'Label18
  1540. '
  1541. Me.Label18.AutoSize = True
  1542. Me.Label18.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1543. Me.Label18.Location = New System.Drawing.Point(748, 252)
  1544. Me.Label18.Name = "Label18"
  1545. Me.Label18.Size = New System.Drawing.Size(63, 18)
  1546. Me.Label18.TabIndex = 192
  1547. Me.Label18.Text = "Tipo Tasa"
  1548. '
  1549. 'Label17
  1550. '
  1551. Me.Label17.AutoSize = True
  1552. Me.Label17.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1553. Me.Label17.Location = New System.Drawing.Point(748, 343)
  1554. Me.Label17.Name = "Label17"
  1555. Me.Label17.Size = New System.Drawing.Size(81, 18)
  1556. Me.Label17.TabIndex = 191
  1557. Me.Label17.Text = "Autorización"
  1558. '
  1559. 'Label16
  1560. '
  1561. Me.Label16.AutoSize = True
  1562. Me.Label16.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1563. Me.Label16.Location = New System.Drawing.Point(748, 297)
  1564. Me.Label16.Name = "Label16"
  1565. Me.Label16.Size = New System.Drawing.Size(117, 18)
  1566. Me.Label16.TabIndex = 190
  1567. Me.Label16.Text = "Orígenes de Fondo"
  1568. '
  1569. 'Label15
  1570. '
  1571. Me.Label15.AutoSize = True
  1572. Me.Label15.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1573. Me.Label15.Location = New System.Drawing.Point(389, 252)
  1574. Me.Label15.Name = "Label15"
  1575. Me.Label15.Size = New System.Drawing.Size(47, 18)
  1576. Me.Label15.TabIndex = 189
  1577. Me.Label15.Text = "Estado"
  1578. '
  1579. 'Label14
  1580. '
  1581. Me.Label14.AutoSize = True
  1582. Me.Label14.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1583. Me.Label14.Location = New System.Drawing.Point(748, 202)
  1584. Me.Label14.Name = "Label14"
  1585. Me.Label14.Size = New System.Drawing.Size(139, 18)
  1586. Me.Label14.TabIndex = 188
  1587. Me.Label14.Text = "Calificadora de Riesgo"
  1588. '
  1589. 'Label13
  1590. '
  1591. Me.Label13.AutoSize = True
  1592. Me.Label13.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1593. Me.Label13.Location = New System.Drawing.Point(389, 391)
  1594. Me.Label13.Name = "Label13"
  1595. Me.Label13.Size = New System.Drawing.Size(112, 18)
  1596. Me.Label13.TabIndex = 187
  1597. Me.Label13.Text = "Tipo de operación"
  1598. '
  1599. 'Label12
  1600. '
  1601. Me.Label12.AutoSize = True
  1602. Me.Label12.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1603. Me.Label12.Location = New System.Drawing.Point(390, 346)
  1604. Me.Label12.Name = "Label12"
  1605. Me.Label12.Size = New System.Drawing.Size(70, 18)
  1606. Me.Label12.TabIndex = 186
  1607. Me.Label12.Text = "Tipo Renta"
  1608. '
  1609. 'Label11
  1610. '
  1611. Me.Label11.AutoSize = True
  1612. Me.Label11.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1613. Me.Label11.Location = New System.Drawing.Point(389, 297)
  1614. Me.Label11.Name = "Label11"
  1615. Me.Label11.Size = New System.Drawing.Size(79, 18)
  1616. Me.Label11.TabIndex = 185
  1617. Me.Label11.Text = "Periodicidad"
  1618. '
  1619. 'Label10
  1620. '
  1621. Me.Label10.AutoSize = True
  1622. Me.Label10.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1623. Me.Label10.Location = New System.Drawing.Point(389, 202)
  1624. Me.Label10.Name = "Label10"
  1625. Me.Label10.Size = New System.Drawing.Size(44, 18)
  1626. Me.Label10.TabIndex = 184
  1627. Me.Label10.Text = "Países"
  1628. '
  1629. 'Label7
  1630. '
  1631. Me.Label7.AutoSize = True
  1632. Me.Label7.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1633. Me.Label7.Location = New System.Drawing.Point(23, 397)
  1634. Me.Label7.Name = "Label7"
  1635. Me.Label7.Size = New System.Drawing.Size(137, 18)
  1636. Me.Label7.TabIndex = 183
  1637. Me.Label7.Text = "Calificacion de Riesgo"
  1638. '
  1639. 'Label6
  1640. '
  1641. Me.Label6.AutoSize = True
  1642. Me.Label6.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1643. Me.Label6.Location = New System.Drawing.Point(23, 247)
  1644. Me.Label6.Name = "Label6"
  1645. Me.Label6.Size = New System.Drawing.Size(94, 18)
  1646. Me.Label6.TabIndex = 182
  1647. Me.Label6.Text = "Instrumentos *"
  1648. '
  1649. 'Label5
  1650. '
  1651. Me.Label5.AutoSize = True
  1652. Me.Label5.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1653. Me.Label5.Location = New System.Drawing.Point(23, 297)
  1654. Me.Label5.Name = "Label5"
  1655. Me.Label5.Size = New System.Drawing.Size(113, 18)
  1656. Me.Label5.TabIndex = 181
  1657. Me.Label5.Text = "Tipo de Mercado *"
  1658. '
  1659. 'Label4
  1660. '
  1661. Me.Label4.AutoSize = True
  1662. Me.Label4.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1663. Me.Label4.Location = New System.Drawing.Point(23, 343)
  1664. Me.Label4.Name = "Label4"
  1665. Me.Label4.Size = New System.Drawing.Size(61, 18)
  1666. Me.Label4.TabIndex = 180
  1667. Me.Label4.Text = "Emisores"
  1668. '
  1669. 'Label2
  1670. '
  1671. Me.Label2.AutoSize = True
  1672. Me.Label2.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1673. Me.Label2.Location = New System.Drawing.Point(23, 202)
  1674. Me.Label2.Name = "Label2"
  1675. Me.Label2.Size = New System.Drawing.Size(73, 18)
  1676. Me.Label2.TabIndex = 179
  1677. Me.Label2.Text = "Empresas *"
  1678. '
  1679. 'TbBuscar
  1680. '
  1681. Me.TbBuscar.Controls.Add(Me.GroupBox1)
  1682. Me.TbBuscar.Location = New System.Drawing.Point(4, 22)
  1683. Me.TbBuscar.Name = "TbBuscar"
  1684. Me.TbBuscar.Padding = New System.Windows.Forms.Padding(3)
  1685. Me.TbBuscar.Size = New System.Drawing.Size(1107, 626)
  1686. Me.TbBuscar.TabIndex = 1
  1687. Me.TbBuscar.Text = "Buscar"
  1688. Me.TbBuscar.UseVisualStyleBackColor = True
  1689. '
  1690. 'BottomToolStripPanel
  1691. '
  1692. Me.BottomToolStripPanel.Location = New System.Drawing.Point(0, 0)
  1693. Me.BottomToolStripPanel.Name = "BottomToolStripPanel"
  1694. Me.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
  1695. Me.BottomToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
  1696. Me.BottomToolStripPanel.Size = New System.Drawing.Size(0, 0)
  1697. '
  1698. 'TopToolStripPanel
  1699. '
  1700. Me.TopToolStripPanel.Location = New System.Drawing.Point(0, 0)
  1701. Me.TopToolStripPanel.Name = "TopToolStripPanel"
  1702. Me.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
  1703. Me.TopToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
  1704. Me.TopToolStripPanel.Size = New System.Drawing.Size(0, 0)
  1705. '
  1706. 'RightToolStripPanel
  1707. '
  1708. Me.RightToolStripPanel.Location = New System.Drawing.Point(0, 0)
  1709. Me.RightToolStripPanel.Name = "RightToolStripPanel"
  1710. Me.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
  1711. Me.RightToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
  1712. Me.RightToolStripPanel.Size = New System.Drawing.Size(0, 0)
  1713. '
  1714. 'LeftToolStripPanel
  1715. '
  1716. Me.LeftToolStripPanel.Location = New System.Drawing.Point(0, 0)
  1717. Me.LeftToolStripPanel.Name = "LeftToolStripPanel"
  1718. Me.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
  1719. Me.LeftToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
  1720. Me.LeftToolStripPanel.Size = New System.Drawing.Size(0, 0)
  1721. '
  1722. 'ContentPanel
  1723. '
  1724. Me.ContentPanel.Size = New System.Drawing.Size(100, 125)
  1725. '
  1726. 'InstrumentoToolStripMenuItem
  1727. '
  1728. Me.InstrumentoToolStripMenuItem.Name = "InstrumentoToolStripMenuItem"
  1729. Me.InstrumentoToolStripMenuItem.Size = New System.Drawing.Size(85, 19)
  1730. Me.InstrumentoToolStripMenuItem.Text = "Instrumento"
  1731. '
  1732. 'lblCambiarRev
  1733. '
  1734. Me.lblCambiarRev.AutoSize = True
  1735. Me.lblCambiarRev.Location = New System.Drawing.Point(1, 5)
  1736. Me.lblCambiarRev.Name = "lblCambiarRev"
  1737. Me.lblCambiarRev.Size = New System.Drawing.Size(89, 13)
  1738. Me.lblCambiarRev.TabIndex = 181
  1739. Me.lblCambiarRev.Text = "Cambiar Revisión"
  1740. '
  1741. 'pnlCambiarRev
  1742. '
  1743. Me.pnlCambiarRev.Anchor = System.Windows.Forms.AnchorStyles.None
  1744. Me.pnlCambiarRev.BackColor = System.Drawing.Color.Transparent
  1745. Me.pnlCambiarRev.Controls.Add(Me.btnCambiarRev)
  1746. Me.pnlCambiarRev.Controls.Add(Me.lblCambiarRev)
  1747. Me.pnlCambiarRev.Location = New System.Drawing.Point(28, 19)
  1748. Me.pnlCambiarRev.Name = "pnlCambiarRev"
  1749. Me.pnlCambiarRev.Size = New System.Drawing.Size(93, 72)
  1750. Me.pnlCambiarRev.TabIndex = 182
  1751. Me.pnlCambiarRev.Visible = False
  1752. '
  1753. 'btnCambiarRev
  1754. '
  1755. Me.btnCambiarRev.BackgroundImage = Global.Inversiones.My.Resources.Resources.Revisión
  1756. Me.btnCambiarRev.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1757. Me.btnCambiarRev.Location = New System.Drawing.Point(22, 20)
  1758. Me.btnCambiarRev.Name = "btnCambiarRev"
  1759. Me.btnCambiarRev.Size = New System.Drawing.Size(48, 40)
  1760. Me.btnCambiarRev.TabIndex = 180
  1761. Me.btnCambiarRev.UseVisualStyleBackColor = True
  1762. '
  1763. 'pnlCambiarApro
  1764. '
  1765. Me.pnlCambiarApro.Anchor = System.Windows.Forms.AnchorStyles.None
  1766. Me.pnlCambiarApro.BackColor = System.Drawing.Color.Transparent
  1767. Me.pnlCambiarApro.Controls.Add(Me.btnCambiarApro)
  1768. Me.pnlCambiarApro.Controls.Add(Me.lblCambiarApro)
  1769. Me.pnlCambiarApro.Location = New System.Drawing.Point(176, 19)
  1770. Me.pnlCambiarApro.Name = "pnlCambiarApro"
  1771. Me.pnlCambiarApro.Size = New System.Drawing.Size(97, 72)
  1772. Me.pnlCambiarApro.TabIndex = 184
  1773. Me.pnlCambiarApro.Visible = False
  1774. '
  1775. 'btnCambiarApro
  1776. '
  1777. Me.btnCambiarApro.BackgroundImage = Global.Inversiones.My.Resources.Resources.Aprobado
  1778. Me.btnCambiarApro.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1779. Me.btnCambiarApro.Location = New System.Drawing.Point(25, 21)
  1780. Me.btnCambiarApro.Name = "btnCambiarApro"
  1781. Me.btnCambiarApro.Size = New System.Drawing.Size(48, 40)
  1782. Me.btnCambiarApro.TabIndex = 180
  1783. Me.btnCambiarApro.UseVisualStyleBackColor = True
  1784. '
  1785. 'lblCambiarApro
  1786. '
  1787. Me.lblCambiarApro.AutoSize = True
  1788. Me.lblCambiarApro.Location = New System.Drawing.Point(1, 5)
  1789. Me.lblCambiarApro.Name = "lblCambiarApro"
  1790. Me.lblCambiarApro.Size = New System.Drawing.Size(94, 13)
  1791. Me.lblCambiarApro.TabIndex = 181
  1792. Me.lblCambiarApro.Text = "Cambiar Aprobado"
  1793. '
  1794. 'pnlCambiarRec
  1795. '
  1796. Me.pnlCambiarRec.Anchor = System.Windows.Forms.AnchorStyles.None
  1797. Me.pnlCambiarRec.BackColor = System.Drawing.Color.Transparent
  1798. Me.pnlCambiarRec.Controls.Add(Me.btnCambiarRec)
  1799. Me.pnlCambiarRec.Controls.Add(Me.lblCambiarRec)
  1800. Me.pnlCambiarRec.Location = New System.Drawing.Point(322, 19)
  1801. Me.pnlCambiarRec.Name = "pnlCambiarRec"
  1802. Me.pnlCambiarRec.Size = New System.Drawing.Size(107, 72)
  1803. Me.pnlCambiarRec.TabIndex = 185
  1804. Me.pnlCambiarRec.Visible = False
  1805. '
  1806. 'btnCambiarRec
  1807. '
  1808. Me.btnCambiarRec.BackgroundImage = Global.Inversiones.My.Resources.Resources.Rechazado
  1809. Me.btnCambiarRec.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1810. Me.btnCambiarRec.Location = New System.Drawing.Point(29, 21)
  1811. Me.btnCambiarRec.Name = "btnCambiarRec"
  1812. Me.btnCambiarRec.Size = New System.Drawing.Size(48, 40)
  1813. Me.btnCambiarRec.TabIndex = 180
  1814. Me.btnCambiarRec.UseVisualStyleBackColor = True
  1815. '
  1816. 'lblCambiarRec
  1817. '
  1818. Me.lblCambiarRec.AutoSize = True
  1819. Me.lblCambiarRec.ForeColor = System.Drawing.Color.Black
  1820. Me.lblCambiarRec.Location = New System.Drawing.Point(1, 5)
  1821. Me.lblCambiarRec.Name = "lblCambiarRec"
  1822. Me.lblCambiarRec.Size = New System.Drawing.Size(103, 13)
  1823. Me.lblCambiarRec.TabIndex = 181
  1824. Me.lblCambiarRec.Text = "Cambiar Rechazado"
  1825. '
  1826. 'PIN0TableAdapter3
  1827. '
  1828. Me.PIN0TableAdapter3.ClearBeforeFill = True
  1829. '
  1830. 'TableAdapterManager
  1831. '
  1832. Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
  1833. Me.TableAdapterManager.PIN0TableAdapter = Me.PIN0TableAdapter3
  1834. Me.TableAdapterManager.UpdateOrder = Inversiones.InversionesDEVDataSet5TableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
  1835. '
  1836. 'TableLayoutPanel3
  1837. '
  1838. Me.TableLayoutPanel3.Anchor = System.Windows.Forms.AnchorStyles.None
  1839. Me.TableLayoutPanel3.BackColor = System.Drawing.Color.WhiteSmoke
  1840. Me.TableLayoutPanel3.ColumnCount = 4
  1841. Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  1842. Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  1843. Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 151.0!))
  1844. Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 101.0!))
  1845. Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarRec, 2, 0)
  1846. Me.TableLayoutPanel3.Controls.Add(Me.chkUsuario, 3, 0)
  1847. Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarRev, 0, 0)
  1848. Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarApro, 1, 0)
  1849. Me.TableLayoutPanel3.Location = New System.Drawing.Point(232, 3)
  1850. Me.TableLayoutPanel3.Name = "TableLayoutPanel3"
  1851. Me.TableLayoutPanel3.RowCount = 1
  1852. Me.TableLayoutPanel3.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  1853. Me.TableLayoutPanel3.Size = New System.Drawing.Size(552, 111)
  1854. Me.TableLayoutPanel3.TabIndex = 186
  1855. '
  1856. 'FlowLayoutPanel1
  1857. '
  1858. Me.FlowLayoutPanel1.AutoScroll = True
  1859. Me.FlowLayoutPanel1.Controls.Add(Me.Label22)
  1860. Me.FlowLayoutPanel1.Controls.Add(Me.TableLayoutPanel3)
  1861. Me.FlowLayoutPanel1.Controls.Add(Me.TabCampos)
  1862. Me.FlowLayoutPanel1.Controls.Add(Me.pnlPie)
  1863. Me.FlowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill
  1864. Me.FlowLayoutPanel1.Location = New System.Drawing.Point(0, 25)
  1865. Me.FlowLayoutPanel1.Name = "FlowLayoutPanel1"
  1866. Me.FlowLayoutPanel1.Size = New System.Drawing.Size(1157, 724)
  1867. Me.FlowLayoutPanel1.TabIndex = 187
  1868. '
  1869. 'frmPIN
  1870. '
  1871. Me.AcceptButton = Me.btnAccion
  1872. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  1873. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  1874. Me.AutoScroll = True
  1875. Me.BackColor = System.Drawing.Color.WhiteSmoke
  1876. Me.CancelButton = Me.btnCancelar
  1877. Me.ClientSize = New System.Drawing.Size(1157, 749)
  1878. Me.Controls.Add(Me.FlowLayoutPanel1)
  1879. Me.Controls.Add(Me.Navegador)
  1880. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
  1881. Me.Name = "frmPIN"
  1882. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
  1883. CType(Me.PIN0BindingSource4, System.ComponentModel.ISupportInitialize).EndInit()
  1884. CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).EndInit()
  1885. Me.pnlPie.ResumeLayout(False)
  1886. CType(Me.Navegador, System.ComponentModel.ISupportInitialize).EndInit()
  1887. Me.Navegador.ResumeLayout(False)
  1888. Me.Navegador.PerformLayout()
  1889. Me.grbInversión.ResumeLayout(False)
  1890. Me.GroupBox1.ResumeLayout(False)
  1891. Me.pnlMenu.ResumeLayout(False)
  1892. Me.pnlInstrumento.ResumeLayout(False)
  1893. Me.pnlInstrumento.PerformLayout()
  1894. Me.pnlEmpresa.ResumeLayout(False)
  1895. Me.pnlEmpresa.PerformLayout()
  1896. Me.pnlOrigenFondos.ResumeLayout(False)
  1897. Me.pnlOrigenFondos.PerformLayout()
  1898. Me.pnlEmisor.ResumeLayout(False)
  1899. Me.pnlEmisor.PerformLayout()
  1900. Me.pnlPlazo.ResumeLayout(False)
  1901. Me.pnlPlazo.PerformLayout()
  1902. Me.pnlCalificacionRiesgo.ResumeLayout(False)
  1903. Me.pnlCalificacionRiesgo.PerformLayout()
  1904. Me.pnlAutorizacion.ResumeLayout(False)
  1905. Me.pnlAutorizacion.PerformLayout()
  1906. Me.pnlCalificadora.ResumeLayout(False)
  1907. Me.pnlCalificadora.PerformLayout()
  1908. Me.pnlTipMercado.ResumeLayout(False)
  1909. Me.pnlTipMercado.PerformLayout()
  1910. Me.pnlPais.ResumeLayout(False)
  1911. Me.pnlPais.PerformLayout()
  1912. Me.pnlTipOper.ResumeLayout(False)
  1913. Me.pnlTipOper.PerformLayout()
  1914. Me.pnlEstado.ResumeLayout(False)
  1915. Me.pnlEstado.PerformLayout()
  1916. Me.pnlCargaDatos.ResumeLayout(False)
  1917. Me.pnlContenedor.ResumeLayout(False)
  1918. Me.Panel3.ResumeLayout(False)
  1919. Me.Panel3.PerformLayout()
  1920. Me.Panel1.ResumeLayout(False)
  1921. Me.grpTipoMercado.ResumeLayout(False)
  1922. Me.grpAutorizacion.ResumeLayout(False)
  1923. Me.grpTipoOperacion.ResumeLayout(False)
  1924. Me.grpEstadoDocumento.ResumeLayout(False)
  1925. Me.grpPais.ResumeLayout(False)
  1926. Me.grpCalificadoraRiesgo.ResumeLayout(False)
  1927. Me.grpCalificacionRiesgo.ResumeLayout(False)
  1928. Me.grpEmisor.ResumeLayout(False)
  1929. Me.grpPlazo.ResumeLayout(False)
  1930. Me.grpOrigenFondos.ResumeLayout(False)
  1931. Me.grpInstrumentos.ResumeLayout(False)
  1932. Me.grpEmpresas.ResumeLayout(False)
  1933. Me.GroupBox2.ResumeLayout(False)
  1934. Me.GroupBox2.PerformLayout()
  1935. Me.TabCampos.ResumeLayout(False)
  1936. Me.TbIngresarModificar.ResumeLayout(False)
  1937. Me.TbIngresarModificar.PerformLayout()
  1938. Me.TbBuscar.ResumeLayout(False)
  1939. Me.pnlCambiarRev.ResumeLayout(False)
  1940. Me.pnlCambiarRev.PerformLayout()
  1941. Me.pnlCambiarApro.ResumeLayout(False)
  1942. Me.pnlCambiarApro.PerformLayout()
  1943. Me.pnlCambiarRec.ResumeLayout(False)
  1944. Me.pnlCambiarRec.PerformLayout()
  1945. Me.TableLayoutPanel3.ResumeLayout(False)
  1946. Me.TableLayoutPanel3.PerformLayout()
  1947. Me.FlowLayoutPanel1.ResumeLayout(False)
  1948. Me.FlowLayoutPanel1.PerformLayout()
  1949. Me.ResumeLayout(False)
  1950. Me.PerformLayout()
  1951. End Sub
  1952. Friend WithEvents cboCalificadoraDeRiesgo As ComboBox
  1953. Friend WithEvents cboEmisores As ComboBox
  1954. Friend WithEvents cboInstrumentosFinancieros As ComboBox
  1955. Friend WithEvents cboEmpresas As ComboBox
  1956. Friend WithEvents cboEstadoDocumento As ComboBox
  1957. Friend WithEvents cboOrigenDeFondos As ComboBox
  1958. Friend WithEvents cboCalificacionDeRiesgo As ComboBox
  1959. Friend WithEvents txtCodigoInversion As TextBox
  1960. Friend WithEvents lblCodigoInversion As Label
  1961. Friend WithEvents txtAsunto As TextBox
  1962. Friend WithEvents lblAsunto As Label
  1963. Friend WithEvents txtComentarios As TextBox
  1964. Friend WithEvents Label9 As Label
  1965. Friend WithEvents txtJustificacion As TextBox
  1966. Friend WithEvents Label8 As Label
  1967. Friend WithEvents dtpFechaDocumento As DateTimePicker
  1968. Friend WithEvents lblFecha As Label
  1969. Friend WithEvents cboPlazosFactor As ComboBox
  1970. Friend WithEvents btnAccion As Button
  1971. Friend WithEvents btnCancelar As Button
  1972. Friend WithEvents cboTipoOperacion As ComboBox
  1973. Friend WithEvents cboAutorizacion As ComboBox
  1974. Friend WithEvents btnActivar As Button
  1975. Friend WithEvents cboTipoMercado As ComboBox
  1976. Friend WithEvents Label22 As Label
  1977. Friend WithEvents pnlPie As Panel
  1978. Friend WithEvents txtNombre As TextBox
  1979. Friend WithEvents lblNombre As Label
  1980. Friend WithEvents cboRenta As ComboBox
  1981. Friend WithEvents cboTasa As ComboBox
  1982. Friend WithEvents cboPeriodicidad As ComboBox
  1983. Friend WithEvents Navegador As BindingNavigator
  1984. Friend WithEvents navNuevoRegistro As ToolStripButton
  1985. Friend WithEvents BindingNavigatorCountItem As ToolStripLabel
  1986. Friend WithEvents navEliminarRegistro As ToolStripButton
  1987. Friend WithEvents navPrimerRegistro As ToolStripButton
  1988. Friend WithEvents navRegistroAnterior As ToolStripButton
  1989. Friend WithEvents BindingNavigatorSeparator As ToolStripSeparator
  1990. Friend WithEvents BindingNavigatorPositionItem As ToolStripTextBox
  1991. Friend WithEvents BindingNavigatorSeparator1 As ToolStripSeparator
  1992. Friend WithEvents navUltimoRegistro As ToolStripButton
  1993. Friend WithEvents BindingNavigatorSeparator2 As ToolStripSeparator
  1994. Friend WithEvents navModificar As ToolStripButton
  1995. Friend WithEvents navNuevo As ToolStripButton
  1996. Friend WithEvents navBuscar As ToolStripButton
  1997. Friend WithEvents navEliminar As ToolStripButton
  1998. Friend WithEvents navRecorrer As ToolStripButton
  1999. Friend WithEvents grbInversión As GroupBox
  2000. Friend WithEvents chkUsuario As CheckBox
  2001. Friend WithEvents GroupBox1 As GroupBox
  2002. Friend WithEvents pnlContenedor As Panel
  2003. Friend WithEvents GroupBox2 As GroupBox
  2004. Friend WithEvents grpInstrumentos As GroupBox
  2005. Friend WithEvents grpEmpresas As GroupBox
  2006. Friend WithEvents TabCampos As TabControl
  2007. Friend WithEvents TbIngresarModificar As TabPage
  2008. Friend WithEvents TbBuscar As TabPage
  2009. Friend WithEvents grpCalificadoraRiesgo As GroupBox
  2010. Friend WithEvents grpCalificacionRiesgo As GroupBox
  2011. Friend WithEvents grpEmisor As GroupBox
  2012. Friend WithEvents grpPlazo As GroupBox
  2013. Friend WithEvents grpOrigenFondos As GroupBox
  2014. Friend WithEvents grpAutorizacion As GroupBox
  2015. Friend WithEvents grpTipoOperacion As GroupBox
  2016. Friend WithEvents grpEstadoDocumento As GroupBox
  2017. Friend WithEvents grpPais As GroupBox
  2018. Friend WithEvents grpTipoMercado As GroupBox
  2019. Friend WithEvents flpTipoMercado As FlowLayoutPanel
  2020. Friend WithEvents flpAutorizacion As FlowLayoutPanel
  2021. Friend WithEvents flpTipoOperacion As FlowLayoutPanel
  2022. Friend WithEvents flpEstadoDocumento As FlowLayoutPanel
  2023. Friend WithEvents flpPais As FlowLayoutPanel
  2024. Friend WithEvents flpCalificadoraRiesgo As FlowLayoutPanel
  2025. Friend WithEvents flpCalificacionRiesgo As FlowLayoutPanel
  2026. Friend WithEvents flpEmisor As FlowLayoutPanel
  2027. Friend WithEvents flpPlazo As FlowLayoutPanel
  2028. Friend WithEvents flpOrigenFondos As FlowLayoutPanel
  2029. Friend WithEvents flpInstrumentos As FlowLayoutPanel
  2030. Friend WithEvents flpEmpresas As FlowLayoutPanel
  2031. Friend WithEvents BottomToolStripPanel As ToolStripPanel
  2032. Friend WithEvents TopToolStripPanel As ToolStripPanel
  2033. Friend WithEvents RightToolStripPanel As ToolStripPanel
  2034. Friend WithEvents LeftToolStripPanel As ToolStripPanel
  2035. Friend WithEvents ContentPanel As ToolStripContentPanel
  2036. Friend WithEvents InstrumentoToolStripMenuItem As ToolStripMenuItem
  2037. Friend WithEvents pnlCargaDatos As Panel
  2038. Friend WithEvents pnlMenu As Panel
  2039. Friend WithEvents pnlInstrumento As Panel
  2040. Friend WithEvents lblInstrumento As Label
  2041. Friend WithEvents pnlEmpresa As Panel
  2042. Friend WithEvents lblEmpresa As Label
  2043. Friend WithEvents pnlOrigenFondos As Panel
  2044. Friend WithEvents lblOrigenFondos As Label
  2045. Friend WithEvents pnlEmisor As Panel
  2046. Friend WithEvents lblEmisor As Label
  2047. Friend WithEvents pnlPlazo As Panel
  2048. Friend WithEvents lblPlazo As Label
  2049. Friend WithEvents pnlCalificacionRiesgo As Panel
  2050. Friend WithEvents lblCalificacionRiesgo As Label
  2051. Friend WithEvents pnlAutorizacion As Panel
  2052. Friend WithEvents lblAutorizacion As Label
  2053. Friend WithEvents pnlCalificadora As Panel
  2054. Friend WithEvents lblCalificadora As Label
  2055. Friend WithEvents pnlTipMercado As Panel
  2056. Friend WithEvents lblTipoMercado As Label
  2057. Friend WithEvents pnlPais As Panel
  2058. Friend WithEvents lblPais As Label
  2059. Friend WithEvents pnlTipOper As Panel
  2060. Friend WithEvents lblTipoOperacion As Label
  2061. Friend WithEvents pnlEstado As Panel
  2062. Friend WithEvents lblEstado As Label
  2063. Friend WithEvents Panel1 As Panel
  2064. Friend WithEvents btnCancel As Button
  2065. Friend WithEvents btnAceptar As Button
  2066. Friend WithEvents Panel3 As Panel
  2067. Friend WithEvents Label3 As Label
  2068. Friend WithEvents txtBuscar As TextBox
  2069. Friend WithEvents navVistaPrevia As ToolStripButton
  2070. Friend WithEvents navImprimir As ToolStripButton
  2071. Friend WithEvents cboPaises As ComboBox
  2072. Friend WithEvents btnCambiarRev As Button
  2073. Friend WithEvents lblCambiarRev As Label
  2074. Friend WithEvents pnlCambiarRev As Panel
  2075. Friend WithEvents pnlCambiarApro As Panel
  2076. Friend WithEvents btnCambiarApro As Button
  2077. Friend WithEvents lblCambiarApro As Label
  2078. Friend WithEvents pnlCambiarRec As Panel
  2079. Friend WithEvents btnCambiarRec As Button
  2080. Friend WithEvents lblCambiarRec As Label
  2081. Friend WithEvents InversionesDEVDataSet5 As InversionesDEVDataSet5
  2082. Friend WithEvents PIN0BindingSource4 As BindingSource
  2083. Friend WithEvents PIN0TableAdapter3 As InversionesDEVDataSet5TableAdapters.PIN0TableAdapter
  2084. Friend WithEvents TableAdapterManager As InversionesDEVDataSet5TableAdapters.TableAdapterManager
  2085. Friend WithEvents TableLayoutPanel3 As TableLayoutPanel
  2086. Friend WithEvents lblCodigoInversionCM As Label
  2087. Friend WithEvents txtCodigoInversionCM As TextBox
  2088. Friend WithEvents Label17 As Label
  2089. Friend WithEvents Label16 As Label
  2090. Friend WithEvents Label15 As Label
  2091. Friend WithEvents Label14 As Label
  2092. Friend WithEvents Label13 As Label
  2093. Friend WithEvents Label12 As Label
  2094. Friend WithEvents Label11 As Label
  2095. Friend WithEvents Label10 As Label
  2096. Friend WithEvents Label7 As Label
  2097. Friend WithEvents Label6 As Label
  2098. Friend WithEvents Label5 As Label
  2099. Friend WithEvents Label4 As Label
  2100. Friend WithEvents Label2 As Label
  2101. Friend WithEvents btnDetalleIF As Button
  2102. Friend WithEvents Label18 As Label
  2103. Friend WithEvents FlowLayoutPanel1 As FlowLayoutPanel
  2104. End Class