| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class frmINV
- Inherits System.Windows.Forms.Form
- 'Form reemplaza a Dispose para limpiar la lista de componentes.
- <System.Diagnostics.DebuggerNonUserCode()>
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
- 'Requerido por el Diseñador de Windows Forms
- Private components As System.ComponentModel.IContainer
- 'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
- 'Se puede modificar usando el Diseñador de Windows Forms.
- 'No lo modifique con el editor de código.
- <System.Diagnostics.DebuggerStepThrough()>
- Private Sub InitializeComponent()
- Me.components = New System.ComponentModel.Container()
- Dim navSiguienteRegistro As System.Windows.Forms.ToolStripButton
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmINV))
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.btnCancelar = New System.Windows.Forms.Button()
- Me.btnAccion = New System.Windows.Forms.Button()
- Me.Navegador = New System.Windows.Forms.BindingNavigator(Me.components)
- Me.navNuevoRegistro = New System.Windows.Forms.ToolStripButton()
- Me.BindingNavigatorCountItem = New System.Windows.Forms.ToolStripLabel()
- Me.navPrimerRegistro = New System.Windows.Forms.ToolStripButton()
- Me.navRegistroAnterior = New System.Windows.Forms.ToolStripButton()
- Me.BindingNavigatorSeparator = New System.Windows.Forms.ToolStripSeparator()
- Me.BindingNavigatorPositionItem = New System.Windows.Forms.ToolStripTextBox()
- Me.BindingNavigatorSeparator1 = New System.Windows.Forms.ToolStripSeparator()
- Me.navUltimoRegistro = New System.Windows.Forms.ToolStripButton()
- Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator()
- Me.navNuevo = New System.Windows.Forms.ToolStripButton()
- Me.navModificar = New System.Windows.Forms.ToolStripButton()
- Me.navEliminar = New System.Windows.Forms.ToolStripButton()
- Me.navBuscar = New System.Windows.Forms.ToolStripButton()
- Me.navRecorrer = New System.Windows.Forms.ToolStripButton()
- Me.navEliminarRegistro = New System.Windows.Forms.ToolStripButton()
- Me.btnReporte = New System.Windows.Forms.ToolStripButton()
- Me.InversionesDEVDataSet5 = New Inversiones.InversionesDEVDataSet5()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.TbBuscar = New System.Windows.Forms.TabPage()
- Me.GroupBox1 = New System.Windows.Forms.GroupBox()
- Me.pnlMenu = New System.Windows.Forms.Panel()
- Me.pnlInstrumento = New System.Windows.Forms.Panel()
- Me.lblInstrumento = New System.Windows.Forms.Label()
- Me.pnlEmpresa = New System.Windows.Forms.Panel()
- Me.lblEmpresa = New System.Windows.Forms.Label()
- Me.pnlOrigenFondos = New System.Windows.Forms.Panel()
- Me.lblOrigenFondos = New System.Windows.Forms.Label()
- Me.pnlEmisor = New System.Windows.Forms.Panel()
- Me.lblEmisor = New System.Windows.Forms.Label()
- Me.pnlPlazo = New System.Windows.Forms.Panel()
- Me.lblPlazo = New System.Windows.Forms.Label()
- Me.pnlCalificacionRiesgo = New System.Windows.Forms.Panel()
- Me.lblCalificacionRiesgo = New System.Windows.Forms.Label()
- Me.pnlEstadoProceso = New System.Windows.Forms.Panel()
- Me.lblEstadoProceso = New System.Windows.Forms.Label()
- Me.pnlCalificadora = New System.Windows.Forms.Panel()
- Me.lblCalificadora = New System.Windows.Forms.Label()
- Me.pnlTipMercado = New System.Windows.Forms.Panel()
- Me.lblTipoMercado = New System.Windows.Forms.Label()
- Me.pnlPais = New System.Windows.Forms.Panel()
- Me.lblPais = New System.Windows.Forms.Label()
- Me.pnlTipOper = New System.Windows.Forms.Panel()
- Me.lblTipoOperacion = New System.Windows.Forms.Label()
- Me.pnlEstado = New System.Windows.Forms.Panel()
- Me.lblEstado = New System.Windows.Forms.Label()
- Me.pnlCargaDatos = New System.Windows.Forms.Panel()
- Me.pnlContenedor = New System.Windows.Forms.Panel()
- Me.Panel3 = New System.Windows.Forms.Panel()
- Me.Label31 = New System.Windows.Forms.Label()
- Me.txtBuscar = New System.Windows.Forms.TextBox()
- Me.Panel9 = New System.Windows.Forms.Panel()
- Me.btnCancel = New System.Windows.Forms.Button()
- Me.btnAceptar = New System.Windows.Forms.Button()
- Me.grpTipoMercado = New System.Windows.Forms.GroupBox()
- Me.flpTipoMercado = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpEstadoProceso = New System.Windows.Forms.GroupBox()
- Me.flpEstadoProceso = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpTipoOperacion = New System.Windows.Forms.GroupBox()
- Me.flpTipoOperacion = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpEstadoDocumento = New System.Windows.Forms.GroupBox()
- Me.flpEstadoDocumento = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpPais = New System.Windows.Forms.GroupBox()
- Me.flpPais = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpCalificadoraRiesgo = New System.Windows.Forms.GroupBox()
- Me.flpCalificadoraRiesgo = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpCalificacionRiesgo = New System.Windows.Forms.GroupBox()
- Me.flpCalificacionRiesgo = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpEmisor = New System.Windows.Forms.GroupBox()
- Me.flpEmisor = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpPlazo = New System.Windows.Forms.GroupBox()
- Me.flpPlazo = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpOrigenFondos = New System.Windows.Forms.GroupBox()
- Me.flpOrigenFondos = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpInstrumentos = New System.Windows.Forms.GroupBox()
- Me.flpInstrumentos = New System.Windows.Forms.FlowLayoutPanel()
- Me.grpEmpresas = New System.Windows.Forms.GroupBox()
- Me.flpEmpresas = New System.Windows.Forms.FlowLayoutPanel()
- Me.TbIngresarModificar = New System.Windows.Forms.TabPage()
- Me.Panel4 = New System.Windows.Forms.Panel()
- Me.Panel7 = New System.Windows.Forms.Panel()
- Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel()
- Me.tabDetalleInstrumentos = New System.Windows.Forms.TabControl()
- Me.tabNotas = New System.Windows.Forms.TabPage()
- Me.txtNotas = New System.Windows.Forms.TextBox()
- Me.tabAnexos = New System.Windows.Forms.TabPage()
- Me.btnAdjuntar = New System.Windows.Forms.Button()
- Me.btnVerAdjunto = New System.Windows.Forms.Button()
- Me.DataGridView1 = New System.Windows.Forms.DataGridView()
- Me.Panel6 = New System.Windows.Forms.Panel()
- Me.Panel2 = New System.Windows.Forms.Panel()
- Me.TableLayoutPanel2 = New System.Windows.Forms.TableLayoutPanel()
- Me.GroupBox6 = New System.Windows.Forms.GroupBox()
- Me.cboTipoOperacion = New System.Windows.Forms.ComboBox()
- Me.GroupBox5 = New System.Windows.Forms.GroupBox()
- Me.cboEstadoDocumento = New System.Windows.Forms.ComboBox()
- Me.GroupBox4 = New System.Windows.Forms.GroupBox()
- Me.cboEmisores = New System.Windows.Forms.ComboBox()
- Me.GroupBox3 = New System.Windows.Forms.GroupBox()
- Me.cboEmpresas = New System.Windows.Forms.ComboBox()
- Me.GroupBox7 = New System.Windows.Forms.GroupBox()
- Me.cboOrigenDeFondos = New System.Windows.Forms.ComboBox()
- Me.GroupBox8 = New System.Windows.Forms.GroupBox()
- Me.cboInstrumentos = New System.Windows.Forms.ComboBox()
- Me.btnDetalleIF = New System.Windows.Forms.Button()
- Me.GroupBox9 = New System.Windows.Forms.GroupBox()
- Me.cboCalificaciones = New System.Windows.Forms.ComboBox()
- Me.GroupBox10 = New System.Windows.Forms.GroupBox()
- Me.cboTipoTasa = New System.Windows.Forms.ComboBox()
- Me.GroupBox11 = New System.Windows.Forms.GroupBox()
- Me.cboCalificadoras = New System.Windows.Forms.ComboBox()
- Me.GroupBox12 = New System.Windows.Forms.GroupBox()
- Me.cboEstadoProceso = New System.Windows.Forms.ComboBox()
- Me.GroupBox13 = New System.Windows.Forms.GroupBox()
- Me.cboTiposMercado = New System.Windows.Forms.ComboBox()
- Me.GroupBox14 = New System.Windows.Forms.GroupBox()
- Me.cboPaises = New System.Windows.Forms.ComboBox()
- Me.GroupBox15 = New System.Windows.Forms.GroupBox()
- Me.cboPeriodicidad = New System.Windows.Forms.ComboBox()
- Me.GroupBox16 = New System.Windows.Forms.GroupBox()
- Me.cboTipoRenta = New System.Windows.Forms.ComboBox()
- Me.Panel5 = New System.Windows.Forms.Panel()
- Me.GroupBox2 = New System.Windows.Forms.GroupBox()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.txtPlazoNum = New System.Windows.Forms.TextBox()
- Me.lblCodigoCompra = New System.Windows.Forms.Label()
- Me.cboPlazoFactor = New System.Windows.Forms.ComboBox()
- Me.txtCodigoCompra = New System.Windows.Forms.TextBox()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.txtCodigoInversion = New System.Windows.Forms.TextBox()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.dtpFechaDocumento = New System.Windows.Forms.DateTimePicker()
- Me.txtCodigoManual = New System.Windows.Forms.TextBox()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.txtNombreManual = New System.Windows.Forms.TextBox()
- Me.TabCampos = New System.Windows.Forms.TabControl()
- Me.btnRequisicionDePago = New System.Windows.Forms.Button()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.pnlCorregir = New System.Windows.Forms.Panel()
- Me.Button1 = New System.Windows.Forms.Button()
- Me.pnlAnexar = New System.Windows.Forms.Panel()
- Me.Button2 = New System.Windows.Forms.Button()
- Me.pnlAprobar = New System.Windows.Forms.Panel()
- Me.btnAprobado = New System.Windows.Forms.Button()
- Me.lblMensajeReq = New System.Windows.Forms.Label()
- Me.vBindingSource = New System.Windows.Forms.BindingSource(Me.components)
- Me.Panel8 = New System.Windows.Forms.Panel()
- Me.btnReportoVenta = New System.Windows.Forms.Button()
- navSiguienteRegistro = New System.Windows.Forms.ToolStripButton()
- Me.Panel1.SuspendLayout()
- CType(Me.Navegador, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Navegador.SuspendLayout()
- CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TbBuscar.SuspendLayout()
- Me.GroupBox1.SuspendLayout()
- Me.pnlMenu.SuspendLayout()
- Me.pnlInstrumento.SuspendLayout()
- Me.pnlEmpresa.SuspendLayout()
- Me.pnlOrigenFondos.SuspendLayout()
- Me.pnlEmisor.SuspendLayout()
- Me.pnlPlazo.SuspendLayout()
- Me.pnlCalificacionRiesgo.SuspendLayout()
- Me.pnlEstadoProceso.SuspendLayout()
- Me.pnlCalificadora.SuspendLayout()
- Me.pnlTipMercado.SuspendLayout()
- Me.pnlPais.SuspendLayout()
- Me.pnlTipOper.SuspendLayout()
- Me.pnlEstado.SuspendLayout()
- Me.pnlCargaDatos.SuspendLayout()
- Me.pnlContenedor.SuspendLayout()
- Me.Panel3.SuspendLayout()
- Me.Panel9.SuspendLayout()
- Me.grpTipoMercado.SuspendLayout()
- Me.grpEstadoProceso.SuspendLayout()
- Me.grpTipoOperacion.SuspendLayout()
- Me.grpEstadoDocumento.SuspendLayout()
- Me.grpPais.SuspendLayout()
- Me.grpCalificadoraRiesgo.SuspendLayout()
- Me.grpCalificacionRiesgo.SuspendLayout()
- Me.grpEmisor.SuspendLayout()
- Me.grpPlazo.SuspendLayout()
- Me.grpOrigenFondos.SuspendLayout()
- Me.grpInstrumentos.SuspendLayout()
- Me.grpEmpresas.SuspendLayout()
- Me.TbIngresarModificar.SuspendLayout()
- Me.Panel4.SuspendLayout()
- Me.Panel7.SuspendLayout()
- Me.TableLayoutPanel1.SuspendLayout()
- Me.tabDetalleInstrumentos.SuspendLayout()
- Me.tabNotas.SuspendLayout()
- Me.tabAnexos.SuspendLayout()
- CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel6.SuspendLayout()
- Me.Panel2.SuspendLayout()
- Me.TableLayoutPanel2.SuspendLayout()
- Me.GroupBox6.SuspendLayout()
- Me.GroupBox5.SuspendLayout()
- Me.GroupBox4.SuspendLayout()
- Me.GroupBox3.SuspendLayout()
- Me.GroupBox7.SuspendLayout()
- Me.GroupBox8.SuspendLayout()
- Me.GroupBox9.SuspendLayout()
- Me.GroupBox10.SuspendLayout()
- Me.GroupBox11.SuspendLayout()
- Me.GroupBox12.SuspendLayout()
- Me.GroupBox13.SuspendLayout()
- Me.GroupBox14.SuspendLayout()
- Me.GroupBox15.SuspendLayout()
- Me.GroupBox16.SuspendLayout()
- Me.Panel5.SuspendLayout()
- Me.GroupBox2.SuspendLayout()
- Me.TabCampos.SuspendLayout()
- Me.pnlCorregir.SuspendLayout()
- Me.pnlAnexar.SuspendLayout()
- Me.pnlAprobar.SuspendLayout()
- CType(Me.vBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel8.SuspendLayout()
- Me.SuspendLayout()
- '
- 'navSiguienteRegistro
- '
- navSiguienteRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- navSiguienteRegistro.Image = CType(resources.GetObject("navSiguienteRegistro.Image"), System.Drawing.Image)
- navSiguienteRegistro.Name = "navSiguienteRegistro"
- navSiguienteRegistro.RightToLeftAutoMirrorImage = True
- navSiguienteRegistro.Size = New System.Drawing.Size(23, 22)
- navSiguienteRegistro.Text = "Mover siguiente"
- AddHandler navSiguienteRegistro.Click, AddressOf Me.navSiguienteRegistro_Click
- '
- 'Panel1
- '
- Me.Panel1.Controls.Add(Me.btnCancelar)
- Me.Panel1.Controls.Add(Me.btnAccion)
- Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
- Me.Panel1.Location = New System.Drawing.Point(0, 686)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(1152, 70)
- Me.Panel1.TabIndex = 107
- '
- 'btnCancelar
- '
- Me.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel
- Me.btnCancelar.Location = New System.Drawing.Point(97, 26)
- Me.btnCancelar.Name = "btnCancelar"
- Me.btnCancelar.Size = New System.Drawing.Size(75, 23)
- Me.btnCancelar.TabIndex = 141
- Me.btnCancelar.Text = "Cancelar"
- Me.btnCancelar.UseVisualStyleBackColor = True
- '
- 'btnAccion
- '
- Me.btnAccion.Location = New System.Drawing.Point(16, 26)
- Me.btnAccion.Name = "btnAccion"
- Me.btnAccion.Size = New System.Drawing.Size(75, 23)
- Me.btnAccion.TabIndex = 115
- Me.btnAccion.Text = "Aceptar"
- Me.btnAccion.UseVisualStyleBackColor = True
- '
- 'Navegador
- '
- Me.Navegador.AddNewItem = Me.navNuevoRegistro
- Me.Navegador.CountItem = Me.BindingNavigatorCountItem
- Me.Navegador.DeleteItem = Nothing
- 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})
- Me.Navegador.Location = New System.Drawing.Point(0, 0)
- Me.Navegador.MoveFirstItem = Me.BindingNavigatorPositionItem
- Me.Navegador.MoveLastItem = Nothing
- Me.Navegador.MoveNextItem = Me.BindingNavigatorPositionItem
- Me.Navegador.MovePreviousItem = Nothing
- Me.Navegador.Name = "Navegador"
- Me.Navegador.PositionItem = Me.BindingNavigatorPositionItem
- Me.Navegador.Size = New System.Drawing.Size(1152, 25)
- Me.Navegador.TabIndex = 112
- Me.Navegador.Text = "BindingNavigator1"
- '
- 'navNuevoRegistro
- '
- Me.navNuevoRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navNuevoRegistro.Enabled = False
- Me.navNuevoRegistro.Image = CType(resources.GetObject("navNuevoRegistro.Image"), System.Drawing.Image)
- Me.navNuevoRegistro.Name = "navNuevoRegistro"
- Me.navNuevoRegistro.RightToLeftAutoMirrorImage = True
- Me.navNuevoRegistro.Size = New System.Drawing.Size(23, 22)
- Me.navNuevoRegistro.Text = "Agregar nuevo"
- Me.navNuevoRegistro.Visible = False
- '
- 'BindingNavigatorCountItem
- '
- Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(37, 22)
- Me.BindingNavigatorCountItem.Text = "de {0}"
- Me.BindingNavigatorCountItem.ToolTipText = "Número total de elementos"
- '
- 'navPrimerRegistro
- '
- Me.navPrimerRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navPrimerRegistro.Image = CType(resources.GetObject("navPrimerRegistro.Image"), System.Drawing.Image)
- Me.navPrimerRegistro.Name = "navPrimerRegistro"
- Me.navPrimerRegistro.RightToLeftAutoMirrorImage = True
- Me.navPrimerRegistro.Size = New System.Drawing.Size(23, 22)
- Me.navPrimerRegistro.Text = "Mover primero"
- '
- 'navRegistroAnterior
- '
- Me.navRegistroAnterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navRegistroAnterior.Image = CType(resources.GetObject("navRegistroAnterior.Image"), System.Drawing.Image)
- Me.navRegistroAnterior.Name = "navRegistroAnterior"
- Me.navRegistroAnterior.RightToLeftAutoMirrorImage = True
- Me.navRegistroAnterior.Size = New System.Drawing.Size(23, 22)
- Me.navRegistroAnterior.Text = "Mover anterior"
- '
- 'BindingNavigatorSeparator
- '
- Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
- '
- 'BindingNavigatorPositionItem
- '
- Me.BindingNavigatorPositionItem.AccessibleName = "Posición"
- Me.BindingNavigatorPositionItem.AutoSize = False
- Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Posición actual"
- '
- 'BindingNavigatorSeparator1
- '
- Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
- '
- 'navUltimoRegistro
- '
- Me.navUltimoRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navUltimoRegistro.Image = CType(resources.GetObject("navUltimoRegistro.Image"), System.Drawing.Image)
- Me.navUltimoRegistro.Name = "navUltimoRegistro"
- Me.navUltimoRegistro.RightToLeftAutoMirrorImage = True
- Me.navUltimoRegistro.Size = New System.Drawing.Size(23, 22)
- Me.navUltimoRegistro.Text = "Mover último"
- '
- 'BindingNavigatorSeparator2
- '
- Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
- '
- 'navNuevo
- '
- Me.navNuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navNuevo.Image = CType(resources.GetObject("navNuevo.Image"), System.Drawing.Image)
- Me.navNuevo.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navNuevo.Name = "navNuevo"
- Me.navNuevo.Size = New System.Drawing.Size(23, 22)
- Me.navNuevo.Text = "Nuevo"
- '
- 'navModificar
- '
- Me.navModificar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navModificar.Image = CType(resources.GetObject("navModificar.Image"), System.Drawing.Image)
- Me.navModificar.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navModificar.Name = "navModificar"
- Me.navModificar.Size = New System.Drawing.Size(23, 22)
- Me.navModificar.Text = "Modificar"
- '
- 'navEliminar
- '
- Me.navEliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navEliminar.Image = CType(resources.GetObject("navEliminar.Image"), System.Drawing.Image)
- Me.navEliminar.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navEliminar.Name = "navEliminar"
- Me.navEliminar.Size = New System.Drawing.Size(23, 22)
- Me.navEliminar.Text = "Eliminar"
- '
- 'navBuscar
- '
- Me.navBuscar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navBuscar.Image = CType(resources.GetObject("navBuscar.Image"), System.Drawing.Image)
- Me.navBuscar.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navBuscar.Name = "navBuscar"
- Me.navBuscar.Size = New System.Drawing.Size(23, 22)
- Me.navBuscar.Text = "Buscar"
- Me.navBuscar.ToolTipText = "Buscar"
- '
- 'navRecorrer
- '
- Me.navRecorrer.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navRecorrer.Image = Global.Inversiones.My.Resources.Resources.Busqueda
- Me.navRecorrer.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navRecorrer.Name = "navRecorrer"
- Me.navRecorrer.Size = New System.Drawing.Size(23, 22)
- Me.navRecorrer.Text = "ToolStripButton1"
- '
- 'navEliminarRegistro
- '
- Me.navEliminarRegistro.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navEliminarRegistro.Enabled = False
- Me.navEliminarRegistro.Image = CType(resources.GetObject("navEliminarRegistro.Image"), System.Drawing.Image)
- Me.navEliminarRegistro.Name = "navEliminarRegistro"
- Me.navEliminarRegistro.RightToLeftAutoMirrorImage = True
- Me.navEliminarRegistro.Size = New System.Drawing.Size(23, 22)
- Me.navEliminarRegistro.Text = "Eliminar"
- Me.navEliminarRegistro.Visible = False
- '
- 'btnReporte
- '
- Me.btnReporte.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.btnReporte.Image = CType(resources.GetObject("btnReporte.Image"), System.Drawing.Image)
- Me.btnReporte.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.btnReporte.Name = "btnReporte"
- Me.btnReporte.Size = New System.Drawing.Size(23, 22)
- Me.btnReporte.Text = "Reportes"
- '
- 'InversionesDEVDataSet5
- '
- Me.InversionesDEVDataSet5.DataSetName = "InversionesDEVDataSet5"
- Me.InversionesDEVDataSet5.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
- '
- 'Label22
- '
- Me.Label22.AutoSize = True
- Me.Label22.Font = New System.Drawing.Font("Trebuchet MS", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label22.Location = New System.Drawing.Point(25, 35)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(111, 24)
- Me.Label22.TabIndex = 161
- Me.Label22.Text = "Inversiones"
- '
- 'TbBuscar
- '
- Me.TbBuscar.Controls.Add(Me.GroupBox1)
- Me.TbBuscar.Location = New System.Drawing.Point(4, 22)
- Me.TbBuscar.Name = "TbBuscar"
- Me.TbBuscar.Padding = New System.Windows.Forms.Padding(3)
- Me.TbBuscar.Size = New System.Drawing.Size(1045, 536)
- Me.TbBuscar.TabIndex = 1
- Me.TbBuscar.Text = "Buscar"
- Me.TbBuscar.UseVisualStyleBackColor = True
- '
- 'GroupBox1
- '
- Me.GroupBox1.BackColor = System.Drawing.Color.WhiteSmoke
- Me.GroupBox1.Controls.Add(Me.pnlMenu)
- Me.GroupBox1.Controls.Add(Me.pnlCargaDatos)
- Me.GroupBox1.Location = New System.Drawing.Point(22, 28)
- Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(1057, 552)
- Me.GroupBox1.TabIndex = 177
- Me.GroupBox1.TabStop = False
- '
- 'pnlMenu
- '
- Me.pnlMenu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlMenu.Controls.Add(Me.pnlInstrumento)
- Me.pnlMenu.Controls.Add(Me.pnlEmpresa)
- Me.pnlMenu.Controls.Add(Me.pnlOrigenFondos)
- Me.pnlMenu.Controls.Add(Me.pnlEmisor)
- Me.pnlMenu.Controls.Add(Me.pnlPlazo)
- Me.pnlMenu.Controls.Add(Me.pnlCalificacionRiesgo)
- Me.pnlMenu.Controls.Add(Me.pnlEstadoProceso)
- Me.pnlMenu.Controls.Add(Me.pnlCalificadora)
- Me.pnlMenu.Controls.Add(Me.pnlTipMercado)
- Me.pnlMenu.Controls.Add(Me.pnlPais)
- Me.pnlMenu.Controls.Add(Me.pnlTipOper)
- Me.pnlMenu.Controls.Add(Me.pnlEstado)
- Me.pnlMenu.Location = New System.Drawing.Point(0, 19)
- Me.pnlMenu.Name = "pnlMenu"
- Me.pnlMenu.Size = New System.Drawing.Size(231, 410)
- Me.pnlMenu.TabIndex = 189
- '
- 'pnlInstrumento
- '
- Me.pnlInstrumento.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlInstrumento.Controls.Add(Me.lblInstrumento)
- Me.pnlInstrumento.Location = New System.Drawing.Point(3, 36)
- Me.pnlInstrumento.Name = "pnlInstrumento"
- Me.pnlInstrumento.Size = New System.Drawing.Size(228, 33)
- Me.pnlInstrumento.TabIndex = 187
- '
- 'lblInstrumento
- '
- Me.lblInstrumento.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblInstrumento.AutoSize = True
- Me.lblInstrumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblInstrumento.Location = New System.Drawing.Point(68, 5)
- Me.lblInstrumento.Name = "lblInstrumento"
- Me.lblInstrumento.Size = New System.Drawing.Size(85, 18)
- Me.lblInstrumento.TabIndex = 62
- Me.lblInstrumento.Text = "Instrumentos"
- '
- 'pnlEmpresa
- '
- Me.pnlEmpresa.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlEmpresa.Controls.Add(Me.lblEmpresa)
- Me.pnlEmpresa.Location = New System.Drawing.Point(3, 4)
- Me.pnlEmpresa.Name = "pnlEmpresa"
- Me.pnlEmpresa.Size = New System.Drawing.Size(228, 33)
- Me.pnlEmpresa.TabIndex = 186
- '
- 'lblEmpresa
- '
- Me.lblEmpresa.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblEmpresa.AutoSize = True
- Me.lblEmpresa.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblEmpresa.Location = New System.Drawing.Point(82, 7)
- Me.lblEmpresa.Name = "lblEmpresa"
- Me.lblEmpresa.Size = New System.Drawing.Size(64, 18)
- Me.lblEmpresa.TabIndex = 62
- Me.lblEmpresa.Text = "Empresas"
- '
- 'pnlOrigenFondos
- '
- Me.pnlOrigenFondos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlOrigenFondos.Controls.Add(Me.lblOrigenFondos)
- Me.pnlOrigenFondos.Location = New System.Drawing.Point(3, 70)
- Me.pnlOrigenFondos.Name = "pnlOrigenFondos"
- Me.pnlOrigenFondos.Size = New System.Drawing.Size(228, 33)
- Me.pnlOrigenFondos.TabIndex = 162
- '
- 'lblOrigenFondos
- '
- Me.lblOrigenFondos.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblOrigenFondos.AutoSize = True
- Me.lblOrigenFondos.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblOrigenFondos.Location = New System.Drawing.Point(45, 6)
- Me.lblOrigenFondos.Name = "lblOrigenFondos"
- Me.lblOrigenFondos.Size = New System.Drawing.Size(130, 18)
- Me.lblOrigenFondos.TabIndex = 62
- Me.lblOrigenFondos.Text = "Origen de los Fondos"
- '
- 'pnlEmisor
- '
- Me.pnlEmisor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlEmisor.Controls.Add(Me.lblEmisor)
- Me.pnlEmisor.Location = New System.Drawing.Point(3, 138)
- Me.pnlEmisor.Name = "pnlEmisor"
- Me.pnlEmisor.Size = New System.Drawing.Size(228, 33)
- Me.pnlEmisor.TabIndex = 163
- '
- 'lblEmisor
- '
- Me.lblEmisor.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblEmisor.AutoSize = True
- Me.lblEmisor.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblEmisor.Location = New System.Drawing.Point(87, 6)
- Me.lblEmisor.Name = "lblEmisor"
- Me.lblEmisor.Size = New System.Drawing.Size(48, 18)
- Me.lblEmisor.TabIndex = 59
- Me.lblEmisor.Text = "Emisor"
- '
- 'pnlPlazo
- '
- Me.pnlPlazo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlPlazo.Controls.Add(Me.lblPlazo)
- Me.pnlPlazo.Location = New System.Drawing.Point(3, 104)
- Me.pnlPlazo.Name = "pnlPlazo"
- Me.pnlPlazo.Size = New System.Drawing.Size(228, 33)
- Me.pnlPlazo.TabIndex = 0
- '
- 'lblPlazo
- '
- Me.lblPlazo.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblPlazo.AutoSize = True
- Me.lblPlazo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblPlazo.Location = New System.Drawing.Point(92, 7)
- Me.lblPlazo.Name = "lblPlazo"
- Me.lblPlazo.Size = New System.Drawing.Size(38, 18)
- Me.lblPlazo.TabIndex = 78
- Me.lblPlazo.Text = "Plazo"
- '
- 'pnlCalificacionRiesgo
- '
- Me.pnlCalificacionRiesgo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlCalificacionRiesgo.Controls.Add(Me.lblCalificacionRiesgo)
- Me.pnlCalificacionRiesgo.Location = New System.Drawing.Point(3, 172)
- Me.pnlCalificacionRiesgo.Name = "pnlCalificacionRiesgo"
- Me.pnlCalificacionRiesgo.Size = New System.Drawing.Size(228, 33)
- Me.pnlCalificacionRiesgo.TabIndex = 164
- '
- 'lblCalificacionRiesgo
- '
- Me.lblCalificacionRiesgo.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblCalificacionRiesgo.AutoSize = True
- Me.lblCalificacionRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblCalificacionRiesgo.Location = New System.Drawing.Point(42, 4)
- Me.lblCalificacionRiesgo.Name = "lblCalificacionRiesgo"
- Me.lblCalificacionRiesgo.Size = New System.Drawing.Size(137, 18)
- Me.lblCalificacionRiesgo.TabIndex = 60
- Me.lblCalificacionRiesgo.Text = "Calificación de Riesgo"
- '
- 'pnlEstadoProceso
- '
- Me.pnlEstadoProceso.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlEstadoProceso.Controls.Add(Me.lblEstadoProceso)
- Me.pnlEstadoProceso.Location = New System.Drawing.Point(3, 308)
- Me.pnlEstadoProceso.Name = "pnlEstadoProceso"
- Me.pnlEstadoProceso.Size = New System.Drawing.Size(228, 33)
- Me.pnlEstadoProceso.TabIndex = 185
- '
- 'lblEstadoProceso
- '
- Me.lblEstadoProceso.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblEstadoProceso.AutoSize = True
- Me.lblEstadoProceso.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblEstadoProceso.Location = New System.Drawing.Point(69, 5)
- Me.lblEstadoProceso.Name = "lblEstadoProceso"
- Me.lblEstadoProceso.Size = New System.Drawing.Size(95, 18)
- Me.lblEstadoProceso.TabIndex = 63
- Me.lblEstadoProceso.Text = "Estado Proceso"
- '
- 'pnlCalificadora
- '
- Me.pnlCalificadora.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlCalificadora.Controls.Add(Me.lblCalificadora)
- Me.pnlCalificadora.Location = New System.Drawing.Point(3, 206)
- Me.pnlCalificadora.Name = "pnlCalificadora"
- Me.pnlCalificadora.Size = New System.Drawing.Size(228, 33)
- Me.pnlCalificadora.TabIndex = 180
- '
- 'lblCalificadora
- '
- Me.lblCalificadora.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblCalificadora.AutoSize = True
- Me.lblCalificadora.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblCalificadora.Location = New System.Drawing.Point(72, 6)
- Me.lblCalificadora.Name = "lblCalificadora"
- Me.lblCalificadora.Size = New System.Drawing.Size(78, 18)
- Me.lblCalificadora.TabIndex = 61
- Me.lblCalificadora.Text = "Calificadora"
- '
- 'pnlTipMercado
- '
- Me.pnlTipMercado.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlTipMercado.Controls.Add(Me.lblTipoMercado)
- Me.pnlTipMercado.Location = New System.Drawing.Point(3, 376)
- Me.pnlTipMercado.Name = "pnlTipMercado"
- Me.pnlTipMercado.Size = New System.Drawing.Size(228, 33)
- Me.pnlTipMercado.TabIndex = 184
- '
- 'lblTipoMercado
- '
- Me.lblTipoMercado.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblTipoMercado.AutoSize = True
- Me.lblTipoMercado.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.lblTipoMercado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblTipoMercado.Location = New System.Drawing.Point(67, 5)
- Me.lblTipoMercado.Name = "lblTipoMercado"
- Me.lblTipoMercado.Size = New System.Drawing.Size(86, 18)
- Me.lblTipoMercado.TabIndex = 159
- Me.lblTipoMercado.Text = "Tipo Mercado"
- '
- 'pnlPais
- '
- Me.pnlPais.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlPais.Controls.Add(Me.lblPais)
- Me.pnlPais.Location = New System.Drawing.Point(3, 240)
- Me.pnlPais.Name = "pnlPais"
- Me.pnlPais.Size = New System.Drawing.Size(228, 33)
- Me.pnlPais.TabIndex = 181
- '
- 'lblPais
- '
- Me.lblPais.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblPais.AutoSize = True
- Me.lblPais.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.lblPais.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblPais.Location = New System.Drawing.Point(91, 7)
- Me.lblPais.Name = "lblPais"
- Me.lblPais.Size = New System.Drawing.Size(31, 18)
- Me.lblPais.TabIndex = 157
- Me.lblPais.Text = "Pais"
- '
- 'pnlTipOper
- '
- Me.pnlTipOper.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlTipOper.Controls.Add(Me.lblTipoOperacion)
- Me.pnlTipOper.Location = New System.Drawing.Point(3, 342)
- Me.pnlTipOper.Name = "pnlTipOper"
- Me.pnlTipOper.Size = New System.Drawing.Size(228, 33)
- Me.pnlTipOper.TabIndex = 183
- '
- 'lblTipoOperacion
- '
- Me.lblTipoOperacion.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblTipoOperacion.AutoSize = True
- Me.lblTipoOperacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblTipoOperacion.Location = New System.Drawing.Point(61, 7)
- Me.lblTipoOperacion.Name = "lblTipoOperacion"
- Me.lblTipoOperacion.Size = New System.Drawing.Size(96, 18)
- Me.lblTipoOperacion.TabIndex = 89
- Me.lblTipoOperacion.Text = "Tipo Operación"
- '
- 'pnlEstado
- '
- Me.pnlEstado.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlEstado.Controls.Add(Me.lblEstado)
- Me.pnlEstado.Location = New System.Drawing.Point(3, 274)
- Me.pnlEstado.Name = "pnlEstado"
- Me.pnlEstado.Size = New System.Drawing.Size(228, 33)
- Me.pnlEstado.TabIndex = 182
- '
- 'lblEstado
- '
- Me.lblEstado.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblEstado.AutoSize = True
- Me.lblEstado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblEstado.Location = New System.Drawing.Point(87, 6)
- Me.lblEstado.Name = "lblEstado"
- Me.lblEstado.Size = New System.Drawing.Size(47, 18)
- Me.lblEstado.TabIndex = 90
- Me.lblEstado.Text = "Estado"
- '
- 'pnlCargaDatos
- '
- Me.pnlCargaDatos.AutoScroll = True
- Me.pnlCargaDatos.Controls.Add(Me.pnlContenedor)
- Me.pnlCargaDatos.Location = New System.Drawing.Point(231, 19)
- Me.pnlCargaDatos.Name = "pnlCargaDatos"
- Me.pnlCargaDatos.Size = New System.Drawing.Size(814, 485)
- Me.pnlCargaDatos.TabIndex = 191
- '
- 'pnlContenedor
- '
- Me.pnlContenedor.BackColor = System.Drawing.Color.White
- Me.pnlContenedor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.pnlContenedor.Controls.Add(Me.Panel3)
- Me.pnlContenedor.Controls.Add(Me.Panel9)
- Me.pnlContenedor.Controls.Add(Me.grpTipoMercado)
- Me.pnlContenedor.Controls.Add(Me.grpEstadoProceso)
- Me.pnlContenedor.Controls.Add(Me.grpTipoOperacion)
- Me.pnlContenedor.Controls.Add(Me.grpEstadoDocumento)
- Me.pnlContenedor.Controls.Add(Me.grpPais)
- Me.pnlContenedor.Controls.Add(Me.grpCalificadoraRiesgo)
- Me.pnlContenedor.Controls.Add(Me.grpCalificacionRiesgo)
- Me.pnlContenedor.Controls.Add(Me.grpEmisor)
- Me.pnlContenedor.Controls.Add(Me.grpPlazo)
- Me.pnlContenedor.Controls.Add(Me.grpOrigenFondos)
- Me.pnlContenedor.Controls.Add(Me.grpInstrumentos)
- Me.pnlContenedor.Controls.Add(Me.grpEmpresas)
- Me.pnlContenedor.Location = New System.Drawing.Point(-2, 3)
- Me.pnlContenedor.Name = "pnlContenedor"
- Me.pnlContenedor.Size = New System.Drawing.Size(339, 404)
- Me.pnlContenedor.TabIndex = 161
- Me.pnlContenedor.Visible = False
- '
- 'Panel3
- '
- Me.Panel3.Controls.Add(Me.Label31)
- Me.Panel3.Controls.Add(Me.txtBuscar)
- Me.Panel3.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel3.Location = New System.Drawing.Point(0, 0)
- Me.Panel3.Name = "Panel3"
- Me.Panel3.Size = New System.Drawing.Size(335, 37)
- Me.Panel3.TabIndex = 171
- '
- 'Label31
- '
- Me.Label31.AutoSize = True
- Me.Label31.Location = New System.Drawing.Point(57, 10)
- Me.Label31.Name = "Label31"
- Me.Label31.Size = New System.Drawing.Size(40, 13)
- Me.Label31.TabIndex = 1
- Me.Label31.Text = "Buscar"
- '
- 'txtBuscar
- '
- Me.txtBuscar.Location = New System.Drawing.Point(107, 7)
- Me.txtBuscar.Name = "txtBuscar"
- Me.txtBuscar.Size = New System.Drawing.Size(171, 20)
- Me.txtBuscar.TabIndex = 0
- '
- 'Panel9
- '
- Me.Panel9.Controls.Add(Me.btnCancel)
- Me.Panel9.Controls.Add(Me.btnAceptar)
- Me.Panel9.Dock = System.Windows.Forms.DockStyle.Bottom
- Me.Panel9.Location = New System.Drawing.Point(0, 358)
- Me.Panel9.Name = "Panel9"
- Me.Panel9.Size = New System.Drawing.Size(335, 42)
- Me.Panel9.TabIndex = 170
- '
- 'btnCancel
- '
- Me.btnCancel.Location = New System.Drawing.Point(195, 13)
- Me.btnCancel.Name = "btnCancel"
- Me.btnCancel.Size = New System.Drawing.Size(75, 23)
- Me.btnCancel.TabIndex = 1
- Me.btnCancel.Text = "Cancelar"
- Me.btnCancel.UseVisualStyleBackColor = True
- '
- 'btnAceptar
- '
- Me.btnAceptar.Location = New System.Drawing.Point(47, 13)
- Me.btnAceptar.Name = "btnAceptar"
- Me.btnAceptar.Size = New System.Drawing.Size(75, 23)
- Me.btnAceptar.TabIndex = 0
- Me.btnAceptar.Text = "Aceptar"
- Me.btnAceptar.UseVisualStyleBackColor = True
- '
- 'grpTipoMercado
- '
- Me.grpTipoMercado.Controls.Add(Me.flpTipoMercado)
- Me.grpTipoMercado.Location = New System.Drawing.Point(540, 492)
- Me.grpTipoMercado.Name = "grpTipoMercado"
- Me.grpTipoMercado.Size = New System.Drawing.Size(216, 131)
- Me.grpTipoMercado.TabIndex = 167
- Me.grpTipoMercado.TabStop = False
- Me.grpTipoMercado.Text = "Tipo de Mercado"
- Me.grpTipoMercado.Visible = False
- '
- 'flpTipoMercado
- '
- Me.flpTipoMercado.AutoScroll = True
- Me.flpTipoMercado.Location = New System.Drawing.Point(0, 19)
- Me.flpTipoMercado.Name = "flpTipoMercado"
- Me.flpTipoMercado.Size = New System.Drawing.Size(216, 106)
- Me.flpTipoMercado.TabIndex = 171
- '
- 'grpEstadoProceso
- '
- Me.grpEstadoProceso.Controls.Add(Me.flpEstadoProceso)
- Me.grpEstadoProceso.Location = New System.Drawing.Point(540, 344)
- Me.grpEstadoProceso.Name = "grpEstadoProceso"
- Me.grpEstadoProceso.Size = New System.Drawing.Size(216, 131)
- Me.grpEstadoProceso.TabIndex = 169
- Me.grpEstadoProceso.TabStop = False
- Me.grpEstadoProceso.Text = "Estado Proceso"
- Me.grpEstadoProceso.Visible = False
- '
- 'flpEstadoProceso
- '
- Me.flpEstadoProceso.AutoScroll = True
- Me.flpEstadoProceso.Location = New System.Drawing.Point(0, 22)
- Me.flpEstadoProceso.Name = "flpEstadoProceso"
- Me.flpEstadoProceso.Size = New System.Drawing.Size(213, 109)
- Me.flpEstadoProceso.TabIndex = 171
- '
- 'grpTipoOperacion
- '
- Me.grpTipoOperacion.Controls.Add(Me.flpTipoOperacion)
- Me.grpTipoOperacion.Location = New System.Drawing.Point(540, 172)
- Me.grpTipoOperacion.Name = "grpTipoOperacion"
- Me.grpTipoOperacion.Size = New System.Drawing.Size(216, 131)
- Me.grpTipoOperacion.TabIndex = 168
- Me.grpTipoOperacion.TabStop = False
- Me.grpTipoOperacion.Text = "Tipo de Operacion"
- Me.grpTipoOperacion.Visible = False
- '
- 'flpTipoOperacion
- '
- Me.flpTipoOperacion.AutoScroll = True
- Me.flpTipoOperacion.Location = New System.Drawing.Point(0, 19)
- Me.flpTipoOperacion.Name = "flpTipoOperacion"
- Me.flpTipoOperacion.Size = New System.Drawing.Size(216, 112)
- Me.flpTipoOperacion.TabIndex = 170
- '
- 'grpEstadoDocumento
- '
- Me.grpEstadoDocumento.Controls.Add(Me.flpEstadoDocumento)
- Me.grpEstadoDocumento.Location = New System.Drawing.Point(540, 14)
- Me.grpEstadoDocumento.Name = "grpEstadoDocumento"
- Me.grpEstadoDocumento.Size = New System.Drawing.Size(216, 131)
- Me.grpEstadoDocumento.TabIndex = 167
- Me.grpEstadoDocumento.TabStop = False
- Me.grpEstadoDocumento.Text = "Estado del Documento"
- Me.grpEstadoDocumento.Visible = False
- '
- 'flpEstadoDocumento
- '
- Me.flpEstadoDocumento.AutoScroll = True
- Me.flpEstadoDocumento.Location = New System.Drawing.Point(0, 19)
- Me.flpEstadoDocumento.Name = "flpEstadoDocumento"
- Me.flpEstadoDocumento.Size = New System.Drawing.Size(210, 111)
- Me.flpEstadoDocumento.TabIndex = 170
- '
- 'grpPais
- '
- Me.grpPais.Controls.Add(Me.flpPais)
- Me.grpPais.Location = New System.Drawing.Point(276, 492)
- Me.grpPais.Name = "grpPais"
- Me.grpPais.Size = New System.Drawing.Size(216, 131)
- Me.grpPais.TabIndex = 166
- Me.grpPais.TabStop = False
- Me.grpPais.Text = "Pais"
- Me.grpPais.Visible = False
- '
- 'flpPais
- '
- Me.flpPais.AutoScroll = True
- Me.flpPais.Location = New System.Drawing.Point(0, 19)
- Me.flpPais.Name = "flpPais"
- Me.flpPais.Size = New System.Drawing.Size(216, 112)
- Me.flpPais.TabIndex = 171
- '
- 'grpCalificadoraRiesgo
- '
- Me.grpCalificadoraRiesgo.Controls.Add(Me.flpCalificadoraRiesgo)
- Me.grpCalificadoraRiesgo.Location = New System.Drawing.Point(276, 344)
- Me.grpCalificadoraRiesgo.Name = "grpCalificadoraRiesgo"
- Me.grpCalificadoraRiesgo.Size = New System.Drawing.Size(216, 131)
- Me.grpCalificadoraRiesgo.TabIndex = 165
- Me.grpCalificadoraRiesgo.TabStop = False
- Me.grpCalificadoraRiesgo.Text = "Calificadora de Riesgo"
- Me.grpCalificadoraRiesgo.Visible = False
- '
- 'flpCalificadoraRiesgo
- '
- Me.flpCalificadoraRiesgo.AutoScroll = True
- Me.flpCalificadoraRiesgo.Location = New System.Drawing.Point(0, 22)
- Me.flpCalificadoraRiesgo.Name = "flpCalificadoraRiesgo"
- Me.flpCalificadoraRiesgo.Size = New System.Drawing.Size(216, 108)
- Me.flpCalificadoraRiesgo.TabIndex = 171
- '
- 'grpCalificacionRiesgo
- '
- Me.grpCalificacionRiesgo.Controls.Add(Me.flpCalificacionRiesgo)
- Me.grpCalificacionRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.System
- Me.grpCalificacionRiesgo.Location = New System.Drawing.Point(276, 172)
- Me.grpCalificacionRiesgo.Name = "grpCalificacionRiesgo"
- Me.grpCalificacionRiesgo.Size = New System.Drawing.Size(216, 131)
- Me.grpCalificacionRiesgo.TabIndex = 164
- Me.grpCalificacionRiesgo.TabStop = False
- Me.grpCalificacionRiesgo.Text = "Calificacion de Riesgo"
- Me.grpCalificacionRiesgo.Visible = False
- '
- 'flpCalificacionRiesgo
- '
- Me.flpCalificacionRiesgo.AutoScroll = True
- Me.flpCalificacionRiesgo.Location = New System.Drawing.Point(0, 19)
- Me.flpCalificacionRiesgo.Name = "flpCalificacionRiesgo"
- Me.flpCalificacionRiesgo.Size = New System.Drawing.Size(216, 112)
- Me.flpCalificacionRiesgo.TabIndex = 170
- '
- 'grpEmisor
- '
- Me.grpEmisor.Controls.Add(Me.flpEmisor)
- Me.grpEmisor.Location = New System.Drawing.Point(276, 14)
- Me.grpEmisor.Name = "grpEmisor"
- Me.grpEmisor.Size = New System.Drawing.Size(216, 131)
- Me.grpEmisor.TabIndex = 163
- Me.grpEmisor.TabStop = False
- Me.grpEmisor.Text = "Emisor"
- Me.grpEmisor.Visible = False
- '
- 'flpEmisor
- '
- Me.flpEmisor.AutoScroll = True
- Me.flpEmisor.Location = New System.Drawing.Point(0, 19)
- Me.flpEmisor.Name = "flpEmisor"
- Me.flpEmisor.Size = New System.Drawing.Size(216, 111)
- Me.flpEmisor.TabIndex = 170
- '
- 'grpPlazo
- '
- Me.grpPlazo.Controls.Add(Me.flpPlazo)
- Me.grpPlazo.Location = New System.Drawing.Point(17, 492)
- Me.grpPlazo.Name = "grpPlazo"
- Me.grpPlazo.Size = New System.Drawing.Size(216, 131)
- Me.grpPlazo.TabIndex = 162
- Me.grpPlazo.TabStop = False
- Me.grpPlazo.Text = "Plazo"
- Me.grpPlazo.Visible = False
- '
- 'flpPlazo
- '
- Me.flpPlazo.AutoScroll = True
- Me.flpPlazo.Location = New System.Drawing.Point(0, 19)
- Me.flpPlazo.Name = "flpPlazo"
- Me.flpPlazo.Size = New System.Drawing.Size(216, 109)
- Me.flpPlazo.TabIndex = 171
- '
- 'grpOrigenFondos
- '
- Me.grpOrigenFondos.Controls.Add(Me.flpOrigenFondos)
- Me.grpOrigenFondos.Location = New System.Drawing.Point(17, 335)
- Me.grpOrigenFondos.Name = "grpOrigenFondos"
- Me.grpOrigenFondos.Size = New System.Drawing.Size(216, 131)
- Me.grpOrigenFondos.TabIndex = 161
- Me.grpOrigenFondos.TabStop = False
- Me.grpOrigenFondos.Text = "Origen de Fondos"
- Me.grpOrigenFondos.Visible = False
- '
- 'flpOrigenFondos
- '
- Me.flpOrigenFondos.AutoScroll = True
- Me.flpOrigenFondos.Location = New System.Drawing.Point(0, 19)
- Me.flpOrigenFondos.Name = "flpOrigenFondos"
- Me.flpOrigenFondos.Size = New System.Drawing.Size(216, 112)
- Me.flpOrigenFondos.TabIndex = 170
- '
- 'grpInstrumentos
- '
- Me.grpInstrumentos.Controls.Add(Me.flpInstrumentos)
- Me.grpInstrumentos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.grpInstrumentos.Location = New System.Drawing.Point(17, 172)
- Me.grpInstrumentos.Name = "grpInstrumentos"
- Me.grpInstrumentos.Size = New System.Drawing.Size(216, 131)
- Me.grpInstrumentos.TabIndex = 160
- Me.grpInstrumentos.TabStop = False
- Me.grpInstrumentos.Text = "Instrumentos"
- Me.grpInstrumentos.Visible = False
- '
- 'flpInstrumentos
- '
- Me.flpInstrumentos.AutoScroll = True
- Me.flpInstrumentos.Location = New System.Drawing.Point(0, 19)
- Me.flpInstrumentos.Name = "flpInstrumentos"
- Me.flpInstrumentos.Size = New System.Drawing.Size(216, 112)
- Me.flpInstrumentos.TabIndex = 170
- '
- 'grpEmpresas
- '
- Me.grpEmpresas.Controls.Add(Me.flpEmpresas)
- Me.grpEmpresas.Location = New System.Drawing.Point(17, 14)
- Me.grpEmpresas.Name = "grpEmpresas"
- Me.grpEmpresas.Size = New System.Drawing.Size(216, 131)
- Me.grpEmpresas.TabIndex = 159
- Me.grpEmpresas.TabStop = False
- Me.grpEmpresas.Text = "Empresas"
- Me.grpEmpresas.Visible = False
- '
- 'flpEmpresas
- '
- Me.flpEmpresas.AutoScroll = True
- Me.flpEmpresas.Location = New System.Drawing.Point(0, 19)
- Me.flpEmpresas.Name = "flpEmpresas"
- Me.flpEmpresas.Size = New System.Drawing.Size(216, 112)
- Me.flpEmpresas.TabIndex = 2
- '
- 'TbIngresarModificar
- '
- Me.TbIngresarModificar.Controls.Add(Me.Panel4)
- Me.TbIngresarModificar.Location = New System.Drawing.Point(4, 22)
- Me.TbIngresarModificar.Name = "TbIngresarModificar"
- Me.TbIngresarModificar.Padding = New System.Windows.Forms.Padding(3)
- Me.TbIngresarModificar.Size = New System.Drawing.Size(1045, 536)
- Me.TbIngresarModificar.TabIndex = 0
- Me.TbIngresarModificar.Text = "Ingresar o Modificar"
- Me.TbIngresarModificar.UseVisualStyleBackColor = True
- '
- 'Panel4
- '
- Me.Panel4.Controls.Add(Me.Panel7)
- Me.Panel4.Controls.Add(Me.Panel6)
- Me.Panel4.Controls.Add(Me.Panel5)
- Me.Panel4.Dock = System.Windows.Forms.DockStyle.Fill
- Me.Panel4.Location = New System.Drawing.Point(3, 3)
- Me.Panel4.Name = "Panel4"
- Me.Panel4.Size = New System.Drawing.Size(1039, 530)
- Me.Panel4.TabIndex = 179
- '
- 'Panel7
- '
- Me.Panel7.Controls.Add(Me.TableLayoutPanel1)
- Me.Panel7.Dock = System.Windows.Forms.DockStyle.Fill
- Me.Panel7.Location = New System.Drawing.Point(0, 248)
- Me.Panel7.Name = "Panel7"
- Me.Panel7.Size = New System.Drawing.Size(1039, 282)
- Me.Panel7.TabIndex = 181
- '
- 'TableLayoutPanel1
- '
- Me.TableLayoutPanel1.ColumnCount = 1
- Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
- Me.TableLayoutPanel1.Controls.Add(Me.tabDetalleInstrumentos, 0, 0)
- Me.TableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.TableLayoutPanel1.Location = New System.Drawing.Point(0, 0)
- Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
- Me.TableLayoutPanel1.RowCount = 1
- Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
- Me.TableLayoutPanel1.Size = New System.Drawing.Size(1039, 282)
- Me.TableLayoutPanel1.TabIndex = 0
- '
- 'tabDetalleInstrumentos
- '
- Me.tabDetalleInstrumentos.Controls.Add(Me.tabNotas)
- Me.tabDetalleInstrumentos.Controls.Add(Me.tabAnexos)
- Me.tabDetalleInstrumentos.Dock = System.Windows.Forms.DockStyle.Fill
- Me.tabDetalleInstrumentos.Location = New System.Drawing.Point(3, 3)
- Me.tabDetalleInstrumentos.Name = "tabDetalleInstrumentos"
- Me.tabDetalleInstrumentos.SelectedIndex = 0
- Me.tabDetalleInstrumentos.Size = New System.Drawing.Size(1033, 276)
- Me.tabDetalleInstrumentos.TabIndex = 106
- '
- 'tabNotas
- '
- Me.tabNotas.Controls.Add(Me.txtNotas)
- Me.tabNotas.Location = New System.Drawing.Point(4, 22)
- Me.tabNotas.Name = "tabNotas"
- Me.tabNotas.Size = New System.Drawing.Size(1025, 250)
- Me.tabNotas.TabIndex = 4
- Me.tabNotas.Text = "Notas"
- Me.tabNotas.UseVisualStyleBackColor = True
- '
- 'txtNotas
- '
- Me.txtNotas.Dock = System.Windows.Forms.DockStyle.Fill
- Me.txtNotas.Location = New System.Drawing.Point(0, 0)
- Me.txtNotas.Multiline = True
- Me.txtNotas.Name = "txtNotas"
- Me.txtNotas.Size = New System.Drawing.Size(1025, 250)
- Me.txtNotas.TabIndex = 142
- '
- 'tabAnexos
- '
- Me.tabAnexos.Controls.Add(Me.btnAdjuntar)
- Me.tabAnexos.Controls.Add(Me.btnVerAdjunto)
- Me.tabAnexos.Controls.Add(Me.DataGridView1)
- Me.tabAnexos.Location = New System.Drawing.Point(4, 22)
- Me.tabAnexos.Name = "tabAnexos"
- Me.tabAnexos.Size = New System.Drawing.Size(1025, 250)
- Me.tabAnexos.TabIndex = 5
- Me.tabAnexos.Text = "Anexos"
- Me.tabAnexos.UseVisualStyleBackColor = True
- '
- 'btnAdjuntar
- '
- Me.btnAdjuntar.DialogResult = System.Windows.Forms.DialogResult.Cancel
- Me.btnAdjuntar.Location = New System.Drawing.Point(681, 47)
- Me.btnAdjuntar.Name = "btnAdjuntar"
- Me.btnAdjuntar.Size = New System.Drawing.Size(75, 23)
- Me.btnAdjuntar.TabIndex = 143
- Me.btnAdjuntar.Text = "Adjuntar"
- Me.btnAdjuntar.UseVisualStyleBackColor = True
- '
- 'btnVerAdjunto
- '
- Me.btnVerAdjunto.DialogResult = System.Windows.Forms.DialogResult.Cancel
- Me.btnVerAdjunto.Location = New System.Drawing.Point(681, 18)
- Me.btnVerAdjunto.Name = "btnVerAdjunto"
- Me.btnVerAdjunto.Size = New System.Drawing.Size(75, 23)
- Me.btnVerAdjunto.TabIndex = 142
- Me.btnVerAdjunto.Text = "Ver"
- Me.btnVerAdjunto.UseVisualStyleBackColor = True
- '
- 'DataGridView1
- '
- Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView1.Location = New System.Drawing.Point(0, 0)
- Me.DataGridView1.Name = "DataGridView1"
- Me.DataGridView1.Size = New System.Drawing.Size(661, 150)
- Me.DataGridView1.TabIndex = 0
- '
- 'Panel6
- '
- Me.Panel6.Controls.Add(Me.Panel2)
- Me.Panel6.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel6.Location = New System.Drawing.Point(0, 82)
- Me.Panel6.Name = "Panel6"
- Me.Panel6.Size = New System.Drawing.Size(1039, 166)
- Me.Panel6.TabIndex = 180
- '
- 'Panel2
- '
- Me.Panel2.AutoScroll = True
- Me.Panel2.Controls.Add(Me.TableLayoutPanel2)
- Me.Panel2.Dock = System.Windows.Forms.DockStyle.Fill
- Me.Panel2.Location = New System.Drawing.Point(0, 0)
- Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(1039, 166)
- Me.Panel2.TabIndex = 162
- '
- 'TableLayoutPanel2
- '
- Me.TableLayoutPanel2.ColumnCount = 5
- Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.70297!))
- Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.29703!))
- Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 207.0!))
- Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 213.0!))
- Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 239.0!))
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox6, 3, 0)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox5, 2, 0)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox4, 1, 0)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox3, 0, 0)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox7, 4, 0)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox8, 0, 1)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox9, 1, 1)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox10, 2, 1)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox11, 3, 1)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox12, 4, 1)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox13, 0, 2)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox14, 1, 2)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox15, 2, 2)
- Me.TableLayoutPanel2.Controls.Add(Me.GroupBox16, 3, 2)
- Me.TableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top
- Me.TableLayoutPanel2.Location = New System.Drawing.Point(0, 0)
- Me.TableLayoutPanel2.Name = "TableLayoutPanel2"
- Me.TableLayoutPanel2.RowCount = 3
- Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 51.04167!))
- Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 48.95833!))
- Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41.0!))
- Me.TableLayoutPanel2.Size = New System.Drawing.Size(1039, 138)
- Me.TableLayoutPanel2.TabIndex = 159
- '
- 'GroupBox6
- '
- Me.GroupBox6.Controls.Add(Me.cboTipoOperacion)
- Me.GroupBox6.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox6.Location = New System.Drawing.Point(589, 3)
- Me.GroupBox6.Name = "GroupBox6"
- Me.GroupBox6.Size = New System.Drawing.Size(207, 43)
- Me.GroupBox6.TabIndex = 3
- Me.GroupBox6.TabStop = False
- Me.GroupBox6.Text = "Tipo de Operación"
- '
- 'cboTipoOperacion
- '
- Me.cboTipoOperacion.BackColor = System.Drawing.SystemColors.Menu
- Me.cboTipoOperacion.DisplayMember = "Nombre"
- Me.cboTipoOperacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTipoOperacion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTipoOperacion.FormattingEnabled = True
- Me.cboTipoOperacion.Location = New System.Drawing.Point(6, 16)
- Me.cboTipoOperacion.Name = "cboTipoOperacion"
- Me.cboTipoOperacion.Size = New System.Drawing.Size(195, 21)
- Me.cboTipoOperacion.TabIndex = 89
- '
- 'GroupBox5
- '
- Me.GroupBox5.Controls.Add(Me.cboEstadoDocumento)
- Me.GroupBox5.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox5.Location = New System.Drawing.Point(382, 3)
- Me.GroupBox5.Name = "GroupBox5"
- Me.GroupBox5.Size = New System.Drawing.Size(201, 43)
- Me.GroupBox5.TabIndex = 2
- Me.GroupBox5.TabStop = False
- Me.GroupBox5.Text = "Estado"
- '
- 'cboEstadoDocumento
- '
- Me.cboEstadoDocumento.DisplayMember = "Nombre"
- Me.cboEstadoDocumento.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEstadoDocumento.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEstadoDocumento.FormattingEnabled = True
- Me.cboEstadoDocumento.Location = New System.Drawing.Point(15, 15)
- Me.cboEstadoDocumento.Name = "cboEstadoDocumento"
- Me.cboEstadoDocumento.Size = New System.Drawing.Size(178, 21)
- Me.cboEstadoDocumento.TabIndex = 108
- '
- 'GroupBox4
- '
- Me.GroupBox4.Controls.Add(Me.cboEmisores)
- Me.GroupBox4.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox4.Location = New System.Drawing.Point(191, 3)
- Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Size = New System.Drawing.Size(185, 43)
- Me.GroupBox4.TabIndex = 1
- Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "Emisores"
- '
- 'cboEmisores
- '
- Me.cboEmisores.DisplayMember = "Nombre"
- Me.cboEmisores.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEmisores.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEmisores.FormattingEnabled = True
- Me.cboEmisores.Location = New System.Drawing.Point(20, 16)
- Me.cboEmisores.Name = "cboEmisores"
- Me.cboEmisores.Size = New System.Drawing.Size(167, 21)
- Me.cboEmisores.TabIndex = 81
- Me.cboEmisores.ValueMember = "Codigo"
- '
- 'GroupBox3
- '
- Me.GroupBox3.Controls.Add(Me.cboEmpresas)
- Me.GroupBox3.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox3.ForeColor = System.Drawing.Color.Maroon
- Me.GroupBox3.Location = New System.Drawing.Point(3, 3)
- Me.GroupBox3.Name = "GroupBox3"
- Me.GroupBox3.Size = New System.Drawing.Size(182, 43)
- Me.GroupBox3.TabIndex = 0
- Me.GroupBox3.TabStop = False
- Me.GroupBox3.Text = "Empresas *"
- '
- 'cboEmpresas
- '
- Me.cboEmpresas.DisplayMember = "Nombre"
- Me.cboEmpresas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEmpresas.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEmpresas.FormattingEnabled = True
- Me.cboEmpresas.Location = New System.Drawing.Point(4, 15)
- Me.cboEmpresas.Name = "cboEmpresas"
- Me.cboEmpresas.Size = New System.Drawing.Size(181, 21)
- Me.cboEmpresas.TabIndex = 89
- Me.cboEmpresas.ValueMember = "Codigo"
- '
- 'GroupBox7
- '
- Me.GroupBox7.Controls.Add(Me.cboOrigenDeFondos)
- Me.GroupBox7.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox7.Location = New System.Drawing.Point(802, 3)
- Me.GroupBox7.Name = "GroupBox7"
- Me.GroupBox7.Size = New System.Drawing.Size(234, 43)
- Me.GroupBox7.TabIndex = 4
- Me.GroupBox7.TabStop = False
- Me.GroupBox7.Text = "Origenes de Fondo"
- '
- 'cboOrigenDeFondos
- '
- Me.cboOrigenDeFondos.BackColor = System.Drawing.SystemColors.Menu
- Me.cboOrigenDeFondos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboOrigenDeFondos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboOrigenDeFondos.FormattingEnabled = True
- Me.cboOrigenDeFondos.Location = New System.Drawing.Point(0, 16)
- Me.cboOrigenDeFondos.Name = "cboOrigenDeFondos"
- Me.cboOrigenDeFondos.Size = New System.Drawing.Size(206, 21)
- Me.cboOrigenDeFondos.TabIndex = 10
- '
- 'GroupBox8
- '
- Me.GroupBox8.Controls.Add(Me.cboInstrumentos)
- Me.GroupBox8.Controls.Add(Me.btnDetalleIF)
- Me.GroupBox8.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox8.ForeColor = System.Drawing.Color.Maroon
- Me.GroupBox8.Location = New System.Drawing.Point(3, 52)
- Me.GroupBox8.Name = "GroupBox8"
- Me.GroupBox8.Size = New System.Drawing.Size(182, 41)
- Me.GroupBox8.TabIndex = 5
- Me.GroupBox8.TabStop = False
- Me.GroupBox8.Text = "Instrumentos *"
- '
- 'cboInstrumentos
- '
- Me.cboInstrumentos.DisplayMember = "Nombre"
- Me.cboInstrumentos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboInstrumentos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboInstrumentos.FormattingEnabled = True
- Me.cboInstrumentos.Location = New System.Drawing.Point(11, 14)
- Me.cboInstrumentos.Name = "cboInstrumentos"
- Me.cboInstrumentos.Size = New System.Drawing.Size(139, 21)
- Me.cboInstrumentos.TabIndex = 79
- Me.cboInstrumentos.ValueMember = "CodIF"
- '
- 'btnDetalleIF
- '
- Me.btnDetalleIF.Location = New System.Drawing.Point(156, 12)
- Me.btnDetalleIF.Name = "btnDetalleIF"
- Me.btnDetalleIF.Size = New System.Drawing.Size(29, 22)
- Me.btnDetalleIF.TabIndex = 116
- Me.btnDetalleIF.Text = "..."
- Me.btnDetalleIF.UseVisualStyleBackColor = True
- '
- 'GroupBox9
- '
- Me.GroupBox9.Controls.Add(Me.cboCalificaciones)
- Me.GroupBox9.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox9.Location = New System.Drawing.Point(191, 52)
- Me.GroupBox9.Name = "GroupBox9"
- Me.GroupBox9.Size = New System.Drawing.Size(185, 41)
- Me.GroupBox9.TabIndex = 6
- Me.GroupBox9.TabStop = False
- Me.GroupBox9.Text = "Calificacion de Riesgo"
- '
- 'cboCalificaciones
- '
- Me.cboCalificaciones.DisplayMember = "Nombre"
- Me.cboCalificaciones.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboCalificaciones.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboCalificaciones.FormattingEnabled = True
- Me.cboCalificaciones.Location = New System.Drawing.Point(20, 13)
- Me.cboCalificaciones.Name = "cboCalificaciones"
- Me.cboCalificaciones.Size = New System.Drawing.Size(167, 21)
- Me.cboCalificaciones.TabIndex = 83
- Me.cboCalificaciones.ValueMember = "Codigo"
- '
- 'GroupBox10
- '
- Me.GroupBox10.Controls.Add(Me.cboTipoTasa)
- Me.GroupBox10.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox10.Location = New System.Drawing.Point(382, 52)
- Me.GroupBox10.Name = "GroupBox10"
- Me.GroupBox10.Size = New System.Drawing.Size(201, 41)
- Me.GroupBox10.TabIndex = 7
- Me.GroupBox10.TabStop = False
- Me.GroupBox10.Text = "Tipo Tasa"
- '
- 'cboTipoTasa
- '
- Me.cboTipoTasa.DisplayMember = "Nombre"
- Me.cboTipoTasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTipoTasa.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTipoTasa.FormattingEnabled = True
- Me.cboTipoTasa.Location = New System.Drawing.Point(4, 13)
- Me.cboTipoTasa.Name = "cboTipoTasa"
- Me.cboTipoTasa.Size = New System.Drawing.Size(188, 21)
- Me.cboTipoTasa.TabIndex = 139
- Me.cboTipoTasa.ValueMember = "Codigo"
- '
- 'GroupBox11
- '
- Me.GroupBox11.Controls.Add(Me.cboCalificadoras)
- Me.GroupBox11.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox11.Location = New System.Drawing.Point(589, 52)
- Me.GroupBox11.Name = "GroupBox11"
- Me.GroupBox11.Size = New System.Drawing.Size(207, 41)
- Me.GroupBox11.TabIndex = 8
- Me.GroupBox11.TabStop = False
- Me.GroupBox11.Text = "Calificadora de Riesgo"
- '
- 'cboCalificadoras
- '
- Me.cboCalificadoras.DisplayMember = "Nombre"
- Me.cboCalificadoras.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboCalificadoras.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboCalificadoras.FormattingEnabled = True
- Me.cboCalificadoras.Location = New System.Drawing.Point(10, 16)
- Me.cboCalificadoras.Name = "cboCalificadoras"
- Me.cboCalificadoras.Size = New System.Drawing.Size(191, 21)
- Me.cboCalificadoras.TabIndex = 85
- Me.cboCalificadoras.ValueMember = "Codigo"
- '
- 'GroupBox12
- '
- Me.GroupBox12.Controls.Add(Me.cboEstadoProceso)
- Me.GroupBox12.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox12.Location = New System.Drawing.Point(802, 52)
- Me.GroupBox12.Name = "GroupBox12"
- Me.GroupBox12.Size = New System.Drawing.Size(234, 41)
- Me.GroupBox12.TabIndex = 9
- Me.GroupBox12.TabStop = False
- Me.GroupBox12.Text = "Estado de Proceso"
- '
- 'cboEstadoProceso
- '
- Me.cboEstadoProceso.BackColor = System.Drawing.SystemColors.Menu
- Me.cboEstadoProceso.DisplayMember = "Nombre"
- Me.cboEstadoProceso.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEstadoProceso.Enabled = False
- Me.cboEstadoProceso.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEstadoProceso.FormattingEnabled = True
- Me.cboEstadoProceso.Location = New System.Drawing.Point(0, 14)
- Me.cboEstadoProceso.Name = "cboEstadoProceso"
- Me.cboEstadoProceso.Size = New System.Drawing.Size(206, 21)
- Me.cboEstadoProceso.TabIndex = 91
- '
- 'GroupBox13
- '
- Me.GroupBox13.Controls.Add(Me.cboTiposMercado)
- Me.GroupBox13.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox13.ForeColor = System.Drawing.Color.Maroon
- Me.GroupBox13.Location = New System.Drawing.Point(3, 99)
- Me.GroupBox13.Name = "GroupBox13"
- Me.GroupBox13.Size = New System.Drawing.Size(182, 36)
- Me.GroupBox13.TabIndex = 10
- Me.GroupBox13.TabStop = False
- Me.GroupBox13.Text = "Tipo de Mercado *"
- '
- 'cboTiposMercado
- '
- Me.cboTiposMercado.DisplayMember = "Nombre"
- Me.cboTiposMercado.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTiposMercado.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTiposMercado.FormattingEnabled = True
- Me.cboTiposMercado.Location = New System.Drawing.Point(11, 12)
- Me.cboTiposMercado.Name = "cboTiposMercado"
- Me.cboTiposMercado.Size = New System.Drawing.Size(174, 21)
- Me.cboTiposMercado.TabIndex = 113
- Me.cboTiposMercado.ValueMember = "Codigo"
- '
- 'GroupBox14
- '
- Me.GroupBox14.Controls.Add(Me.cboPaises)
- Me.GroupBox14.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox14.ForeColor = System.Drawing.Color.Maroon
- Me.GroupBox14.Location = New System.Drawing.Point(191, 99)
- Me.GroupBox14.Name = "GroupBox14"
- Me.GroupBox14.Size = New System.Drawing.Size(185, 36)
- Me.GroupBox14.TabIndex = 11
- Me.GroupBox14.TabStop = False
- Me.GroupBox14.Text = "Paises *"
- '
- 'cboPaises
- '
- Me.cboPaises.DisplayMember = "Nombre"
- Me.cboPaises.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPaises.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPaises.FormattingEnabled = True
- Me.cboPaises.Location = New System.Drawing.Point(6, 12)
- Me.cboPaises.Name = "cboPaises"
- Me.cboPaises.Size = New System.Drawing.Size(181, 21)
- Me.cboPaises.TabIndex = 91
- Me.cboPaises.ValueMember = "Codigo"
- '
- 'GroupBox15
- '
- Me.GroupBox15.Controls.Add(Me.cboPeriodicidad)
- Me.GroupBox15.Location = New System.Drawing.Point(382, 99)
- Me.GroupBox15.Name = "GroupBox15"
- Me.GroupBox15.Size = New System.Drawing.Size(198, 36)
- Me.GroupBox15.TabIndex = 12
- Me.GroupBox15.TabStop = False
- Me.GroupBox15.Text = "Periodicidad"
- '
- 'cboPeriodicidad
- '
- Me.cboPeriodicidad.DisplayMember = "Nombre"
- Me.cboPeriodicidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPeriodicidad.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPeriodicidad.FormattingEnabled = True
- Me.cboPeriodicidad.Location = New System.Drawing.Point(6, 12)
- Me.cboPeriodicidad.Name = "cboPeriodicidad"
- Me.cboPeriodicidad.Size = New System.Drawing.Size(186, 21)
- Me.cboPeriodicidad.TabIndex = 131
- Me.cboPeriodicidad.ValueMember = "Codigo"
- '
- 'GroupBox16
- '
- Me.GroupBox16.Controls.Add(Me.cboTipoRenta)
- Me.GroupBox16.Location = New System.Drawing.Point(589, 99)
- Me.GroupBox16.Name = "GroupBox16"
- Me.GroupBox16.Size = New System.Drawing.Size(207, 36)
- Me.GroupBox16.TabIndex = 13
- Me.GroupBox16.TabStop = False
- Me.GroupBox16.Text = "Tipo Renta"
- '
- 'cboTipoRenta
- '
- Me.cboTipoRenta.DisplayMember = "Nombre"
- Me.cboTipoRenta.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTipoRenta.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTipoRenta.FormattingEnabled = True
- Me.cboTipoRenta.Location = New System.Drawing.Point(6, 15)
- Me.cboTipoRenta.Name = "cboTipoRenta"
- Me.cboTipoRenta.Size = New System.Drawing.Size(189, 21)
- Me.cboTipoRenta.TabIndex = 136
- Me.cboTipoRenta.ValueMember = "Codigo"
- '
- 'Panel5
- '
- Me.Panel5.Controls.Add(Me.GroupBox2)
- Me.Panel5.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel5.Location = New System.Drawing.Point(0, 0)
- Me.Panel5.Name = "Panel5"
- Me.Panel5.Size = New System.Drawing.Size(1039, 82)
- Me.Panel5.TabIndex = 179
- '
- 'GroupBox2
- '
- Me.GroupBox2.Controls.Add(Me.Label5)
- Me.GroupBox2.Controls.Add(Me.txtPlazoNum)
- Me.GroupBox2.Controls.Add(Me.lblCodigoCompra)
- Me.GroupBox2.Controls.Add(Me.cboPlazoFactor)
- Me.GroupBox2.Controls.Add(Me.txtCodigoCompra)
- Me.GroupBox2.Controls.Add(Me.Label4)
- Me.GroupBox2.Controls.Add(Me.txtCodigoInversion)
- Me.GroupBox2.Controls.Add(Me.Label8)
- Me.GroupBox2.Controls.Add(Me.Label16)
- Me.GroupBox2.Controls.Add(Me.dtpFechaDocumento)
- Me.GroupBox2.Controls.Add(Me.txtCodigoManual)
- Me.GroupBox2.Controls.Add(Me.Label15)
- Me.GroupBox2.Controls.Add(Me.txtNombreManual)
- Me.GroupBox2.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox2.Location = New System.Drawing.Point(0, 0)
- Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(1039, 82)
- Me.GroupBox2.TabIndex = 178
- Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "Montos"
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label5.Location = New System.Drawing.Point(348, 51)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(38, 18)
- Me.Label5.TabIndex = 181
- Me.Label5.Text = "Plazo"
- '
- 'txtPlazoNum
- '
- Me.txtPlazoNum.Location = New System.Drawing.Point(561, 51)
- Me.txtPlazoNum.Name = "txtPlazoNum"
- Me.txtPlazoNum.Size = New System.Drawing.Size(40, 20)
- Me.txtPlazoNum.TabIndex = 138
- '
- 'lblCodigoCompra
- '
- Me.lblCodigoCompra.AutoSize = True
- Me.lblCodigoCompra.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblCodigoCompra.Location = New System.Drawing.Point(348, 19)
- Me.lblCodigoCompra.Name = "lblCodigoCompra"
- Me.lblCodigoCompra.Size = New System.Drawing.Size(97, 18)
- Me.lblCodigoCompra.TabIndex = 180
- Me.lblCodigoCompra.Text = "Código Compra"
- '
- 'cboPlazoFactor
- '
- Me.cboPlazoFactor.DisplayMember = "Nombre"
- Me.cboPlazoFactor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPlazoFactor.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPlazoFactor.FormattingEnabled = True
- Me.cboPlazoFactor.Location = New System.Drawing.Point(451, 51)
- Me.cboPlazoFactor.Name = "cboPlazoFactor"
- Me.cboPlazoFactor.Size = New System.Drawing.Size(104, 21)
- Me.cboPlazoFactor.TabIndex = 135
- Me.cboPlazoFactor.ValueMember = "Codigo"
- '
- 'txtCodigoCompra
- '
- Me.txtCodigoCompra.Location = New System.Drawing.Point(451, 17)
- Me.txtCodigoCompra.Name = "txtCodigoCompra"
- Me.txtCodigoCompra.ReadOnly = True
- Me.txtCodigoCompra.Size = New System.Drawing.Size(150, 20)
- Me.txtCodigoCompra.TabIndex = 179
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.Label4.ForeColor = System.Drawing.Color.Black
- Me.Label4.Location = New System.Drawing.Point(70, 21)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(47, 13)
- Me.Label4.TabIndex = 77
- Me.Label4.Text = "Número "
- '
- 'txtCodigoInversion
- '
- Me.txtCodigoInversion.Location = New System.Drawing.Point(145, 51)
- Me.txtCodigoInversion.Name = "txtCodigoInversion"
- Me.txtCodigoInversion.Size = New System.Drawing.Size(148, 20)
- Me.txtCodigoInversion.TabIndex = 78
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.Label8.Location = New System.Drawing.Point(626, 49)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(37, 13)
- Me.Label8.TabIndex = 142
- Me.Label8.Text = "Fecha"
- '
- 'Label16
- '
- Me.Label16.AutoSize = True
- Me.Label16.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.Label16.Location = New System.Drawing.Point(70, 54)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(43, 13)
- Me.Label16.TabIndex = 129
- Me.Label16.Text = "Código "
- '
- 'dtpFechaDocumento
- '
- Me.dtpFechaDocumento.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.dtpFechaDocumento.Location = New System.Drawing.Point(752, 46)
- Me.dtpFechaDocumento.Name = "dtpFechaDocumento"
- Me.dtpFechaDocumento.Size = New System.Drawing.Size(148, 20)
- Me.dtpFechaDocumento.TabIndex = 141
- '
- 'txtCodigoManual
- '
- Me.txtCodigoManual.Location = New System.Drawing.Point(145, 16)
- Me.txtCodigoManual.Name = "txtCodigoManual"
- Me.txtCodigoManual.Size = New System.Drawing.Size(148, 20)
- Me.txtCodigoManual.TabIndex = 130
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.Label15.ForeColor = System.Drawing.Color.Maroon
- Me.Label15.Location = New System.Drawing.Point(626, 19)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(51, 13)
- Me.Label15.TabIndex = 127
- Me.Label15.Text = "Nombre *"
- '
- 'txtNombreManual
- '
- Me.txtNombreManual.Location = New System.Drawing.Point(752, 15)
- Me.txtNombreManual.Name = "txtNombreManual"
- Me.txtNombreManual.Size = New System.Drawing.Size(148, 20)
- Me.txtNombreManual.TabIndex = 128
- '
- 'TabCampos
- '
- Me.TabCampos.Controls.Add(Me.TbIngresarModificar)
- Me.TabCampos.Controls.Add(Me.TbBuscar)
- Me.TabCampos.Location = New System.Drawing.Point(2, 124)
- Me.TabCampos.Name = "TabCampos"
- Me.TabCampos.SelectedIndex = 0
- Me.TabCampos.Size = New System.Drawing.Size(1053, 562)
- Me.TabCampos.TabIndex = 180
- '
- 'btnRequisicionDePago
- '
- Me.btnRequisicionDePago.BackColor = System.Drawing.Color.FromArgb(CType(CType(21, Byte), Integer), CType(CType(81, Byte), Integer), CType(CType(118, Byte), Integer))
- Me.btnRequisicionDePago.FlatAppearance.BorderSize = 0
- Me.btnRequisicionDePago.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.btnRequisicionDePago.ForeColor = System.Drawing.Color.White
- Me.btnRequisicionDePago.Location = New System.Drawing.Point(484, 41)
- Me.btnRequisicionDePago.Name = "btnRequisicionDePago"
- Me.btnRequisicionDePago.Size = New System.Drawing.Size(119, 33)
- Me.btnRequisicionDePago.TabIndex = 181
- Me.btnRequisicionDePago.Text = "Requisición de Pago"
- Me.btnRequisicionDePago.UseVisualStyleBackColor = False
- Me.btnRequisicionDePago.Visible = False
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(21, 4)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(44, 13)
- Me.Label1.TabIndex = 184
- Me.Label1.Text = "Aprobar"
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.Location = New System.Drawing.Point(19, 1)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(43, 13)
- Me.Label2.TabIndex = 186
- Me.Label2.Text = "Corregir"
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Location = New System.Drawing.Point(21, 4)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(40, 13)
- Me.Label3.TabIndex = 188
- Me.Label3.Text = "Anexar"
- '
- 'pnlCorregir
- '
- Me.pnlCorregir.Controls.Add(Me.Button1)
- Me.pnlCorregir.Controls.Add(Me.Label2)
- Me.pnlCorregir.Location = New System.Drawing.Point(164, 7)
- Me.pnlCorregir.Name = "pnlCorregir"
- Me.pnlCorregir.Size = New System.Drawing.Size(82, 67)
- Me.pnlCorregir.TabIndex = 189
- Me.pnlCorregir.Visible = False
- '
- 'Button1
- '
- Me.Button1.BackgroundImage = Global.Inversiones.My.Resources.Resources.Corregir
- Me.Button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.Button1.Location = New System.Drawing.Point(15, 21)
- Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(50, 43)
- Me.Button1.TabIndex = 185
- Me.Button1.UseVisualStyleBackColor = True
- '
- 'pnlAnexar
- '
- Me.pnlAnexar.Controls.Add(Me.Button2)
- Me.pnlAnexar.Controls.Add(Me.Label3)
- Me.pnlAnexar.Location = New System.Drawing.Point(372, 8)
- Me.pnlAnexar.Name = "pnlAnexar"
- Me.pnlAnexar.Size = New System.Drawing.Size(82, 67)
- Me.pnlAnexar.TabIndex = 190
- Me.pnlAnexar.Visible = False
- '
- 'Button2
- '
- Me.Button2.BackgroundImage = Global.Inversiones.My.Resources.Resources.Anexar
- Me.Button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.Button2.Location = New System.Drawing.Point(20, 19)
- Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(51, 43)
- Me.Button2.TabIndex = 187
- Me.Button2.UseVisualStyleBackColor = True
- '
- 'pnlAprobar
- '
- Me.pnlAprobar.Controls.Add(Me.btnAprobado)
- Me.pnlAprobar.Controls.Add(Me.Label1)
- Me.pnlAprobar.Location = New System.Drawing.Point(271, 7)
- Me.pnlAprobar.Name = "pnlAprobar"
- Me.pnlAprobar.Size = New System.Drawing.Size(82, 67)
- Me.pnlAprobar.TabIndex = 190
- Me.pnlAprobar.Visible = False
- '
- 'btnAprobado
- '
- Me.btnAprobado.BackgroundImage = Global.Inversiones.My.Resources.Resources.Aprobado2
- Me.btnAprobado.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.btnAprobado.Location = New System.Drawing.Point(14, 20)
- Me.btnAprobado.Name = "btnAprobado"
- Me.btnAprobado.Size = New System.Drawing.Size(51, 43)
- Me.btnAprobado.TabIndex = 183
- Me.btnAprobado.UseVisualStyleBackColor = True
- '
- 'lblMensajeReq
- '
- Me.lblMensajeReq.AutoSize = True
- Me.lblMensajeReq.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblMensajeReq.ForeColor = System.Drawing.Color.Maroon
- Me.lblMensajeReq.Location = New System.Drawing.Point(480, 12)
- Me.lblMensajeReq.Name = "lblMensajeReq"
- Me.lblMensajeReq.Size = New System.Drawing.Size(0, 24)
- Me.lblMensajeReq.TabIndex = 191
- '
- 'vBindingSource
- '
- '
- 'Panel8
- '
- Me.Panel8.BackColor = System.Drawing.Color.Transparent
- Me.Panel8.Controls.Add(Me.btnReportoVenta)
- Me.Panel8.Controls.Add(Me.Label22)
- Me.Panel8.Controls.Add(Me.lblMensajeReq)
- Me.Panel8.Controls.Add(Me.btnRequisicionDePago)
- Me.Panel8.Controls.Add(Me.pnlAprobar)
- Me.Panel8.Controls.Add(Me.pnlCorregir)
- Me.Panel8.Controls.Add(Me.pnlAnexar)
- Me.Panel8.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel8.Location = New System.Drawing.Point(0, 25)
- Me.Panel8.Name = "Panel8"
- Me.Panel8.Size = New System.Drawing.Size(1152, 93)
- Me.Panel8.TabIndex = 192
- '
- 'btnReportoVenta
- '
- Me.btnReportoVenta.BackColor = System.Drawing.Color.Maroon
- Me.btnReportoVenta.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.btnReportoVenta.ForeColor = System.Drawing.Color.White
- Me.btnReportoVenta.Location = New System.Drawing.Point(748, 35)
- Me.btnReportoVenta.Name = "btnReportoVenta"
- Me.btnReportoVenta.Size = New System.Drawing.Size(108, 35)
- Me.btnReportoVenta.TabIndex = 192
- Me.btnReportoVenta.Text = "Reporto de Venta"
- Me.btnReportoVenta.UseVisualStyleBackColor = False
- '
- 'frmINV
- '
- Me.AcceptButton = Me.btnAccion
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.AutoScroll = True
- Me.CancelButton = Me.btnCancelar
- Me.ClientSize = New System.Drawing.Size(1169, 749)
- Me.Controls.Add(Me.Panel8)
- Me.Controls.Add(Me.TabCampos)
- Me.Controls.Add(Me.Navegador)
- Me.Controls.Add(Me.Panel1)
- Me.Name = "frmINV"
- Me.Text = "11"
- Me.Panel1.ResumeLayout(False)
- CType(Me.Navegador, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Navegador.ResumeLayout(False)
- Me.Navegador.PerformLayout()
- CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TbBuscar.ResumeLayout(False)
- Me.GroupBox1.ResumeLayout(False)
- Me.pnlMenu.ResumeLayout(False)
- Me.pnlInstrumento.ResumeLayout(False)
- Me.pnlInstrumento.PerformLayout()
- Me.pnlEmpresa.ResumeLayout(False)
- Me.pnlEmpresa.PerformLayout()
- Me.pnlOrigenFondos.ResumeLayout(False)
- Me.pnlOrigenFondos.PerformLayout()
- Me.pnlEmisor.ResumeLayout(False)
- Me.pnlEmisor.PerformLayout()
- Me.pnlPlazo.ResumeLayout(False)
- Me.pnlPlazo.PerformLayout()
- Me.pnlCalificacionRiesgo.ResumeLayout(False)
- Me.pnlCalificacionRiesgo.PerformLayout()
- Me.pnlEstadoProceso.ResumeLayout(False)
- Me.pnlEstadoProceso.PerformLayout()
- Me.pnlCalificadora.ResumeLayout(False)
- Me.pnlCalificadora.PerformLayout()
- Me.pnlTipMercado.ResumeLayout(False)
- Me.pnlTipMercado.PerformLayout()
- Me.pnlPais.ResumeLayout(False)
- Me.pnlPais.PerformLayout()
- Me.pnlTipOper.ResumeLayout(False)
- Me.pnlTipOper.PerformLayout()
- Me.pnlEstado.ResumeLayout(False)
- Me.pnlEstado.PerformLayout()
- Me.pnlCargaDatos.ResumeLayout(False)
- Me.pnlContenedor.ResumeLayout(False)
- Me.Panel3.ResumeLayout(False)
- Me.Panel3.PerformLayout()
- Me.Panel9.ResumeLayout(False)
- Me.grpTipoMercado.ResumeLayout(False)
- Me.grpEstadoProceso.ResumeLayout(False)
- Me.grpTipoOperacion.ResumeLayout(False)
- Me.grpEstadoDocumento.ResumeLayout(False)
- Me.grpPais.ResumeLayout(False)
- Me.grpCalificadoraRiesgo.ResumeLayout(False)
- Me.grpCalificacionRiesgo.ResumeLayout(False)
- Me.grpEmisor.ResumeLayout(False)
- Me.grpPlazo.ResumeLayout(False)
- Me.grpOrigenFondos.ResumeLayout(False)
- Me.grpInstrumentos.ResumeLayout(False)
- Me.grpEmpresas.ResumeLayout(False)
- Me.TbIngresarModificar.ResumeLayout(False)
- Me.Panel4.ResumeLayout(False)
- Me.Panel7.ResumeLayout(False)
- Me.TableLayoutPanel1.ResumeLayout(False)
- Me.tabDetalleInstrumentos.ResumeLayout(False)
- Me.tabNotas.ResumeLayout(False)
- Me.tabNotas.PerformLayout()
- Me.tabAnexos.ResumeLayout(False)
- CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel6.ResumeLayout(False)
- Me.Panel2.ResumeLayout(False)
- Me.TableLayoutPanel2.ResumeLayout(False)
- Me.GroupBox6.ResumeLayout(False)
- Me.GroupBox5.ResumeLayout(False)
- Me.GroupBox4.ResumeLayout(False)
- Me.GroupBox3.ResumeLayout(False)
- Me.GroupBox7.ResumeLayout(False)
- Me.GroupBox8.ResumeLayout(False)
- Me.GroupBox9.ResumeLayout(False)
- Me.GroupBox10.ResumeLayout(False)
- Me.GroupBox11.ResumeLayout(False)
- Me.GroupBox12.ResumeLayout(False)
- Me.GroupBox13.ResumeLayout(False)
- Me.GroupBox14.ResumeLayout(False)
- Me.GroupBox15.ResumeLayout(False)
- Me.GroupBox16.ResumeLayout(False)
- Me.Panel5.ResumeLayout(False)
- Me.GroupBox2.ResumeLayout(False)
- Me.GroupBox2.PerformLayout()
- Me.TabCampos.ResumeLayout(False)
- Me.pnlCorregir.ResumeLayout(False)
- Me.pnlCorregir.PerformLayout()
- Me.pnlAnexar.ResumeLayout(False)
- Me.pnlAnexar.PerformLayout()
- Me.pnlAprobar.ResumeLayout(False)
- Me.pnlAprobar.PerformLayout()
- CType(Me.vBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel8.ResumeLayout(False)
- Me.Panel8.PerformLayout()
- Me.ResumeLayout(False)
- Me.PerformLayout()
- End Sub
- Friend WithEvents Panel1 As Panel
- Friend WithEvents Navegador As BindingNavigator
- Friend WithEvents navNuevoRegistro As ToolStripButton
- Friend WithEvents BindingNavigatorCountItem As ToolStripLabel
- Friend WithEvents navEliminarRegistro As ToolStripButton
- Friend WithEvents navPrimerRegistro As ToolStripButton
- Friend WithEvents navRegistroAnterior As ToolStripButton
- Friend WithEvents BindingNavigatorSeparator As ToolStripSeparator
- Friend WithEvents BindingNavigatorPositionItem As ToolStripTextBox
- Friend WithEvents BindingNavigatorSeparator1 As ToolStripSeparator
- Friend WithEvents navUltimoRegistro As ToolStripButton
- Friend WithEvents BindingNavigatorSeparator2 As ToolStripSeparator
- Friend WithEvents navNuevo As ToolStripButton
- Friend WithEvents navModificar As ToolStripButton
- Friend WithEvents navBuscar As ToolStripButton
- Friend WithEvents navEliminar As ToolStripButton
- Friend WithEvents btnAccion As Button
- Friend WithEvents btnCancelar As Button
- Friend WithEvents Label22 As Label
- Friend WithEvents btnReporte As ToolStripButton
- Friend WithEvents TbBuscar As TabPage
- Friend WithEvents GroupBox1 As GroupBox
- Friend WithEvents pnlMenu As Panel
- Friend WithEvents pnlInstrumento As Panel
- Friend WithEvents lblInstrumento As Label
- Friend WithEvents pnlEmpresa As Panel
- Friend WithEvents lblEmpresa As Label
- Friend WithEvents pnlOrigenFondos As Panel
- Friend WithEvents lblOrigenFondos As Label
- Friend WithEvents pnlEmisor As Panel
- Friend WithEvents lblEmisor As Label
- Friend WithEvents pnlPlazo As Panel
- Friend WithEvents lblPlazo As Label
- Friend WithEvents pnlCalificacionRiesgo As Panel
- Friend WithEvents lblCalificacionRiesgo As Label
- Friend WithEvents pnlEstadoProceso As Panel
- Friend WithEvents lblEstadoProceso As Label
- Friend WithEvents pnlCalificadora As Panel
- Friend WithEvents lblCalificadora As Label
- Friend WithEvents pnlTipMercado As Panel
- Friend WithEvents lblTipoMercado As Label
- Friend WithEvents pnlPais As Panel
- Friend WithEvents lblPais As Label
- Friend WithEvents pnlTipOper As Panel
- Friend WithEvents lblTipoOperacion As Label
- Friend WithEvents pnlEstado As Panel
- Friend WithEvents lblEstado As Label
- Friend WithEvents pnlCargaDatos As Panel
- Friend WithEvents pnlContenedor As Panel
- Friend WithEvents Panel3 As Panel
- Friend WithEvents Label31 As Label
- Friend WithEvents txtBuscar As TextBox
- Friend WithEvents Panel9 As Panel
- Friend WithEvents btnCancel As Button
- Friend WithEvents btnAceptar As Button
- Friend WithEvents grpTipoMercado As GroupBox
- Friend WithEvents flpTipoMercado As FlowLayoutPanel
- Friend WithEvents grpEstadoProceso As GroupBox
- Friend WithEvents flpEstadoProceso As FlowLayoutPanel
- Friend WithEvents grpTipoOperacion As GroupBox
- Friend WithEvents flpTipoOperacion As FlowLayoutPanel
- Friend WithEvents grpEstadoDocumento As GroupBox
- Friend WithEvents flpEstadoDocumento As FlowLayoutPanel
- Friend WithEvents grpPais As GroupBox
- Friend WithEvents flpPais As FlowLayoutPanel
- Friend WithEvents grpCalificadoraRiesgo As GroupBox
- Friend WithEvents flpCalificadoraRiesgo As FlowLayoutPanel
- Friend WithEvents grpCalificacionRiesgo As GroupBox
- Friend WithEvents flpCalificacionRiesgo As FlowLayoutPanel
- Friend WithEvents grpEmisor As GroupBox
- Friend WithEvents flpEmisor As FlowLayoutPanel
- Friend WithEvents grpPlazo As GroupBox
- Friend WithEvents flpPlazo As FlowLayoutPanel
- Friend WithEvents grpOrigenFondos As GroupBox
- Friend WithEvents flpOrigenFondos As FlowLayoutPanel
- Friend WithEvents grpInstrumentos As GroupBox
- Friend WithEvents flpInstrumentos As FlowLayoutPanel
- Friend WithEvents grpEmpresas As GroupBox
- Friend WithEvents flpEmpresas As FlowLayoutPanel
- Friend WithEvents TbIngresarModificar As TabPage
- Friend WithEvents Panel4 As Panel
- Friend WithEvents Panel7 As Panel
- Friend WithEvents TableLayoutPanel1 As TableLayoutPanel
- Friend WithEvents tabDetalleInstrumentos As TabControl
- Friend WithEvents tabNotas As TabPage
- Friend WithEvents txtNotas As TextBox
- Friend WithEvents tabAnexos As TabPage
- Friend WithEvents btnAdjuntar As Button
- Friend WithEvents btnVerAdjunto As Button
- Friend WithEvents DataGridView1 As DataGridView
- Friend WithEvents Panel6 As Panel
- Friend WithEvents Panel2 As Panel
- Friend WithEvents TableLayoutPanel2 As TableLayoutPanel
- Friend WithEvents cboTipoTasa As ComboBox
- Friend WithEvents GroupBox6 As GroupBox
- Friend WithEvents GroupBox5 As GroupBox
- Friend WithEvents cboEstadoDocumento As ComboBox
- Friend WithEvents GroupBox4 As GroupBox
- Friend WithEvents cboEmisores As ComboBox
- Friend WithEvents GroupBox3 As GroupBox
- Friend WithEvents cboEmpresas As ComboBox
- Friend WithEvents GroupBox7 As GroupBox
- Friend WithEvents cboOrigenDeFondos As ComboBox
- Friend WithEvents GroupBox8 As GroupBox
- Friend WithEvents cboInstrumentos As ComboBox
- Friend WithEvents btnDetalleIF As Button
- Friend WithEvents GroupBox9 As GroupBox
- Friend WithEvents cboCalificaciones As ComboBox
- Friend WithEvents GroupBox10 As GroupBox
- Friend WithEvents txtPlazoNum As TextBox
- Friend WithEvents cboPlazoFactor As ComboBox
- Friend WithEvents GroupBox11 As GroupBox
- Friend WithEvents cboCalificadoras As ComboBox
- Friend WithEvents GroupBox12 As GroupBox
- Friend WithEvents cboEstadoProceso As ComboBox
- Friend WithEvents GroupBox13 As GroupBox
- Friend WithEvents cboTiposMercado As ComboBox
- Friend WithEvents GroupBox14 As GroupBox
- Friend WithEvents cboPaises As ComboBox
- Friend WithEvents GroupBox15 As GroupBox
- Friend WithEvents cboPeriodicidad As ComboBox
- Friend WithEvents GroupBox16 As GroupBox
- Friend WithEvents cboTipoRenta As ComboBox
- Friend WithEvents Panel5 As Panel
- Friend WithEvents GroupBox2 As GroupBox
- Friend WithEvents Label4 As Label
- Friend WithEvents txtCodigoInversion As TextBox
- Friend WithEvents Label8 As Label
- Friend WithEvents Label16 As Label
- Friend WithEvents dtpFechaDocumento As DateTimePicker
- Friend WithEvents txtCodigoManual As TextBox
- Friend WithEvents Label15 As Label
- Friend WithEvents txtNombreManual As TextBox
- Friend WithEvents TabCampos As TabControl
- Friend WithEvents navRecorrer As ToolStripButton
- Friend WithEvents btnRequisicionDePago As Button
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents InversionesDEVDataSet5 As InversionesDEVDataSet5
- Friend WithEvents vBindingSource As BindingSource
- Friend WithEvents cboTipoOperacion As ComboBox
- Friend WithEvents btnAprobado As Button
- Friend WithEvents Label1 As Label
- Friend WithEvents Button1 As Button
- Friend WithEvents Label2 As Label
- Friend WithEvents Button2 As Button
- Friend WithEvents Label3 As Label
- Friend WithEvents pnlCorregir As Panel
- Friend WithEvents pnlAnexar As Panel
- Friend WithEvents pnlAprobar As Panel
- Friend WithEvents lblMensajeReq As Label
- Friend WithEvents Panel8 As Panel
- Friend WithEvents lblCodigoCompra As Label
- Friend WithEvents txtCodigoCompra As TextBox
- Friend WithEvents btnReportoVenta As Button
- Friend WithEvents Label5 As Label
- End Class
|