frmINV.Designer.vb 97 KB

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