frmINV.Designer.vb 97 KB

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