| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class frmPIN
- 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(frmPIN))
- Me.cboCalificadoraDeRiesgo = New System.Windows.Forms.ComboBox()
- Me.PIN0BindingSource4 = New System.Windows.Forms.BindingSource(Me.components)
- Me.InversionesDEVDataSet5 = New Inversiones.InversionesDEVDataSet5()
- Me.cboEmisores = New System.Windows.Forms.ComboBox()
- Me.cboInstrumentosFinancieros = New System.Windows.Forms.ComboBox()
- Me.cboEmpresas = New System.Windows.Forms.ComboBox()
- Me.cboEstadoDocumento = New System.Windows.Forms.ComboBox()
- Me.cboOrigenDeFondos = New System.Windows.Forms.ComboBox()
- Me.cboCalificacionDeRiesgo = New System.Windows.Forms.ComboBox()
- Me.txtCodigoInversion = New System.Windows.Forms.TextBox()
- Me.lblCodigoInversion = New System.Windows.Forms.Label()
- Me.txtAsunto = New System.Windows.Forms.TextBox()
- Me.lblAsunto = New System.Windows.Forms.Label()
- Me.txtComentarios = New System.Windows.Forms.TextBox()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.txtJustificacion = New System.Windows.Forms.TextBox()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.txtMontoInversion = New System.Windows.Forms.TextBox()
- Me.lblMontoInversion = New System.Windows.Forms.Label()
- Me.txtPrecio = New System.Windows.Forms.TextBox()
- Me.lblPrecio = New System.Windows.Forms.Label()
- Me.lblRendEsp = New System.Windows.Forms.Label()
- Me.dtpFechaDocumento = New System.Windows.Forms.DateTimePicker()
- Me.lblFecha = New System.Windows.Forms.Label()
- Me.cboPlazosFactor = New System.Windows.Forms.ComboBox()
- Me.txtIngresos = New System.Windows.Forms.TextBox()
- Me.lblIngreEsp = New System.Windows.Forms.Label()
- Me.txtPlazoNumero = New System.Windows.Forms.TextBox()
- Me.btnAccion = New System.Windows.Forms.Button()
- Me.btnCancelar = New System.Windows.Forms.Button()
- Me.cboTipoOperacion = New System.Windows.Forms.ComboBox()
- Me.cboAutorizacion = New System.Windows.Forms.ComboBox()
- Me.btnActivar = New System.Windows.Forms.Button()
- Me.cboTipoMercado = New System.Windows.Forms.ComboBox()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.pnlPie = New System.Windows.Forms.Panel()
- Me.txtNombre = New System.Windows.Forms.TextBox()
- Me.lblNombre = New System.Windows.Forms.Label()
- Me.cboRenta = New System.Windows.Forms.ComboBox()
- Me.cboTasa = New System.Windows.Forms.ComboBox()
- Me.cboPeriodicidad = New System.Windows.Forms.ComboBox()
- 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.navEliminarRegistro = New System.Windows.Forms.ToolStripButton()
- Me.navBuscar = New System.Windows.Forms.ToolStripButton()
- Me.navRecorrer = New System.Windows.Forms.ToolStripButton()
- Me.navVistaPrevia = New System.Windows.Forms.ToolStripButton()
- Me.navImprimir = New System.Windows.Forms.ToolStripButton()
- Me.grbInversión = New System.Windows.Forms.GroupBox()
- Me.chkUsuario = New System.Windows.Forms.CheckBox()
- Me.txtRendimiento = New System.Windows.Forms.TextBox()
- 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.pnlAutorizacion = New System.Windows.Forms.Panel()
- Me.lblAutorizacion = 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.Label3 = New System.Windows.Forms.Label()
- Me.txtBuscar = New System.Windows.Forms.TextBox()
- Me.Panel1 = 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.grpAutorizacion = New System.Windows.Forms.GroupBox()
- Me.flpAutorizacion = 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.cboPaises = New System.Windows.Forms.ComboBox()
- Me.GroupBox2 = New System.Windows.Forms.GroupBox()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.lblCodigoInversionCM = New System.Windows.Forms.Label()
- Me.txtCodigoInversionCM = New System.Windows.Forms.TextBox()
- Me.TabCampos = New System.Windows.Forms.TabControl()
- Me.TbIngresarModificar = New System.Windows.Forms.TabPage()
- Me.btnDetalleIF = New System.Windows.Forms.Button()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.TbBuscar = New System.Windows.Forms.TabPage()
- Me.BottomToolStripPanel = New System.Windows.Forms.ToolStripPanel()
- Me.TopToolStripPanel = New System.Windows.Forms.ToolStripPanel()
- Me.RightToolStripPanel = New System.Windows.Forms.ToolStripPanel()
- Me.LeftToolStripPanel = New System.Windows.Forms.ToolStripPanel()
- Me.ContentPanel = New System.Windows.Forms.ToolStripContentPanel()
- Me.InstrumentoToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
- Me.lblCambiarRev = New System.Windows.Forms.Label()
- Me.pnlCambiarRev = New System.Windows.Forms.Panel()
- Me.btnCambiarRev = New System.Windows.Forms.Button()
- Me.pnlCambiarApro = New System.Windows.Forms.Panel()
- Me.btnCambiarApro = New System.Windows.Forms.Button()
- Me.lblCambiarApro = New System.Windows.Forms.Label()
- Me.pnlCambiarRec = New System.Windows.Forms.Panel()
- Me.btnCambiarRec = New System.Windows.Forms.Button()
- Me.lblCambiarRec = New System.Windows.Forms.Label()
- Me.PIN0TableAdapter3 = New Inversiones.InversionesDEVDataSet5TableAdapters.PIN0TableAdapter()
- Me.TableAdapterManager = New Inversiones.InversionesDEVDataSet5TableAdapters.TableAdapterManager()
- Me.TableLayoutPanel3 = New System.Windows.Forms.TableLayoutPanel()
- Me.FlowLayoutPanel1 = New System.Windows.Forms.FlowLayoutPanel()
- navSiguienteRegistro = New System.Windows.Forms.ToolStripButton()
- CType(Me.PIN0BindingSource4, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.pnlPie.SuspendLayout()
- CType(Me.Navegador, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Navegador.SuspendLayout()
- Me.grbInversión.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.pnlAutorizacion.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.Panel1.SuspendLayout()
- Me.grpTipoMercado.SuspendLayout()
- Me.grpAutorizacion.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.GroupBox2.SuspendLayout()
- Me.TabCampos.SuspendLayout()
- Me.TbIngresarModificar.SuspendLayout()
- Me.TbBuscar.SuspendLayout()
- Me.pnlCambiarRev.SuspendLayout()
- Me.pnlCambiarApro.SuspendLayout()
- Me.pnlCambiarRec.SuspendLayout()
- Me.TableLayoutPanel3.SuspendLayout()
- Me.FlowLayoutPanel1.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_1
- '
- 'cboCalificadoraDeRiesgo
- '
- Me.cboCalificadoraDeRiesgo.BackColor = System.Drawing.SystemColors.Menu
- Me.cboCalificadoraDeRiesgo.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodECalRi", True))
- Me.cboCalificadoraDeRiesgo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboCalificadoraDeRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboCalificadoraDeRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboCalificadoraDeRiesgo.FormattingEnabled = True
- Me.cboCalificadoraDeRiesgo.Location = New System.Drawing.Point(893, 199)
- Me.cboCalificadoraDeRiesgo.Name = "cboCalificadoraDeRiesgo"
- Me.cboCalificadoraDeRiesgo.Size = New System.Drawing.Size(182, 26)
- Me.cboCalificadoraDeRiesgo.TabIndex = 13
- '
- 'PIN0BindingSource4
- '
- Me.PIN0BindingSource4.DataMember = "PIN0"
- Me.PIN0BindingSource4.DataSource = Me.InversionesDEVDataSet5
- '
- 'InversionesDEVDataSet5
- '
- Me.InversionesDEVDataSet5.DataSetName = "InversionesDEVDataSet5"
- Me.InversionesDEVDataSet5.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
- '
- 'cboEmisores
- '
- Me.cboEmisores.BackColor = System.Drawing.SystemColors.Menu
- Me.cboEmisores.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodEmis", True))
- Me.cboEmisores.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEmisores.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEmisores.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboEmisores.FormattingEnabled = True
- Me.cboEmisores.Location = New System.Drawing.Point(171, 343)
- Me.cboEmisores.Name = "cboEmisores"
- Me.cboEmisores.Size = New System.Drawing.Size(182, 26)
- Me.cboEmisores.TabIndex = 11
- '
- 'cboInstrumentosFinancieros
- '
- Me.cboInstrumentosFinancieros.BackColor = System.Drawing.SystemColors.Menu
- Me.cboInstrumentosFinancieros.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodIF", True))
- Me.cboInstrumentosFinancieros.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboInstrumentosFinancieros.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboInstrumentosFinancieros.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboInstrumentosFinancieros.FormattingEnabled = True
- Me.cboInstrumentosFinancieros.Location = New System.Drawing.Point(171, 244)
- Me.cboInstrumentosFinancieros.MaxLength = 100000
- Me.cboInstrumentosFinancieros.Name = "cboInstrumentosFinancieros"
- Me.cboInstrumentosFinancieros.Size = New System.Drawing.Size(142, 26)
- Me.cboInstrumentosFinancieros.TabIndex = 3
- '
- 'cboEmpresas
- '
- Me.cboEmpresas.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.cboEmpresas.BackColor = System.Drawing.SystemColors.Menu
- Me.cboEmpresas.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodEmpr", True))
- Me.cboEmpresas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEmpresas.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEmpresas.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboEmpresas.FormattingEnabled = True
- Me.cboEmpresas.Location = New System.Drawing.Point(171, 184)
- Me.cboEmpresas.Name = "cboEmpresas"
- Me.cboEmpresas.Size = New System.Drawing.Size(182, 26)
- Me.cboEmpresas.TabIndex = 1
- '
- 'cboEstadoDocumento
- '
- Me.cboEstadoDocumento.BackColor = System.Drawing.SystemColors.Menu
- Me.cboEstadoDocumento.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "DocEst", True))
- Me.cboEstadoDocumento.DisplayMember = "Nombre"
- Me.cboEstadoDocumento.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboEstadoDocumento.Enabled = False
- Me.cboEstadoDocumento.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboEstadoDocumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboEstadoDocumento.FormattingEnabled = True
- Me.cboEstadoDocumento.Location = New System.Drawing.Point(532, 249)
- Me.cboEstadoDocumento.MaxLength = 100000
- Me.cboEstadoDocumento.Name = "cboEstadoDocumento"
- Me.cboEstadoDocumento.Size = New System.Drawing.Size(183, 26)
- Me.cboEstadoDocumento.TabIndex = 17
- '
- 'cboOrigenDeFondos
- '
- Me.cboOrigenDeFondos.BackColor = System.Drawing.SystemColors.Menu
- Me.cboOrigenDeFondos.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "OFon", True))
- Me.cboOrigenDeFondos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboOrigenDeFondos.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboOrigenDeFondos.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboOrigenDeFondos.FormattingEnabled = True
- Me.cboOrigenDeFondos.Location = New System.Drawing.Point(893, 294)
- Me.cboOrigenDeFondos.Name = "cboOrigenDeFondos"
- Me.cboOrigenDeFondos.Size = New System.Drawing.Size(182, 26)
- Me.cboOrigenDeFondos.TabIndex = 10
- '
- 'cboCalificacionDeRiesgo
- '
- Me.cboCalificacionDeRiesgo.BackColor = System.Drawing.SystemColors.Menu
- Me.cboCalificacionDeRiesgo.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodCalRi", True))
- Me.cboCalificacionDeRiesgo.DisplayMember = "Codigo"
- Me.cboCalificacionDeRiesgo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboCalificacionDeRiesgo.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboCalificacionDeRiesgo.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboCalificacionDeRiesgo.FormattingEnabled = True
- Me.cboCalificacionDeRiesgo.Location = New System.Drawing.Point(171, 394)
- Me.cboCalificacionDeRiesgo.Name = "cboCalificacionDeRiesgo"
- Me.cboCalificacionDeRiesgo.Size = New System.Drawing.Size(182, 26)
- Me.cboCalificacionDeRiesgo.TabIndex = 12
- Me.cboCalificacionDeRiesgo.ValueMember = "Codigo"
- '
- 'txtCodigoInversion
- '
- Me.txtCodigoInversion.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "CodInv", True))
- Me.txtCodigoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtCodigoInversion.Location = New System.Drawing.Point(529, 23)
- Me.txtCodigoInversion.Name = "txtCodigoInversion"
- Me.txtCodigoInversion.ReadOnly = True
- Me.txtCodigoInversion.Size = New System.Drawing.Size(182, 23)
- Me.txtCodigoInversion.TabIndex = 0
- '
- 'lblCodigoInversion
- '
- Me.lblCodigoInversion.AutoSize = True
- Me.lblCodigoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblCodigoInversion.Location = New System.Drawing.Point(386, 25)
- Me.lblCodigoInversion.Name = "lblCodigoInversion"
- Me.lblCodigoInversion.Size = New System.Drawing.Size(48, 18)
- Me.lblCodigoInversion.TabIndex = 54
- Me.lblCodigoInversion.Text = "Código"
- '
- 'txtAsunto
- '
- Me.txtAsunto.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.txtAsunto.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Asunto", True))
- Me.txtAsunto.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtAsunto.Location = New System.Drawing.Point(168, 24)
- Me.txtAsunto.Name = "txtAsunto"
- Me.txtAsunto.Size = New System.Drawing.Size(182, 23)
- Me.txtAsunto.TabIndex = 2
- '
- 'lblAsunto
- '
- Me.lblAsunto.AutoSize = True
- Me.lblAsunto.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblAsunto.Location = New System.Drawing.Point(20, 24)
- Me.lblAsunto.Name = "lblAsunto"
- Me.lblAsunto.Size = New System.Drawing.Size(48, 18)
- Me.lblAsunto.TabIndex = 53
- Me.lblAsunto.Text = "Asunto"
- '
- 'txtComentarios
- '
- Me.txtComentarios.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.txtComentarios.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Coment", True))
- Me.txtComentarios.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtComentarios.Location = New System.Drawing.Point(25, 455)
- Me.txtComentarios.Multiline = True
- Me.txtComentarios.Name = "txtComentarios"
- Me.txtComentarios.Size = New System.Drawing.Size(327, 82)
- Me.txtComentarios.TabIndex = 15
- '
- 'Label9
- '
- Me.Label9.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label9.Location = New System.Drawing.Point(23, 423)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(82, 18)
- Me.Label9.TabIndex = 67
- Me.Label9.Text = "Comentarios"
- '
- 'txtJustificacion
- '
- Me.txtJustificacion.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.txtJustificacion.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Just", True))
- Me.txtJustificacion.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtJustificacion.Location = New System.Drawing.Point(392, 455)
- Me.txtJustificacion.Multiline = True
- Me.txtJustificacion.Name = "txtJustificacion"
- Me.txtJustificacion.Size = New System.Drawing.Size(322, 82)
- Me.txtJustificacion.TabIndex = 14
- '
- 'Label8
- '
- Me.Label8.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label8.Location = New System.Drawing.Point(390, 423)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(82, 18)
- Me.Label8.TabIndex = 66
- Me.Label8.Text = "Justificación"
- '
- 'txtMontoInversion
- '
- Me.txtMontoInversion.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "MontoInv", True))
- Me.txtMontoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtMontoInversion.Location = New System.Drawing.Point(168, 61)
- Me.txtMontoInversion.Name = "txtMontoInversion"
- Me.txtMontoInversion.Size = New System.Drawing.Size(182, 23)
- Me.txtMontoInversion.TabIndex = 4
- '
- 'lblMontoInversion
- '
- Me.lblMontoInversion.AutoSize = True
- Me.lblMontoInversion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblMontoInversion.ForeColor = System.Drawing.Color.Maroon
- Me.lblMontoInversion.Location = New System.Drawing.Point(20, 61)
- Me.lblMontoInversion.Name = "lblMontoInversion"
- Me.lblMontoInversion.Size = New System.Drawing.Size(111, 18)
- Me.lblMontoInversion.TabIndex = 69
- Me.lblMontoInversion.Text = "Monto Inversión *"
- '
- 'txtPrecio
- '
- Me.txtPrecio.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Precio", True))
- Me.txtPrecio.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtPrecio.Location = New System.Drawing.Point(168, 129)
- Me.txtPrecio.Name = "txtPrecio"
- Me.txtPrecio.Size = New System.Drawing.Size(181, 23)
- Me.txtPrecio.TabIndex = 5
- '
- 'lblPrecio
- '
- Me.lblPrecio.AutoSize = True
- Me.lblPrecio.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblPrecio.Location = New System.Drawing.Point(20, 128)
- Me.lblPrecio.Name = "lblPrecio"
- Me.lblPrecio.Size = New System.Drawing.Size(43, 18)
- Me.lblPrecio.TabIndex = 71
- Me.lblPrecio.Text = "Precio"
- '
- 'lblRendEsp
- '
- Me.lblRendEsp.AutoSize = True
- Me.lblRendEsp.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblRendEsp.Location = New System.Drawing.Point(386, 96)
- Me.lblRendEsp.Name = "lblRendEsp"
- Me.lblRendEsp.Size = New System.Drawing.Size(81, 18)
- Me.lblRendEsp.TabIndex = 73
- Me.lblRendEsp.Text = "Rendimiento"
- '
- 'dtpFechaDocumento
- '
- Me.dtpFechaDocumento.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.PIN0BindingSource4, "FechaDoc", True))
- Me.dtpFechaDocumento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.dtpFechaDocumento.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.dtpFechaDocumento.Location = New System.Drawing.Point(529, 128)
- Me.dtpFechaDocumento.Name = "dtpFechaDocumento"
- Me.dtpFechaDocumento.Size = New System.Drawing.Size(182, 23)
- Me.dtpFechaDocumento.TabIndex = 18
- '
- 'lblFecha
- '
- Me.lblFecha.AutoSize = True
- Me.lblFecha.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblFecha.Location = New System.Drawing.Point(386, 131)
- Me.lblFecha.Name = "lblFecha"
- Me.lblFecha.Size = New System.Drawing.Size(42, 18)
- Me.lblFecha.TabIndex = 76
- Me.lblFecha.Text = "Fecha"
- '
- 'cboPlazosFactor
- '
- Me.cboPlazosFactor.BackColor = System.Drawing.SystemColors.Menu
- Me.cboPlazosFactor.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "PlazoFact", True))
- Me.cboPlazosFactor.DisplayMember = "Nombre"
- Me.cboPlazosFactor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPlazosFactor.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPlazosFactor.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboPlazosFactor.FormattingEnabled = True
- Me.cboPlazosFactor.Location = New System.Drawing.Point(890, 21)
- Me.cboPlazosFactor.Name = "cboPlazosFactor"
- Me.cboPlazosFactor.Size = New System.Drawing.Size(121, 26)
- Me.cboPlazosFactor.TabIndex = 8
- '
- 'txtIngresos
- '
- Me.txtIngresos.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Ingresos", True))
- Me.txtIngresos.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtIngresos.Location = New System.Drawing.Point(168, 94)
- Me.txtIngresos.Name = "txtIngresos"
- Me.txtIngresos.Size = New System.Drawing.Size(181, 23)
- Me.txtIngresos.TabIndex = 9
- '
- 'lblIngreEsp
- '
- Me.lblIngreEsp.AutoSize = True
- Me.lblIngreEsp.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblIngreEsp.Location = New System.Drawing.Point(20, 94)
- Me.lblIngreEsp.Name = "lblIngreEsp"
- Me.lblIngreEsp.Size = New System.Drawing.Size(120, 18)
- Me.lblIngreEsp.TabIndex = 80
- Me.lblIngreEsp.Text = "Ingresos Esperados"
- '
- 'txtPlazoNumero
- '
- Me.txtPlazoNumero.BackColor = System.Drawing.SystemColors.Menu
- Me.txtPlazoNumero.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Plazo", True))
- Me.txtPlazoNumero.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtPlazoNumero.Location = New System.Drawing.Point(1017, 23)
- Me.txtPlazoNumero.Name = "txtPlazoNumero"
- Me.txtPlazoNumero.Size = New System.Drawing.Size(56, 23)
- Me.txtPlazoNumero.TabIndex = 7
- '
- 'btnAccion
- '
- Me.btnAccion.BackColor = System.Drawing.Color.White
- Me.btnAccion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.btnAccion.ForeColor = System.Drawing.Color.Maroon
- Me.btnAccion.Location = New System.Drawing.Point(245, 19)
- Me.btnAccion.Name = "btnAccion"
- Me.btnAccion.Size = New System.Drawing.Size(163, 29)
- Me.btnAccion.TabIndex = 18
- Me.btnAccion.Text = "Aceptar"
- Me.btnAccion.UseVisualStyleBackColor = False
- '
- 'btnCancelar
- '
- Me.btnCancelar.BackColor = System.Drawing.Color.White
- Me.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel
- Me.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.btnCancelar.ForeColor = System.Drawing.Color.Maroon
- Me.btnCancelar.Location = New System.Drawing.Point(25, 19)
- Me.btnCancelar.Name = "btnCancelar"
- Me.btnCancelar.Size = New System.Drawing.Size(163, 29)
- Me.btnCancelar.TabIndex = 19
- Me.btnCancelar.Text = "Cancelar"
- Me.btnCancelar.UseVisualStyleBackColor = False
- '
- 'cboTipoOperacion
- '
- Me.cboTipoOperacion.BackColor = System.Drawing.SystemColors.Menu
- Me.cboTipoOperacion.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoOper", True))
- Me.cboTipoOperacion.DisplayMember = "Nombre"
- Me.cboTipoOperacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTipoOperacion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTipoOperacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboTipoOperacion.FormattingEnabled = True
- Me.cboTipoOperacion.Location = New System.Drawing.Point(532, 388)
- Me.cboTipoOperacion.Name = "cboTipoOperacion"
- Me.cboTipoOperacion.Size = New System.Drawing.Size(183, 26)
- Me.cboTipoOperacion.TabIndex = 88
- '
- 'cboAutorizacion
- '
- Me.cboAutorizacion.BackColor = System.Drawing.SystemColors.Menu
- Me.cboAutorizacion.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "AutEstado", True))
- Me.cboAutorizacion.DisplayMember = "Nombre"
- Me.cboAutorizacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboAutorizacion.Enabled = False
- Me.cboAutorizacion.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboAutorizacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboAutorizacion.FormattingEnabled = True
- Me.cboAutorizacion.Location = New System.Drawing.Point(893, 340)
- Me.cboAutorizacion.Name = "cboAutorizacion"
- Me.cboAutorizacion.Size = New System.Drawing.Size(182, 26)
- Me.cboAutorizacion.TabIndex = 91
- '
- 'btnActivar
- '
- Me.btnActivar.BackColor = System.Drawing.Color.FromArgb(CType(CType(21, Byte), Integer), CType(CType(81, Byte), Integer), CType(CType(118, Byte), Integer))
- Me.btnActivar.FlatAppearance.BorderSize = 0
- Me.btnActivar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.btnActivar.ForeColor = System.Drawing.Color.White
- Me.btnActivar.Location = New System.Drawing.Point(443, 19)
- Me.btnActivar.Name = "btnActivar"
- Me.btnActivar.Size = New System.Drawing.Size(207, 37)
- Me.btnActivar.TabIndex = 155
- Me.btnActivar.Text = "Activar"
- Me.btnActivar.UseVisualStyleBackColor = False
- '
- 'cboTipoMercado
- '
- Me.cboTipoMercado.BackColor = System.Drawing.SystemColors.Menu
- Me.cboTipoMercado.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoMerc", True))
- Me.cboTipoMercado.DisplayMember = "Nombre"
- Me.cboTipoMercado.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTipoMercado.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTipoMercado.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboTipoMercado.FormattingEnabled = True
- Me.cboTipoMercado.Location = New System.Drawing.Point(171, 294)
- Me.cboTipoMercado.Name = "cboTipoMercado"
- Me.cboTipoMercado.Size = New System.Drawing.Size(182, 26)
- Me.cboTipoMercado.TabIndex = 158
- Me.cboTipoMercado.ValueMember = "Codigo"
- '
- '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(3, 0)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(223, 24)
- Me.Label22.TabIndex = 160
- Me.Label22.Text = "Propuestas de Inversión"
- '
- 'pnlPie
- '
- Me.pnlPie.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.pnlPie.Controls.Add(Me.btnCancelar)
- Me.pnlPie.Controls.Add(Me.btnAccion)
- Me.pnlPie.Location = New System.Drawing.Point(3, 778)
- Me.pnlPie.Name = "pnlPie"
- Me.pnlPie.Size = New System.Drawing.Size(435, 92)
- Me.pnlPie.TabIndex = 161
- '
- 'txtNombre
- '
- Me.txtNombre.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "NombreManual", True))
- Me.txtNombre.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtNombre.Location = New System.Drawing.Point(529, 61)
- Me.txtNombre.Name = "txtNombre"
- Me.txtNombre.Size = New System.Drawing.Size(182, 23)
- Me.txtNombre.TabIndex = 162
- '
- 'lblNombre
- '
- Me.lblNombre.AutoSize = True
- Me.lblNombre.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.lblNombre.ForeColor = System.Drawing.Color.Maroon
- Me.lblNombre.Location = New System.Drawing.Point(387, 62)
- Me.lblNombre.Name = "lblNombre"
- Me.lblNombre.Size = New System.Drawing.Size(62, 18)
- Me.lblNombre.TabIndex = 163
- Me.lblNombre.Text = "Nombre *"
- '
- 'cboRenta
- '
- Me.cboRenta.BackColor = System.Drawing.SystemColors.Menu
- Me.cboRenta.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoRenta", True))
- Me.cboRenta.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboRenta.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboRenta.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboRenta.FormattingEnabled = True
- Me.cboRenta.Location = New System.Drawing.Point(532, 343)
- Me.cboRenta.Name = "cboRenta"
- Me.cboRenta.Size = New System.Drawing.Size(183, 26)
- Me.cboRenta.TabIndex = 164
- '
- 'cboTasa
- '
- Me.cboTasa.BackColor = System.Drawing.SystemColors.Menu
- Me.cboTasa.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "TipoTasa", True))
- Me.cboTasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboTasa.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboTasa.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboTasa.FormattingEnabled = True
- Me.cboTasa.Location = New System.Drawing.Point(893, 244)
- Me.cboTasa.Name = "cboTasa"
- Me.cboTasa.Size = New System.Drawing.Size(182, 26)
- Me.cboTasa.TabIndex = 166
- '
- 'cboPeriodicidad
- '
- Me.cboPeriodicidad.BackColor = System.Drawing.SystemColors.Menu
- Me.cboPeriodicidad.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "Periodicidad", True))
- Me.cboPeriodicidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPeriodicidad.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPeriodicidad.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboPeriodicidad.FormattingEnabled = True
- Me.cboPeriodicidad.Location = New System.Drawing.Point(532, 295)
- Me.cboPeriodicidad.Name = "cboPeriodicidad"
- Me.cboPeriodicidad.Size = New System.Drawing.Size(183, 26)
- Me.cboPeriodicidad.TabIndex = 167
- '
- 'Navegador
- '
- Me.Navegador.AddNewItem = Me.navNuevoRegistro
- Me.Navegador.BindingSource = Me.PIN0BindingSource4
- Me.Navegador.CountItem = Me.BindingNavigatorCountItem
- Me.Navegador.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "DocId", True))
- 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.navEliminarRegistro, Me.navBuscar, Me.navRecorrer, Me.navVistaPrevia, Me.navImprimir})
- Me.Navegador.Location = New System.Drawing.Point(0, 0)
- Me.Navegador.MoveFirstItem = Me.navPrimerRegistro
- Me.Navegador.MoveLastItem = Me.navUltimoRegistro
- Me.Navegador.MoveNextItem = navSiguienteRegistro
- Me.Navegador.MovePreviousItem = Me.navRegistroAnterior
- Me.Navegador.Name = "Navegador"
- Me.Navegador.PositionItem = Me.BindingNavigatorPositionItem
- Me.Navegador.Size = New System.Drawing.Size(1157, 25)
- Me.Navegador.TabIndex = 173
- 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"
- '
- '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
- '
- '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 = "Recorrer"
- '
- 'navVistaPrevia
- '
- Me.navVistaPrevia.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navVistaPrevia.Image = Global.Inversiones.My.Resources.Resources.FILEprintp
- Me.navVistaPrevia.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navVistaPrevia.Name = "navVistaPrevia"
- Me.navVistaPrevia.Size = New System.Drawing.Size(23, 22)
- Me.navVistaPrevia.Text = "Vista"
- '
- 'navImprimir
- '
- Me.navImprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.navImprimir.Image = Global.Inversiones.My.Resources.Resources.FILEprint
- Me.navImprimir.ImageTransparentColor = System.Drawing.Color.Magenta
- Me.navImprimir.Name = "navImprimir"
- Me.navImprimir.Size = New System.Drawing.Size(23, 22)
- Me.navImprimir.Text = "Impresion"
- '
- 'grbInversión
- '
- Me.grbInversión.AccessibleRole = System.Windows.Forms.AccessibleRole.TitleBar
- Me.grbInversión.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.grbInversión.Controls.Add(Me.btnActivar)
- Me.grbInversión.Location = New System.Drawing.Point(25, 543)
- Me.grbInversión.Name = "grbInversión"
- Me.grbInversión.Size = New System.Drawing.Size(1050, 77)
- Me.grbInversión.TabIndex = 174
- Me.grbInversión.TabStop = False
- Me.grbInversión.Text = "Convertir a Inversión"
- Me.grbInversión.Visible = False
- '
- 'chkUsuario
- '
- Me.chkUsuario.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.chkUsuario.AutoSize = True
- Me.chkUsuario.Location = New System.Drawing.Point(468, 47)
- Me.chkUsuario.Name = "chkUsuario"
- Me.chkUsuario.Size = New System.Drawing.Size(67, 17)
- Me.chkUsuario.TabIndex = 175
- Me.chkUsuario.Text = "Autorizar"
- Me.chkUsuario.UseVisualStyleBackColor = True
- '
- 'txtRendimiento
- '
- Me.txtRendimiento.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "Rendimiento", True))
- Me.txtRendimiento.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtRendimiento.Location = New System.Drawing.Point(529, 95)
- Me.txtRendimiento.Name = "txtRendimiento"
- Me.txtRendimiento.Size = New System.Drawing.Size(182, 23)
- Me.txtRendimiento.TabIndex = 176
- '
- '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(6, 6)
- Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(1073, 574)
- 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.pnlAutorizacion)
- 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"
- '
- 'pnlAutorizacion
- '
- Me.pnlAutorizacion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.pnlAutorizacion.Controls.Add(Me.lblAutorizacion)
- Me.pnlAutorizacion.Location = New System.Drawing.Point(3, 308)
- Me.pnlAutorizacion.Name = "pnlAutorizacion"
- Me.pnlAutorizacion.Size = New System.Drawing.Size(228, 33)
- Me.pnlAutorizacion.TabIndex = 185
- '
- 'lblAutorizacion
- '
- Me.lblAutorizacion.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.lblAutorizacion.AutoSize = True
- Me.lblAutorizacion.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblAutorizacion.Location = New System.Drawing.Point(69, 5)
- Me.lblAutorizacion.Name = "lblAutorizacion"
- Me.lblAutorizacion.Size = New System.Drawing.Size(81, 18)
- Me.lblAutorizacion.TabIndex = 63
- Me.lblAutorizacion.Text = "Autorización"
- '
- '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.Panel1)
- Me.pnlContenedor.Controls.Add(Me.grpTipoMercado)
- Me.pnlContenedor.Controls.Add(Me.grpAutorizacion)
- 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.Label3)
- 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
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Location = New System.Drawing.Point(57, 10)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(40, 13)
- Me.Label3.TabIndex = 1
- Me.Label3.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
- '
- 'Panel1
- '
- Me.Panel1.Controls.Add(Me.btnCancel)
- Me.Panel1.Controls.Add(Me.btnAceptar)
- Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
- Me.Panel1.Location = New System.Drawing.Point(0, 358)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(335, 42)
- Me.Panel1.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
- '
- 'grpAutorizacion
- '
- Me.grpAutorizacion.Controls.Add(Me.flpAutorizacion)
- Me.grpAutorizacion.Location = New System.Drawing.Point(540, 344)
- Me.grpAutorizacion.Name = "grpAutorizacion"
- Me.grpAutorizacion.Size = New System.Drawing.Size(216, 131)
- Me.grpAutorizacion.TabIndex = 169
- Me.grpAutorizacion.TabStop = False
- Me.grpAutorizacion.Text = "Autorizacion"
- Me.grpAutorizacion.Visible = False
- '
- 'flpAutorizacion
- '
- Me.flpAutorizacion.AutoScroll = True
- Me.flpAutorizacion.Location = New System.Drawing.Point(0, 22)
- Me.flpAutorizacion.Name = "flpAutorizacion"
- Me.flpAutorizacion.Size = New System.Drawing.Size(213, 109)
- Me.flpAutorizacion.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
- '
- 'cboPaises
- '
- Me.cboPaises.BackColor = System.Drawing.SystemColors.Menu
- Me.cboPaises.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.PIN0BindingSource4, "CodPais", True))
- Me.cboPaises.DisplayMember = "Nombre"
- Me.cboPaises.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cboPaises.FlatStyle = System.Windows.Forms.FlatStyle.Flat
- Me.cboPaises.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.cboPaises.ForeColor = System.Drawing.SystemColors.InfoText
- Me.cboPaises.FormattingEnabled = True
- Me.cboPaises.Location = New System.Drawing.Point(532, 199)
- Me.cboPaises.Name = "cboPaises"
- Me.cboPaises.Size = New System.Drawing.Size(183, 26)
- Me.cboPaises.TabIndex = 156
- Me.cboPaises.ValueMember = "Codigo"
- '
- 'GroupBox2
- '
- Me.GroupBox2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.GroupBox2.Controls.Add(Me.Label1)
- Me.GroupBox2.Controls.Add(Me.txtPlazoNumero)
- Me.GroupBox2.Controls.Add(Me.lblCodigoInversionCM)
- Me.GroupBox2.Controls.Add(Me.cboPlazosFactor)
- Me.GroupBox2.Controls.Add(Me.txtCodigoInversionCM)
- Me.GroupBox2.Controls.Add(Me.lblMontoInversion)
- Me.GroupBox2.Controls.Add(Me.lblAsunto)
- Me.GroupBox2.Controls.Add(Me.lblNombre)
- Me.GroupBox2.Controls.Add(Me.txtNombre)
- Me.GroupBox2.Controls.Add(Me.txtRendimiento)
- Me.GroupBox2.Controls.Add(Me.lblCodigoInversion)
- Me.GroupBox2.Controls.Add(Me.txtAsunto)
- Me.GroupBox2.Controls.Add(Me.txtMontoInversion)
- Me.GroupBox2.Controls.Add(Me.txtCodigoInversion)
- Me.GroupBox2.Controls.Add(Me.dtpFechaDocumento)
- Me.GroupBox2.Controls.Add(Me.lblRendEsp)
- Me.GroupBox2.Controls.Add(Me.lblFecha)
- Me.GroupBox2.Controls.Add(Me.lblPrecio)
- Me.GroupBox2.Controls.Add(Me.txtPrecio)
- Me.GroupBox2.Controls.Add(Me.lblIngreEsp)
- Me.GroupBox2.Controls.Add(Me.txtIngresos)
- Me.GroupBox2.Location = New System.Drawing.Point(3, 6)
- Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(1101, 172)
- Me.GroupBox2.TabIndex = 178
- Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "Montos"
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label1.Location = New System.Drawing.Point(745, 23)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(38, 18)
- Me.Label1.TabIndex = 179
- Me.Label1.Text = "Plazo"
- '
- 'lblCodigoInversionCM
- '
- Me.lblCodigoInversionCM.AutoSize = True
- Me.lblCodigoInversionCM.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblCodigoInversionCM.Location = New System.Drawing.Point(745, 58)
- Me.lblCodigoInversionCM.Name = "lblCodigoInversionCM"
- Me.lblCodigoInversionCM.Size = New System.Drawing.Size(70, 18)
- Me.lblCodigoInversionCM.TabIndex = 178
- Me.lblCodigoInversionCM.Text = "Código CM"
- Me.lblCodigoInversionCM.Visible = False
- '
- 'txtCodigoInversionCM
- '
- Me.txtCodigoInversionCM.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.PIN0BindingSource4, "CodInv", True))
- Me.txtCodigoInversionCM.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.txtCodigoInversionCM.Location = New System.Drawing.Point(891, 57)
- Me.txtCodigoInversionCM.Name = "txtCodigoInversionCM"
- Me.txtCodigoInversionCM.ReadOnly = True
- Me.txtCodigoInversionCM.Size = New System.Drawing.Size(182, 23)
- Me.txtCodigoInversionCM.TabIndex = 177
- Me.txtCodigoInversionCM.Visible = False
- '
- 'TabCampos
- '
- Me.TabCampos.Controls.Add(Me.TbIngresarModificar)
- Me.TabCampos.Controls.Add(Me.TbBuscar)
- Me.TabCampos.Location = New System.Drawing.Point(3, 120)
- Me.TabCampos.Name = "TabCampos"
- Me.TabCampos.SelectedIndex = 0
- Me.TabCampos.Size = New System.Drawing.Size(1115, 652)
- Me.TabCampos.TabIndex = 179
- '
- 'TbIngresarModificar
- '
- Me.TbIngresarModificar.BackColor = System.Drawing.Color.WhiteSmoke
- Me.TbIngresarModificar.Controls.Add(Me.btnDetalleIF)
- Me.TbIngresarModificar.Controls.Add(Me.grbInversión)
- Me.TbIngresarModificar.Controls.Add(Me.txtJustificacion)
- Me.TbIngresarModificar.Controls.Add(Me.Label8)
- Me.TbIngresarModificar.Controls.Add(Me.txtComentarios)
- Me.TbIngresarModificar.Controls.Add(Me.Label9)
- Me.TbIngresarModificar.Controls.Add(Me.cboCalificadoraDeRiesgo)
- Me.TbIngresarModificar.Controls.Add(Me.cboTasa)
- Me.TbIngresarModificar.Controls.Add(Me.Label18)
- Me.TbIngresarModificar.Controls.Add(Me.cboAutorizacion)
- Me.TbIngresarModificar.Controls.Add(Me.cboOrigenDeFondos)
- Me.TbIngresarModificar.Controls.Add(Me.cboRenta)
- Me.TbIngresarModificar.Controls.Add(Me.cboPaises)
- Me.TbIngresarModificar.Controls.Add(Me.cboPeriodicidad)
- Me.TbIngresarModificar.Controls.Add(Me.cboCalificacionDeRiesgo)
- Me.TbIngresarModificar.Controls.Add(Me.cboTipoMercado)
- Me.TbIngresarModificar.Controls.Add(Me.cboInstrumentosFinancieros)
- Me.TbIngresarModificar.Controls.Add(Me.cboTipoOperacion)
- Me.TbIngresarModificar.Controls.Add(Me.cboEstadoDocumento)
- Me.TbIngresarModificar.Controls.Add(Me.cboEmisores)
- Me.TbIngresarModificar.Controls.Add(Me.cboEmpresas)
- Me.TbIngresarModificar.Controls.Add(Me.Label17)
- Me.TbIngresarModificar.Controls.Add(Me.Label16)
- Me.TbIngresarModificar.Controls.Add(Me.Label15)
- Me.TbIngresarModificar.Controls.Add(Me.Label14)
- Me.TbIngresarModificar.Controls.Add(Me.Label13)
- Me.TbIngresarModificar.Controls.Add(Me.Label12)
- Me.TbIngresarModificar.Controls.Add(Me.Label11)
- Me.TbIngresarModificar.Controls.Add(Me.Label10)
- Me.TbIngresarModificar.Controls.Add(Me.Label7)
- Me.TbIngresarModificar.Controls.Add(Me.Label6)
- Me.TbIngresarModificar.Controls.Add(Me.Label5)
- Me.TbIngresarModificar.Controls.Add(Me.Label4)
- Me.TbIngresarModificar.Controls.Add(Me.Label2)
- Me.TbIngresarModificar.Controls.Add(Me.GroupBox2)
- 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(1107, 626)
- Me.TbIngresarModificar.TabIndex = 0
- Me.TbIngresarModificar.Text = "Ingresar o Modificar"
- '
- 'btnDetalleIF
- '
- Me.btnDetalleIF.Font = New System.Drawing.Font("Trebuchet MS", 9.75!)
- Me.btnDetalleIF.ForeColor = System.Drawing.SystemColors.ControlDark
- Me.btnDetalleIF.Location = New System.Drawing.Point(319, 244)
- Me.btnDetalleIF.Name = "btnDetalleIF"
- Me.btnDetalleIF.Size = New System.Drawing.Size(34, 26)
- Me.btnDetalleIF.TabIndex = 193
- Me.btnDetalleIF.Text = "..."
- Me.btnDetalleIF.UseVisualStyleBackColor = True
- '
- 'Label18
- '
- Me.Label18.AutoSize = True
- Me.Label18.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label18.Location = New System.Drawing.Point(748, 252)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(63, 18)
- Me.Label18.TabIndex = 192
- Me.Label18.Text = "Tipo Tasa"
- '
- 'Label17
- '
- Me.Label17.AutoSize = True
- Me.Label17.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label17.Location = New System.Drawing.Point(748, 343)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(81, 18)
- Me.Label17.TabIndex = 191
- Me.Label17.Text = "Autorización"
- '
- 'Label16
- '
- Me.Label16.AutoSize = True
- Me.Label16.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label16.Location = New System.Drawing.Point(748, 297)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(117, 18)
- Me.Label16.TabIndex = 190
- Me.Label16.Text = "Orígenes de Fondo"
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label15.Location = New System.Drawing.Point(389, 252)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(47, 18)
- Me.Label15.TabIndex = 189
- Me.Label15.Text = "Estado"
- '
- 'Label14
- '
- Me.Label14.AutoSize = True
- Me.Label14.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label14.Location = New System.Drawing.Point(748, 202)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(139, 18)
- Me.Label14.TabIndex = 188
- Me.Label14.Text = "Calificadora de Riesgo"
- '
- 'Label13
- '
- Me.Label13.AutoSize = True
- Me.Label13.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label13.Location = New System.Drawing.Point(389, 391)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(112, 18)
- Me.Label13.TabIndex = 187
- Me.Label13.Text = "Tipo de operación"
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label12.Location = New System.Drawing.Point(390, 346)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(70, 18)
- Me.Label12.TabIndex = 186
- Me.Label12.Text = "Tipo Renta"
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label11.Location = New System.Drawing.Point(389, 297)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(79, 18)
- Me.Label11.TabIndex = 185
- Me.Label11.Text = "Periodicidad"
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label10.Location = New System.Drawing.Point(389, 202)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(44, 18)
- Me.Label10.TabIndex = 184
- Me.Label10.Text = "Países"
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label7.Location = New System.Drawing.Point(23, 397)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(137, 18)
- Me.Label7.TabIndex = 183
- Me.Label7.Text = "Calificacion de Riesgo"
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label6.Location = New System.Drawing.Point(23, 247)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(94, 18)
- Me.Label6.TabIndex = 182
- Me.Label6.Text = "Instrumentos *"
- '
- '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(23, 297)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(113, 18)
- Me.Label5.TabIndex = 181
- Me.Label5.Text = "Tipo de Mercado *"
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label4.Location = New System.Drawing.Point(23, 343)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(61, 18)
- Me.Label4.TabIndex = 180
- Me.Label4.Text = "Emisores"
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("Trebuchet MS", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label2.Location = New System.Drawing.Point(23, 202)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(73, 18)
- Me.Label2.TabIndex = 179
- Me.Label2.Text = "Empresas *"
- '
- '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(1107, 616)
- Me.TbBuscar.TabIndex = 1
- Me.TbBuscar.Text = "Buscar"
- Me.TbBuscar.UseVisualStyleBackColor = True
- '
- 'BottomToolStripPanel
- '
- Me.BottomToolStripPanel.Location = New System.Drawing.Point(0, 0)
- Me.BottomToolStripPanel.Name = "BottomToolStripPanel"
- Me.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
- Me.BottomToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
- Me.BottomToolStripPanel.Size = New System.Drawing.Size(0, 0)
- '
- 'TopToolStripPanel
- '
- Me.TopToolStripPanel.Location = New System.Drawing.Point(0, 0)
- Me.TopToolStripPanel.Name = "TopToolStripPanel"
- Me.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
- Me.TopToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
- Me.TopToolStripPanel.Size = New System.Drawing.Size(0, 0)
- '
- 'RightToolStripPanel
- '
- Me.RightToolStripPanel.Location = New System.Drawing.Point(0, 0)
- Me.RightToolStripPanel.Name = "RightToolStripPanel"
- Me.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
- Me.RightToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
- Me.RightToolStripPanel.Size = New System.Drawing.Size(0, 0)
- '
- 'LeftToolStripPanel
- '
- Me.LeftToolStripPanel.Location = New System.Drawing.Point(0, 0)
- Me.LeftToolStripPanel.Name = "LeftToolStripPanel"
- Me.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal
- Me.LeftToolStripPanel.RowMargin = New System.Windows.Forms.Padding(3, 0, 0, 0)
- Me.LeftToolStripPanel.Size = New System.Drawing.Size(0, 0)
- '
- 'ContentPanel
- '
- Me.ContentPanel.Size = New System.Drawing.Size(100, 125)
- '
- 'InstrumentoToolStripMenuItem
- '
- Me.InstrumentoToolStripMenuItem.Name = "InstrumentoToolStripMenuItem"
- Me.InstrumentoToolStripMenuItem.Size = New System.Drawing.Size(85, 19)
- Me.InstrumentoToolStripMenuItem.Text = "Instrumento"
- '
- 'lblCambiarRev
- '
- Me.lblCambiarRev.AutoSize = True
- Me.lblCambiarRev.Location = New System.Drawing.Point(1, 5)
- Me.lblCambiarRev.Name = "lblCambiarRev"
- Me.lblCambiarRev.Size = New System.Drawing.Size(89, 13)
- Me.lblCambiarRev.TabIndex = 181
- Me.lblCambiarRev.Text = "Cambiar Revisión"
- '
- 'pnlCambiarRev
- '
- Me.pnlCambiarRev.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.pnlCambiarRev.BackColor = System.Drawing.Color.Transparent
- Me.pnlCambiarRev.Controls.Add(Me.btnCambiarRev)
- Me.pnlCambiarRev.Controls.Add(Me.lblCambiarRev)
- Me.pnlCambiarRev.Location = New System.Drawing.Point(28, 19)
- Me.pnlCambiarRev.Name = "pnlCambiarRev"
- Me.pnlCambiarRev.Size = New System.Drawing.Size(93, 72)
- Me.pnlCambiarRev.TabIndex = 182
- Me.pnlCambiarRev.Visible = False
- '
- 'btnCambiarRev
- '
- Me.btnCambiarRev.BackgroundImage = Global.Inversiones.My.Resources.Resources.Revisión
- Me.btnCambiarRev.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.btnCambiarRev.Location = New System.Drawing.Point(22, 20)
- Me.btnCambiarRev.Name = "btnCambiarRev"
- Me.btnCambiarRev.Size = New System.Drawing.Size(48, 40)
- Me.btnCambiarRev.TabIndex = 180
- Me.btnCambiarRev.UseVisualStyleBackColor = True
- '
- 'pnlCambiarApro
- '
- Me.pnlCambiarApro.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.pnlCambiarApro.BackColor = System.Drawing.Color.Transparent
- Me.pnlCambiarApro.Controls.Add(Me.btnCambiarApro)
- Me.pnlCambiarApro.Controls.Add(Me.lblCambiarApro)
- Me.pnlCambiarApro.Location = New System.Drawing.Point(176, 19)
- Me.pnlCambiarApro.Name = "pnlCambiarApro"
- Me.pnlCambiarApro.Size = New System.Drawing.Size(97, 72)
- Me.pnlCambiarApro.TabIndex = 184
- Me.pnlCambiarApro.Visible = False
- '
- 'btnCambiarApro
- '
- Me.btnCambiarApro.BackgroundImage = Global.Inversiones.My.Resources.Resources.Aprobado
- Me.btnCambiarApro.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.btnCambiarApro.Location = New System.Drawing.Point(25, 21)
- Me.btnCambiarApro.Name = "btnCambiarApro"
- Me.btnCambiarApro.Size = New System.Drawing.Size(48, 40)
- Me.btnCambiarApro.TabIndex = 180
- Me.btnCambiarApro.UseVisualStyleBackColor = True
- '
- 'lblCambiarApro
- '
- Me.lblCambiarApro.AutoSize = True
- Me.lblCambiarApro.Location = New System.Drawing.Point(1, 5)
- Me.lblCambiarApro.Name = "lblCambiarApro"
- Me.lblCambiarApro.Size = New System.Drawing.Size(94, 13)
- Me.lblCambiarApro.TabIndex = 181
- Me.lblCambiarApro.Text = "Cambiar Aprobado"
- '
- 'pnlCambiarRec
- '
- Me.pnlCambiarRec.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.pnlCambiarRec.BackColor = System.Drawing.Color.Transparent
- Me.pnlCambiarRec.Controls.Add(Me.btnCambiarRec)
- Me.pnlCambiarRec.Controls.Add(Me.lblCambiarRec)
- Me.pnlCambiarRec.Location = New System.Drawing.Point(322, 19)
- Me.pnlCambiarRec.Name = "pnlCambiarRec"
- Me.pnlCambiarRec.Size = New System.Drawing.Size(107, 72)
- Me.pnlCambiarRec.TabIndex = 185
- Me.pnlCambiarRec.Visible = False
- '
- 'btnCambiarRec
- '
- Me.btnCambiarRec.BackgroundImage = Global.Inversiones.My.Resources.Resources.Rechazado
- Me.btnCambiarRec.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.btnCambiarRec.Location = New System.Drawing.Point(29, 21)
- Me.btnCambiarRec.Name = "btnCambiarRec"
- Me.btnCambiarRec.Size = New System.Drawing.Size(48, 40)
- Me.btnCambiarRec.TabIndex = 180
- Me.btnCambiarRec.UseVisualStyleBackColor = True
- '
- 'lblCambiarRec
- '
- Me.lblCambiarRec.AutoSize = True
- Me.lblCambiarRec.ForeColor = System.Drawing.Color.Black
- Me.lblCambiarRec.Location = New System.Drawing.Point(1, 5)
- Me.lblCambiarRec.Name = "lblCambiarRec"
- Me.lblCambiarRec.Size = New System.Drawing.Size(103, 13)
- Me.lblCambiarRec.TabIndex = 181
- Me.lblCambiarRec.Text = "Cambiar Rechazado"
- '
- 'PIN0TableAdapter3
- '
- Me.PIN0TableAdapter3.ClearBeforeFill = True
- '
- 'TableAdapterManager
- '
- Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
- Me.TableAdapterManager.PIN0TableAdapter = Me.PIN0TableAdapter3
- Me.TableAdapterManager.UpdateOrder = Inversiones.InversionesDEVDataSet5TableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
- '
- 'TableLayoutPanel3
- '
- Me.TableLayoutPanel3.Anchor = System.Windows.Forms.AnchorStyles.None
- Me.TableLayoutPanel3.BackColor = System.Drawing.Color.WhiteSmoke
- Me.TableLayoutPanel3.ColumnCount = 4
- Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
- Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
- Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 151.0!))
- Me.TableLayoutPanel3.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 101.0!))
- Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarRec, 2, 0)
- Me.TableLayoutPanel3.Controls.Add(Me.chkUsuario, 3, 0)
- Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarRev, 0, 0)
- Me.TableLayoutPanel3.Controls.Add(Me.pnlCambiarApro, 1, 0)
- Me.TableLayoutPanel3.Location = New System.Drawing.Point(232, 3)
- Me.TableLayoutPanel3.Name = "TableLayoutPanel3"
- Me.TableLayoutPanel3.RowCount = 1
- Me.TableLayoutPanel3.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
- Me.TableLayoutPanel3.Size = New System.Drawing.Size(552, 111)
- Me.TableLayoutPanel3.TabIndex = 186
- '
- 'FlowLayoutPanel1
- '
- Me.FlowLayoutPanel1.AutoScroll = True
- Me.FlowLayoutPanel1.Controls.Add(Me.Label22)
- Me.FlowLayoutPanel1.Controls.Add(Me.TableLayoutPanel3)
- Me.FlowLayoutPanel1.Controls.Add(Me.TabCampos)
- Me.FlowLayoutPanel1.Controls.Add(Me.pnlPie)
- Me.FlowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.FlowLayoutPanel1.Location = New System.Drawing.Point(0, 25)
- Me.FlowLayoutPanel1.Name = "FlowLayoutPanel1"
- Me.FlowLayoutPanel1.Size = New System.Drawing.Size(1157, 724)
- Me.FlowLayoutPanel1.TabIndex = 187
- '
- 'frmPIN
- '
- 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.BackColor = System.Drawing.Color.WhiteSmoke
- Me.CancelButton = Me.btnCancelar
- Me.ClientSize = New System.Drawing.Size(1157, 749)
- Me.Controls.Add(Me.FlowLayoutPanel1)
- Me.Controls.Add(Me.Navegador)
- Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
- Me.Name = "frmPIN"
- Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
- CType(Me.PIN0BindingSource4, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.InversionesDEVDataSet5, System.ComponentModel.ISupportInitialize).EndInit()
- Me.pnlPie.ResumeLayout(False)
- CType(Me.Navegador, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Navegador.ResumeLayout(False)
- Me.Navegador.PerformLayout()
- Me.grbInversión.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.pnlAutorizacion.ResumeLayout(False)
- Me.pnlAutorizacion.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.Panel1.ResumeLayout(False)
- Me.grpTipoMercado.ResumeLayout(False)
- Me.grpAutorizacion.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.GroupBox2.ResumeLayout(False)
- Me.GroupBox2.PerformLayout()
- Me.TabCampos.ResumeLayout(False)
- Me.TbIngresarModificar.ResumeLayout(False)
- Me.TbIngresarModificar.PerformLayout()
- Me.TbBuscar.ResumeLayout(False)
- Me.pnlCambiarRev.ResumeLayout(False)
- Me.pnlCambiarRev.PerformLayout()
- Me.pnlCambiarApro.ResumeLayout(False)
- Me.pnlCambiarApro.PerformLayout()
- Me.pnlCambiarRec.ResumeLayout(False)
- Me.pnlCambiarRec.PerformLayout()
- Me.TableLayoutPanel3.ResumeLayout(False)
- Me.TableLayoutPanel3.PerformLayout()
- Me.FlowLayoutPanel1.ResumeLayout(False)
- Me.FlowLayoutPanel1.PerformLayout()
- Me.ResumeLayout(False)
- Me.PerformLayout()
- End Sub
- Friend WithEvents cboCalificadoraDeRiesgo As ComboBox
- Friend WithEvents cboEmisores As ComboBox
- Friend WithEvents cboInstrumentosFinancieros As ComboBox
- Friend WithEvents cboEmpresas As ComboBox
- Friend WithEvents cboEstadoDocumento As ComboBox
- Friend WithEvents cboOrigenDeFondos As ComboBox
- Friend WithEvents cboCalificacionDeRiesgo As ComboBox
- Friend WithEvents txtCodigoInversion As TextBox
- Friend WithEvents lblCodigoInversion As Label
- Friend WithEvents txtAsunto As TextBox
- Friend WithEvents lblAsunto As Label
- Friend WithEvents txtComentarios As TextBox
- Friend WithEvents Label9 As Label
- Friend WithEvents txtJustificacion As TextBox
- Friend WithEvents Label8 As Label
- Friend WithEvents txtMontoInversion As TextBox
- Friend WithEvents lblMontoInversion As Label
- Friend WithEvents txtPrecio As TextBox
- Friend WithEvents lblPrecio As Label
- Friend WithEvents lblRendEsp As Label
- Friend WithEvents dtpFechaDocumento As DateTimePicker
- Friend WithEvents lblFecha As Label
- Friend WithEvents cboPlazosFactor As ComboBox
- Friend WithEvents txtIngresos As TextBox
- Friend WithEvents lblIngreEsp As Label
- Friend WithEvents txtPlazoNumero As TextBox
- Friend WithEvents btnAccion As Button
- Friend WithEvents btnCancelar As Button
- Friend WithEvents cboTipoOperacion As ComboBox
- Friend WithEvents cboAutorizacion As ComboBox
- Friend WithEvents btnActivar As Button
- Friend WithEvents cboTipoMercado As ComboBox
- Friend WithEvents Label22 As Label
- Friend WithEvents pnlPie As Panel
- Friend WithEvents txtNombre As TextBox
- Friend WithEvents lblNombre As Label
- Friend WithEvents cboRenta As ComboBox
- Friend WithEvents cboTasa As ComboBox
- Friend WithEvents cboPeriodicidad As ComboBox
- 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 navModificar As ToolStripButton
- Friend WithEvents navNuevo As ToolStripButton
- Friend WithEvents navBuscar As ToolStripButton
- Friend WithEvents navEliminar As ToolStripButton
- Friend WithEvents navRecorrer As ToolStripButton
- Friend WithEvents grbInversión As GroupBox
- Friend WithEvents chkUsuario As CheckBox
- Friend WithEvents txtRendimiento As TextBox
- Friend WithEvents GroupBox1 As GroupBox
- Friend WithEvents pnlContenedor As Panel
- Friend WithEvents GroupBox2 As GroupBox
- Friend WithEvents grpInstrumentos As GroupBox
- Friend WithEvents grpEmpresas As GroupBox
- Friend WithEvents TabCampos As TabControl
- Friend WithEvents TbIngresarModificar As TabPage
- Friend WithEvents TbBuscar As TabPage
- Friend WithEvents grpCalificadoraRiesgo As GroupBox
- Friend WithEvents grpCalificacionRiesgo As GroupBox
- Friend WithEvents grpEmisor As GroupBox
- Friend WithEvents grpPlazo As GroupBox
- Friend WithEvents grpOrigenFondos As GroupBox
- Friend WithEvents grpAutorizacion As GroupBox
- Friend WithEvents grpTipoOperacion As GroupBox
- Friend WithEvents grpEstadoDocumento As GroupBox
- Friend WithEvents grpPais As GroupBox
- Friend WithEvents grpTipoMercado As GroupBox
- Friend WithEvents flpTipoMercado As FlowLayoutPanel
- Friend WithEvents flpAutorizacion As FlowLayoutPanel
- Friend WithEvents flpTipoOperacion As FlowLayoutPanel
- Friend WithEvents flpEstadoDocumento As FlowLayoutPanel
- Friend WithEvents flpPais As FlowLayoutPanel
- Friend WithEvents flpCalificadoraRiesgo As FlowLayoutPanel
- Friend WithEvents flpCalificacionRiesgo As FlowLayoutPanel
- Friend WithEvents flpEmisor As FlowLayoutPanel
- Friend WithEvents flpPlazo As FlowLayoutPanel
- Friend WithEvents flpOrigenFondos As FlowLayoutPanel
- Friend WithEvents flpInstrumentos As FlowLayoutPanel
- Friend WithEvents flpEmpresas As FlowLayoutPanel
- Friend WithEvents BottomToolStripPanel As ToolStripPanel
- Friend WithEvents TopToolStripPanel As ToolStripPanel
- Friend WithEvents RightToolStripPanel As ToolStripPanel
- Friend WithEvents LeftToolStripPanel As ToolStripPanel
- Friend WithEvents ContentPanel As ToolStripContentPanel
- Friend WithEvents InstrumentoToolStripMenuItem As ToolStripMenuItem
- Friend WithEvents pnlCargaDatos As Panel
- 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 pnlAutorizacion As Panel
- Friend WithEvents lblAutorizacion 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 Panel1 As Panel
- Friend WithEvents btnCancel As Button
- Friend WithEvents btnAceptar As Button
- Friend WithEvents Panel3 As Panel
- Friend WithEvents Label3 As Label
- Friend WithEvents txtBuscar As TextBox
- Friend WithEvents navVistaPrevia As ToolStripButton
- Friend WithEvents navImprimir As ToolStripButton
- Friend WithEvents cboPaises As ComboBox
- Friend WithEvents btnCambiarRev As Button
- Friend WithEvents lblCambiarRev As Label
- Friend WithEvents pnlCambiarRev As Panel
- Friend WithEvents pnlCambiarApro As Panel
- Friend WithEvents btnCambiarApro As Button
- Friend WithEvents lblCambiarApro As Label
- Friend WithEvents pnlCambiarRec As Panel
- Friend WithEvents btnCambiarRec As Button
- Friend WithEvents lblCambiarRec As Label
- Friend WithEvents InversionesDEVDataSet5 As InversionesDEVDataSet5
- Friend WithEvents PIN0BindingSource4 As BindingSource
- Friend WithEvents PIN0TableAdapter3 As InversionesDEVDataSet5TableAdapters.PIN0TableAdapter
- Friend WithEvents TableAdapterManager As InversionesDEVDataSet5TableAdapters.TableAdapterManager
- Friend WithEvents TableLayoutPanel3 As TableLayoutPanel
- Friend WithEvents lblCodigoInversionCM As Label
- Friend WithEvents txtCodigoInversionCM As TextBox
- Friend WithEvents Label1 As Label
- Friend WithEvents Label17 As Label
- Friend WithEvents Label16 As Label
- Friend WithEvents Label15 As Label
- Friend WithEvents Label14 As Label
- Friend WithEvents Label13 As Label
- Friend WithEvents Label12 As Label
- Friend WithEvents Label11 As Label
- Friend WithEvents Label10 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents Label6 As Label
- Friend WithEvents Label5 As Label
- Friend WithEvents Label4 As Label
- Friend WithEvents Label2 As Label
- Friend WithEvents btnDetalleIF As Button
- Friend WithEvents Label18 As Label
- Friend WithEvents FlowLayoutPanel1 As FlowLayoutPanel
- End Class
|