frmPIN.designer.vb 109 KB

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