frmSeleccionPoolTitulos.Designer.vb 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class frmSeleccionPoolTitulos
  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.lblTitulo = New System.Windows.Forms.Label()
  23. Me.dgvTitulos = New System.Windows.Forms.DataGridView()
  24. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  25. Me.rdbDeshabilitarFecha = New System.Windows.Forms.RadioButton()
  26. Me.lblFecha = New System.Windows.Forms.Label()
  27. Me.rdbRangoFechas = New System.Windows.Forms.RadioButton()
  28. Me.rdbFecha = New System.Windows.Forms.RadioButton()
  29. Me.dtpFechaOperacion = New System.Windows.Forms.DateTimePicker()
  30. Me.Label5 = New System.Windows.Forms.Label()
  31. Me.Label4 = New System.Windows.Forms.Label()
  32. Me.dtpFechaOperacion2 = New System.Windows.Forms.DateTimePicker()
  33. Me.dtpFechaOperacion1 = New System.Windows.Forms.DateTimePicker()
  34. Me.grpVigencia = New System.Windows.Forms.GroupBox()
  35. Me.rdbTodosVigencia = New System.Windows.Forms.RadioButton()
  36. Me.rdbVigente = New System.Windows.Forms.RadioButton()
  37. Me.lblEmpresa = New System.Windows.Forms.Label()
  38. Me.cboEmpresa = New System.Windows.Forms.ComboBox()
  39. Me.btnVer = New System.Windows.Forms.Button()
  40. Me.btnAgregar = New System.Windows.Forms.Button()
  41. Me.lblInstrumentos = New System.Windows.Forms.Label()
  42. Me.cboInstrumentos = New System.Windows.Forms.ComboBox()
  43. Me.dgvPool = New System.Windows.Forms.DataGridView()
  44. Me.CodigoTitulo = New System.Windows.Forms.DataGridViewTextBoxColumn()
  45. Me.Instrumento = New System.Windows.Forms.DataGridViewTextBoxColumn()
  46. Me.NombreInstrumento = New System.Windows.Forms.DataGridViewTextBoxColumn()
  47. Me.Empresa = New System.Windows.Forms.DataGridViewTextBoxColumn()
  48. Me.NombreEmpresa = New System.Windows.Forms.DataGridViewTextBoxColumn()
  49. Me.MontoTotal = New System.Windows.Forms.DataGridViewTextBoxColumn()
  50. Me.MontoUsado = New System.Windows.Forms.DataGridViewTextBoxColumn()
  51. Me.Porcentaje = New System.Windows.Forms.DataGridViewTextBoxColumn()
  52. Me.FechaCreacion = New System.Windows.Forms.DataGridViewTextBoxColumn()
  53. Me.IdFlujo = New System.Windows.Forms.DataGridViewTextBoxColumn()
  54. Me.IdEspLR = New System.Windows.Forms.DataGridViewTextBoxColumn()
  55. Me.txtMontoUsar = New System.Windows.Forms.TextBox()
  56. Me.lblPorcentaje = New System.Windows.Forms.Label()
  57. Me.btnGenerarPool = New System.Windows.Forms.Button()
  58. Me.lblCodigo = New System.Windows.Forms.Label()
  59. Me.txtcodigo = New System.Windows.Forms.TextBox()
  60. Me.btnLimpiar = New System.Windows.Forms.Button()
  61. CType(Me.dgvTitulos, System.ComponentModel.ISupportInitialize).BeginInit()
  62. Me.GroupBox1.SuspendLayout()
  63. Me.grpVigencia.SuspendLayout()
  64. CType(Me.dgvPool, System.ComponentModel.ISupportInitialize).BeginInit()
  65. Me.SuspendLayout()
  66. '
  67. 'lblTitulo
  68. '
  69. Me.lblTitulo.Anchor = System.Windows.Forms.AnchorStyles.Top
  70. Me.lblTitulo.AutoSize = True
  71. Me.lblTitulo.Font = New System.Drawing.Font("Trebuchet MS", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  72. Me.lblTitulo.Location = New System.Drawing.Point(52, 9)
  73. Me.lblTitulo.Name = "lblTitulo"
  74. Me.lblTitulo.Size = New System.Drawing.Size(258, 24)
  75. Me.lblTitulo.TabIndex = 81
  76. Me.lblTitulo.Text = "Seleccionar Lista de Titulos"
  77. '
  78. 'dgvTitulos
  79. '
  80. Me.dgvTitulos.AllowUserToAddRows = False
  81. Me.dgvTitulos.AllowUserToDeleteRows = False
  82. Me.dgvTitulos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  83. Me.dgvTitulos.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells
  84. Me.dgvTitulos.BackgroundColor = System.Drawing.Color.White
  85. Me.dgvTitulos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  86. Me.dgvTitulos.Location = New System.Drawing.Point(7, 221)
  87. Me.dgvTitulos.Name = "dgvTitulos"
  88. Me.dgvTitulos.RowHeadersVisible = False
  89. Me.dgvTitulos.Size = New System.Drawing.Size(806, 166)
  90. Me.dgvTitulos.TabIndex = 82
  91. '
  92. 'GroupBox1
  93. '
  94. Me.GroupBox1.Controls.Add(Me.rdbDeshabilitarFecha)
  95. Me.GroupBox1.Controls.Add(Me.lblFecha)
  96. Me.GroupBox1.Controls.Add(Me.rdbRangoFechas)
  97. Me.GroupBox1.Controls.Add(Me.rdbFecha)
  98. Me.GroupBox1.Controls.Add(Me.dtpFechaOperacion)
  99. Me.GroupBox1.Controls.Add(Me.Label5)
  100. Me.GroupBox1.Controls.Add(Me.Label4)
  101. Me.GroupBox1.Controls.Add(Me.dtpFechaOperacion2)
  102. Me.GroupBox1.Controls.Add(Me.dtpFechaOperacion1)
  103. Me.GroupBox1.Location = New System.Drawing.Point(3, 49)
  104. Me.GroupBox1.Name = "GroupBox1"
  105. Me.GroupBox1.Size = New System.Drawing.Size(423, 109)
  106. Me.GroupBox1.TabIndex = 87
  107. Me.GroupBox1.TabStop = False
  108. Me.GroupBox1.Text = "Busqueda por Fecha de Operación"
  109. '
  110. 'rdbDeshabilitarFecha
  111. '
  112. Me.rdbDeshabilitarFecha.AutoSize = True
  113. Me.rdbDeshabilitarFecha.Checked = True
  114. Me.rdbDeshabilitarFecha.Location = New System.Drawing.Point(355, 19)
  115. Me.rdbDeshabilitarFecha.Name = "rdbDeshabilitarFecha"
  116. Me.rdbDeshabilitarFecha.Size = New System.Drawing.Size(65, 17)
  117. Me.rdbDeshabilitarFecha.TabIndex = 16
  118. Me.rdbDeshabilitarFecha.TabStop = True
  119. Me.rdbDeshabilitarFecha.Text = "Ninguno"
  120. Me.rdbDeshabilitarFecha.UseVisualStyleBackColor = True
  121. '
  122. 'lblFecha
  123. '
  124. Me.lblFecha.Anchor = System.Windows.Forms.AnchorStyles.None
  125. Me.lblFecha.AutoSize = True
  126. Me.lblFecha.Location = New System.Drawing.Point(44, 39)
  127. Me.lblFecha.Name = "lblFecha"
  128. Me.lblFecha.Size = New System.Drawing.Size(37, 13)
  129. Me.lblFecha.TabIndex = 4
  130. Me.lblFecha.Text = "Fecha"
  131. '
  132. 'rdbRangoFechas
  133. '
  134. Me.rdbRangoFechas.AutoSize = True
  135. Me.rdbRangoFechas.Location = New System.Drawing.Point(178, 17)
  136. Me.rdbRangoFechas.Name = "rdbRangoFechas"
  137. Me.rdbRangoFechas.Size = New System.Drawing.Size(127, 17)
  138. Me.rdbRangoFechas.TabIndex = 15
  139. Me.rdbRangoFechas.Text = "Busqueda Por Rango"
  140. Me.rdbRangoFechas.UseVisualStyleBackColor = True
  141. '
  142. 'rdbFecha
  143. '
  144. Me.rdbFecha.AutoSize = True
  145. Me.rdbFecha.Location = New System.Drawing.Point(21, 19)
  146. Me.rdbFecha.Name = "rdbFecha"
  147. Me.rdbFecha.Size = New System.Drawing.Size(91, 17)
  148. Me.rdbFecha.TabIndex = 14
  149. Me.rdbFecha.Text = "Buscar Fecha"
  150. Me.rdbFecha.UseVisualStyleBackColor = True
  151. '
  152. 'dtpFechaOperacion
  153. '
  154. Me.dtpFechaOperacion.Anchor = System.Windows.Forms.AnchorStyles.None
  155. Me.dtpFechaOperacion.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  156. Me.dtpFechaOperacion.Location = New System.Drawing.Point(21, 67)
  157. Me.dtpFechaOperacion.Name = "dtpFechaOperacion"
  158. Me.dtpFechaOperacion.Size = New System.Drawing.Size(91, 20)
  159. Me.dtpFechaOperacion.TabIndex = 0
  160. '
  161. 'Label5
  162. '
  163. Me.Label5.AutoSize = True
  164. Me.Label5.Location = New System.Drawing.Point(254, 36)
  165. Me.Label5.Name = "Label5"
  166. Me.Label5.Size = New System.Drawing.Size(62, 13)
  167. Me.Label5.TabIndex = 10
  168. Me.Label5.Text = "Fecha Final"
  169. '
  170. 'Label4
  171. '
  172. Me.Label4.AutoSize = True
  173. Me.Label4.Location = New System.Drawing.Point(152, 37)
  174. Me.Label4.Name = "Label4"
  175. Me.Label4.Size = New System.Drawing.Size(67, 13)
  176. Me.Label4.TabIndex = 9
  177. Me.Label4.Text = "Fecha Inicial"
  178. '
  179. 'dtpFechaOperacion2
  180. '
  181. Me.dtpFechaOperacion2.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  182. Me.dtpFechaOperacion2.Location = New System.Drawing.Point(242, 67)
  183. Me.dtpFechaOperacion2.Name = "dtpFechaOperacion2"
  184. Me.dtpFechaOperacion2.Size = New System.Drawing.Size(100, 20)
  185. Me.dtpFechaOperacion2.TabIndex = 8
  186. '
  187. 'dtpFechaOperacion1
  188. '
  189. Me.dtpFechaOperacion1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  190. Me.dtpFechaOperacion1.Location = New System.Drawing.Point(136, 67)
  191. Me.dtpFechaOperacion1.Name = "dtpFechaOperacion1"
  192. Me.dtpFechaOperacion1.Size = New System.Drawing.Size(100, 20)
  193. Me.dtpFechaOperacion1.TabIndex = 7
  194. '
  195. 'grpVigencia
  196. '
  197. Me.grpVigencia.Controls.Add(Me.rdbTodosVigencia)
  198. Me.grpVigencia.Controls.Add(Me.rdbVigente)
  199. Me.grpVigencia.Location = New System.Drawing.Point(432, 51)
  200. Me.grpVigencia.Name = "grpVigencia"
  201. Me.grpVigencia.Size = New System.Drawing.Size(149, 107)
  202. Me.grpVigencia.TabIndex = 88
  203. Me.grpVigencia.TabStop = False
  204. Me.grpVigencia.Text = "Vigencia"
  205. '
  206. 'rdbTodosVigencia
  207. '
  208. Me.rdbTodosVigencia.AutoSize = True
  209. Me.rdbTodosVigencia.Location = New System.Drawing.Point(8, 47)
  210. Me.rdbTodosVigencia.Name = "rdbTodosVigencia"
  211. Me.rdbTodosVigencia.Size = New System.Drawing.Size(93, 17)
  212. Me.rdbTodosVigencia.TabIndex = 16
  213. Me.rdbTodosVigencia.Text = "Mostrar Todos"
  214. Me.rdbTodosVigencia.UseVisualStyleBackColor = True
  215. '
  216. 'rdbVigente
  217. '
  218. Me.rdbVigente.AutoSize = True
  219. Me.rdbVigente.Checked = True
  220. Me.rdbVigente.Location = New System.Drawing.Point(8, 24)
  221. Me.rdbVigente.Name = "rdbVigente"
  222. Me.rdbVigente.Size = New System.Drawing.Size(128, 17)
  223. Me.rdbVigente.TabIndex = 15
  224. Me.rdbVigente.TabStop = True
  225. Me.rdbVigente.Text = "Mostrar Solo Vigentes"
  226. Me.rdbVigente.UseVisualStyleBackColor = True
  227. '
  228. 'lblEmpresa
  229. '
  230. Me.lblEmpresa.Anchor = System.Windows.Forms.AnchorStyles.None
  231. Me.lblEmpresa.AutoSize = True
  232. Me.lblEmpresa.Location = New System.Drawing.Point(657, 68)
  233. Me.lblEmpresa.Name = "lblEmpresa"
  234. Me.lblEmpresa.Size = New System.Drawing.Size(48, 13)
  235. Me.lblEmpresa.TabIndex = 85
  236. Me.lblEmpresa.Text = "Empresa"
  237. '
  238. 'cboEmpresa
  239. '
  240. Me.cboEmpresa.Anchor = System.Windows.Forms.AnchorStyles.None
  241. Me.cboEmpresa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  242. Me.cboEmpresa.FormattingEnabled = True
  243. Me.cboEmpresa.Location = New System.Drawing.Point(600, 84)
  244. Me.cboEmpresa.Name = "cboEmpresa"
  245. Me.cboEmpresa.Size = New System.Drawing.Size(171, 21)
  246. Me.cboEmpresa.TabIndex = 83
  247. '
  248. 'btnVer
  249. '
  250. Me.btnVer.BackColor = System.Drawing.Color.White
  251. Me.btnVer.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  252. Me.btnVer.ForeColor = System.Drawing.Color.Maroon
  253. Me.btnVer.Location = New System.Drawing.Point(398, 393)
  254. Me.btnVer.Name = "btnVer"
  255. Me.btnVer.Size = New System.Drawing.Size(75, 23)
  256. Me.btnVer.TabIndex = 89
  257. Me.btnVer.Text = "Ver Detalles"
  258. Me.btnVer.UseVisualStyleBackColor = False
  259. '
  260. 'btnAgregar
  261. '
  262. Me.btnAgregar.BackColor = System.Drawing.Color.White
  263. Me.btnAgregar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  264. Me.btnAgregar.ForeColor = System.Drawing.Color.Maroon
  265. Me.btnAgregar.Location = New System.Drawing.Point(398, 422)
  266. Me.btnAgregar.Name = "btnAgregar"
  267. Me.btnAgregar.Size = New System.Drawing.Size(75, 55)
  268. Me.btnAgregar.TabIndex = 90
  269. Me.btnAgregar.Text = " l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "V" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  270. Me.btnAgregar.UseVisualStyleBackColor = False
  271. '
  272. 'lblInstrumentos
  273. '
  274. Me.lblInstrumentos.Anchor = System.Windows.Forms.AnchorStyles.None
  275. Me.lblInstrumentos.AutoSize = True
  276. Me.lblInstrumentos.Location = New System.Drawing.Point(647, 116)
  277. Me.lblInstrumentos.Name = "lblInstrumentos"
  278. Me.lblInstrumentos.Size = New System.Drawing.Size(67, 13)
  279. Me.lblInstrumentos.TabIndex = 92
  280. Me.lblInstrumentos.Text = "Instrumentos"
  281. '
  282. 'cboInstrumentos
  283. '
  284. Me.cboInstrumentos.Anchor = System.Windows.Forms.AnchorStyles.None
  285. Me.cboInstrumentos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  286. Me.cboInstrumentos.FormattingEnabled = True
  287. Me.cboInstrumentos.Location = New System.Drawing.Point(600, 132)
  288. Me.cboInstrumentos.Name = "cboInstrumentos"
  289. Me.cboInstrumentos.Size = New System.Drawing.Size(171, 21)
  290. Me.cboInstrumentos.TabIndex = 91
  291. '
  292. 'dgvPool
  293. '
  294. Me.dgvPool.AllowUserToAddRows = False
  295. Me.dgvPool.AllowUserToDeleteRows = False
  296. Me.dgvPool.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  297. Me.dgvPool.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells
  298. Me.dgvPool.BackgroundColor = System.Drawing.Color.White
  299. Me.dgvPool.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  300. Me.dgvPool.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.CodigoTitulo, Me.Instrumento, Me.NombreInstrumento, Me.Empresa, Me.NombreEmpresa, Me.MontoTotal, Me.MontoUsado, Me.Porcentaje, Me.FechaCreacion, Me.IdFlujo, Me.IdEspLR})
  301. Me.dgvPool.Location = New System.Drawing.Point(6, 483)
  302. Me.dgvPool.Name = "dgvPool"
  303. Me.dgvPool.RowHeadersVisible = False
  304. Me.dgvPool.Size = New System.Drawing.Size(807, 167)
  305. Me.dgvPool.TabIndex = 93
  306. '
  307. 'CodigoTitulo
  308. '
  309. Me.CodigoTitulo.HeaderText = "Codigo Titulo"
  310. Me.CodigoTitulo.Name = "CodigoTitulo"
  311. '
  312. 'Instrumento
  313. '
  314. Me.Instrumento.HeaderText = "Instrumento"
  315. Me.Instrumento.Name = "Instrumento"
  316. '
  317. 'NombreInstrumento
  318. '
  319. Me.NombreInstrumento.HeaderText = "Nombre Instrumento"
  320. Me.NombreInstrumento.Name = "NombreInstrumento"
  321. '
  322. 'Empresa
  323. '
  324. Me.Empresa.HeaderText = "Empresa"
  325. Me.Empresa.Name = "Empresa"
  326. '
  327. 'NombreEmpresa
  328. '
  329. Me.NombreEmpresa.HeaderText = "Nombre Empresa"
  330. Me.NombreEmpresa.Name = "NombreEmpresa"
  331. '
  332. 'MontoTotal
  333. '
  334. Me.MontoTotal.HeaderText = "Mono Total"
  335. Me.MontoTotal.Name = "MontoTotal"
  336. '
  337. 'MontoUsado
  338. '
  339. Me.MontoUsado.HeaderText = "Monto Usado"
  340. Me.MontoUsado.Name = "MontoUsado"
  341. '
  342. 'Porcentaje
  343. '
  344. Me.Porcentaje.HeaderText = "Porcentaje"
  345. Me.Porcentaje.Name = "Porcentaje"
  346. '
  347. 'FechaCreacion
  348. '
  349. Me.FechaCreacion.HeaderText = "FechaCreacion"
  350. Me.FechaCreacion.Name = "FechaCreacion"
  351. '
  352. 'IdFlujo
  353. '
  354. Me.IdFlujo.HeaderText = "IdFlujo"
  355. Me.IdFlujo.Name = "IdFlujo"
  356. '
  357. 'IdEspLR
  358. '
  359. Me.IdEspLR.HeaderText = "IdEspLR"
  360. Me.IdEspLR.Name = "IdEspLR"
  361. '
  362. 'txtMontoUsar
  363. '
  364. Me.txtMontoUsar.Location = New System.Drawing.Point(515, 428)
  365. Me.txtMontoUsar.Name = "txtMontoUsar"
  366. Me.txtMontoUsar.Size = New System.Drawing.Size(121, 20)
  367. Me.txtMontoUsar.TabIndex = 94
  368. Me.txtMontoUsar.Text = "0"
  369. '
  370. 'lblPorcentaje
  371. '
  372. Me.lblPorcentaje.AutoSize = True
  373. Me.lblPorcentaje.Location = New System.Drawing.Point(309, 431)
  374. Me.lblPorcentaje.Name = "lblPorcentaje"
  375. Me.lblPorcentaje.Size = New System.Drawing.Size(58, 13)
  376. Me.lblPorcentaje.TabIndex = 95
  377. Me.lblPorcentaje.Text = "Porcentaje"
  378. '
  379. 'btnGenerarPool
  380. '
  381. Me.btnGenerarPool.BackColor = System.Drawing.Color.White
  382. Me.btnGenerarPool.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  383. Me.btnGenerarPool.ForeColor = System.Drawing.Color.Maroon
  384. Me.btnGenerarPool.Location = New System.Drawing.Point(368, 657)
  385. Me.btnGenerarPool.Name = "btnGenerarPool"
  386. Me.btnGenerarPool.Size = New System.Drawing.Size(127, 42)
  387. Me.btnGenerarPool.TabIndex = 96
  388. Me.btnGenerarPool.Text = "Guardar Lista de Titulos"
  389. Me.btnGenerarPool.UseVisualStyleBackColor = False
  390. '
  391. 'lblCodigo
  392. '
  393. Me.lblCodigo.AutoSize = True
  394. Me.lblCodigo.Location = New System.Drawing.Point(596, 17)
  395. Me.lblCodigo.Name = "lblCodigo"
  396. Me.lblCodigo.Size = New System.Drawing.Size(40, 13)
  397. Me.lblCodigo.TabIndex = 97
  398. Me.lblCodigo.Text = "Codigo"
  399. '
  400. 'txtcodigo
  401. '
  402. Me.txtcodigo.Location = New System.Drawing.Point(642, 14)
  403. Me.txtcodigo.Name = "txtcodigo"
  404. Me.txtcodigo.ReadOnly = True
  405. Me.txtcodigo.Size = New System.Drawing.Size(129, 20)
  406. Me.txtcodigo.TabIndex = 98
  407. '
  408. 'btnLimpiar
  409. '
  410. Me.btnLimpiar.BackColor = System.Drawing.Color.White
  411. Me.btnLimpiar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  412. Me.btnLimpiar.ForeColor = System.Drawing.Color.Maroon
  413. Me.btnLimpiar.Location = New System.Drawing.Point(650, 426)
  414. Me.btnLimpiar.Name = "btnLimpiar"
  415. Me.btnLimpiar.Size = New System.Drawing.Size(87, 23)
  416. Me.btnLimpiar.TabIndex = 99
  417. Me.btnLimpiar.Text = "Limpiar"
  418. Me.btnLimpiar.UseVisualStyleBackColor = False
  419. '
  420. 'frmSeleccionPoolTitulos
  421. '
  422. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  423. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  424. Me.BackColor = System.Drawing.Color.WhiteSmoke
  425. Me.ClientSize = New System.Drawing.Size(820, 711)
  426. Me.Controls.Add(Me.btnLimpiar)
  427. Me.Controls.Add(Me.txtcodigo)
  428. Me.Controls.Add(Me.lblCodigo)
  429. Me.Controls.Add(Me.btnGenerarPool)
  430. Me.Controls.Add(Me.lblPorcentaje)
  431. Me.Controls.Add(Me.txtMontoUsar)
  432. Me.Controls.Add(Me.dgvPool)
  433. Me.Controls.Add(Me.lblInstrumentos)
  434. Me.Controls.Add(Me.cboInstrumentos)
  435. Me.Controls.Add(Me.btnAgregar)
  436. Me.Controls.Add(Me.btnVer)
  437. Me.Controls.Add(Me.GroupBox1)
  438. Me.Controls.Add(Me.grpVigencia)
  439. Me.Controls.Add(Me.lblEmpresa)
  440. Me.Controls.Add(Me.cboEmpresa)
  441. Me.Controls.Add(Me.dgvTitulos)
  442. Me.Controls.Add(Me.lblTitulo)
  443. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
  444. Me.Name = "frmSeleccionPoolTitulos"
  445. CType(Me.dgvTitulos, System.ComponentModel.ISupportInitialize).EndInit()
  446. Me.GroupBox1.ResumeLayout(False)
  447. Me.GroupBox1.PerformLayout()
  448. Me.grpVigencia.ResumeLayout(False)
  449. Me.grpVigencia.PerformLayout()
  450. CType(Me.dgvPool, System.ComponentModel.ISupportInitialize).EndInit()
  451. Me.ResumeLayout(False)
  452. Me.PerformLayout()
  453. End Sub
  454. Friend WithEvents lblTitulo As Label
  455. Friend WithEvents dgvTitulos As DataGridView
  456. Friend WithEvents GroupBox1 As GroupBox
  457. Friend WithEvents rdbDeshabilitarFecha As RadioButton
  458. Friend WithEvents lblFecha As Label
  459. Friend WithEvents rdbRangoFechas As RadioButton
  460. Friend WithEvents rdbFecha As RadioButton
  461. Friend WithEvents dtpFechaOperacion As DateTimePicker
  462. Friend WithEvents Label5 As Label
  463. Friend WithEvents Label4 As Label
  464. Friend WithEvents dtpFechaOperacion2 As DateTimePicker
  465. Friend WithEvents dtpFechaOperacion1 As DateTimePicker
  466. Friend WithEvents grpVigencia As GroupBox
  467. Friend WithEvents rdbTodosVigencia As RadioButton
  468. Friend WithEvents rdbVigente As RadioButton
  469. Friend WithEvents lblEmpresa As Label
  470. Friend WithEvents cboEmpresa As ComboBox
  471. Friend WithEvents btnVer As Button
  472. Friend WithEvents btnAgregar As Button
  473. Friend WithEvents lblInstrumentos As Label
  474. Friend WithEvents cboInstrumentos As ComboBox
  475. Friend WithEvents dgvPool As DataGridView
  476. Friend WithEvents txtMontoUsar As TextBox
  477. Friend WithEvents lblPorcentaje As Label
  478. Friend WithEvents btnGenerarPool As Button
  479. Friend WithEvents lblCodigo As Label
  480. Friend WithEvents txtcodigo As TextBox
  481. Friend WithEvents CodigoTitulo As DataGridViewTextBoxColumn
  482. Friend WithEvents Instrumento As DataGridViewTextBoxColumn
  483. Friend WithEvents NombreInstrumento As DataGridViewTextBoxColumn
  484. Friend WithEvents Empresa As DataGridViewTextBoxColumn
  485. Friend WithEvents NombreEmpresa As DataGridViewTextBoxColumn
  486. Friend WithEvents MontoTotal As DataGridViewTextBoxColumn
  487. Friend WithEvents MontoUsado As DataGridViewTextBoxColumn
  488. Friend WithEvents Porcentaje As DataGridViewTextBoxColumn
  489. Friend WithEvents FechaCreacion As DataGridViewTextBoxColumn
  490. Friend WithEvents IdFlujo As DataGridViewTextBoxColumn
  491. Friend WithEvents IdEspLR As DataGridViewTextBoxColumn
  492. Friend WithEvents btnLimpiar As Button
  493. End Class