• Lunes 29 de Abril de 2024, 07:18

Mostrar Mensajes

Esta sección te permite ver todos los posts escritos por este usuario. Ten en cuenta que sólo puedes ver los posts escritos en zonas a las que tienes acceso en este momento.


Temas - Taursoft

Páginas: [1]
1
JavaScript / Alguien Amable Me Lo Explique Que Estoy Desesperao
« en: Viernes 12 de Marzo de 2004, 17:50 »
Código:
<script language="JavaScript">
//Evitar páginas fuera de su frame
if(top==self) top.location="frames.htm"
</script>

NOTA: Cambiar frames.htm por el nombre de la página de frames

¿que es lo que tengo que incoporar en el Index.htm ?

No consigo hacerlo. Te rogaria que me lo explicases.
Lo unico que consigo es que siempre cargue el index pero no que cargue la pagina de la cual viene la busqueda es decir que si abro una pagina que se llama alimentacion.htm no se carga esa pagina con marcos sino que lo que hace es abrir el index cual es el problema?
Saludos

2
HTML / Problema Con Frames Y Buscador
« en: Jueves 11 de Marzo de 2004, 21:12 »
Hola a todos a ver quie es el que e puede aclarar esto, yo tengo una página con frames y la he metido en google pero me aparecen direcciones sueltas de la web tales como
http://coco.webcindario.com/3.htm como puedo hacer para que si estas paginas son abiertas de esa forma se cargue el index con los frmaes y me muestre la pagina con los frames.
Saludos y espero me puedan ayudar.

3
VB .NET / Haver Si Alguien Sabe Como Va Esto
« en: Sábado 21 de Febrero de 2004, 22:19 »
HOLA MIRAD TENGO ESTE CODIGO:
Private Sub VListView1_GetItemInfo(ByRef Item As Windows_programa.ui.controls.vListView.ListViewItem) Handles VListView1.GetItemInfo

If Item.SubItems.Count = 0 Then
Item.Text = "Item: " & Item.Index + 1
Item.ImageIndex = 0
Else
VListView1.FlatScrollBar = True
If Item.SubItems.Item(0).Index = 1 Then
Item.SubItems.Item(0).Text = "prueba"

End If
If Item.SubItems.Item(0).Index = 3 Then
Item.SubItems.Item(0).Text = "p"
End If
If Item.SubItems.Item(0).Index = 2 Then
Item.SubItems.Item(0).Text = "furula"
End If

End If
End Sub
LO QUE HACE ES LLENAR UN LISTVIEW VIRTUAL, PERO TENGO UN PROBLMEA Y ES QUE SI ESTABLEZCO MIL ITEM EN
VListView1.ItemCount
EN LOS MIL ITEM ME ESCRIBE LO MISMO
COMO HAGO PARA QUE EN CADA ITEM ME COJA EL VALOR DE UNA VARIABLE DISTINTA ES DECIR AÑADO UN ITEM Y EL VALOR DE LA VARIABLE CAMBIA. COMO LO PUEDO HACER.
SALUDOS Y GRACIAS DE ANTEMANO

4
VB .NET / Ayuda Con Listview Por Favor
« en: Jueves 5 de Febrero de 2004, 15:39 »
HOLA A TODOS MIRAD MI PREGUNTA ES COMO PUEDO OPTIMIZAR LA CARGA DE LOS DATOS EN UN LISTVIEW PARA QUE CARGUE LOS DATOS RAPIDAMENTE.
A Y AQUI TENEIS EL CODIGO DE LA BASE DE DATOS CDDB COMPLETA PARA AQUELLOS QUE OS INTERESE TENERLA.
SALUDOS Y ESPERO ME PUEDAN AYUDAR :hola:

5
Visual Basic 6.0 e inferiores / Listview Virtual
« en: Lunes 2 de Febrero de 2004, 15:57 »
HOLA A TODOS MIRAD ME PREGUNTAVA SI ALGUNO DE VOSOTROS CONOCE ALGUN CONTROL OCX O DLL DE UN LISTVIEW VIRTUAL O DE ALGO PARECIDO PARA VIRTUALIZAR UN LISTVIEW Y QUE ME PERMITA AÑADIR GRANDES CANTIDADES DE DATOS EN UN TIEMPO MUY REDUCIDO.

GRACIAS POR VUESTRA AYUDA.
SALUDOS

6
VB .NET / Os Interesaria Una Clase Para Acceder A Cddb
« en: Miércoles 28 de Enero de 2004, 16:23 »
HOLA A TODOS SI QUEREIS UNA CLASE CDDB PARA ACCEDER AL SERVIDOR FREEDB PODEMOS ACERLA JUNTOS YA QUE YO DISPONGO DEL CODIGO PARA VISUAL BASIC 6.0
PERO YO LO NECESITO PARA VISUAL BASIC .NET
Y QUIERO QUE JUNTOS LO PASEMOS A VISUAL BASIC .NET PARA ELLO YO IRE PONIENDO PARTES DEL CODIGO

AQUI VA LA PRIMERA:

:comp:


Código: Text
  1.  
  2.  
  3. Option Explicit
  4.  
  5. 'Form handles
  6. Dim frmFuzzy As frmFuzzyMatch
  7. Dim frmSites As frmServerSites
  8. Dim frmSubmit As frmSubmitInfo
  9.  
  10. 'Default Freedb Server to use
  11. Const CDDB_SERVER As String = &#34;freedb.freedb.org&#34;
  12.  
  13. 'Events
  14. Public Event ProtocolError(ByVal Number As Long, ByVal Message As String)
  15.  
  16. 'Enums
  17. Public Enum uCDDBIfc
  18.     AUTO
  19.     SPTI
  20.     ASPI
  21.     MCI
  22. End Enum
  23.  
  24. Public Enum uCDDBMode
  25.     TEST
  26.     SUBMIT
  27. End Enum
  28.  
  29. Public Enum uCDDBLang
  30.     ENGLISH
  31.     GERMAN
  32.     FRENCH
  33. End Enum
  34.  
  35. Public Enum uCDDBMatchCode
  36.     MATCH_NONE
  37.     MATCH_MULTIPLE
  38.     MATCH_EXACT
  39. End Enum
  40.  
  41. 'collections
  42. Private colServers      As Collection
  43. Private colTrackNames   As Collection
  44. Private colTrackTimes   As Collection
  45. Private colTrackNotes   As Collection
  46.  
  47. 'properties management
  48. Private strAppName      As String
  49. Private strAppVer       As String
  50. Private enumCDDBMode    As uCDDBMode
  51. Private strCDDBServer   As String
  52. Private strUserEmail    As String
  53. 'lrcuscp 13.5.2002
  54. Private strCDDBFilePath As String
  55.  
  56. Private m_QueryString   As String
  57. Private m_UseFirstMatch As Boolean
  58. Private m_AllowSubmit   As Boolean
  59. Private m_QueryLocal    As Boolean
  60.  
  61. Private m_MatchCode     As uCDDBMatchCode
  62.  
  63. Private m_MediaTOC      As String
  64. Private m_MediaId       As String
  65. Private m_ArtistName    As String
  66. Private m_AlbumName     As String
  67. Private m_Category      As String
  68. Private m_Genre         As String
  69. Private m_AlbumSeconds  As Integer
  70. Private m_Tracks        As Integer
  71. Private m_Notes         As String
  72. Private m_Year          As String
  73. Private m_Revision      As Integer
  74. Private m_CdTextInfo    As String
  75.  
  76.  
  77.  
  78. Public Property Get GetMediaID() As String
  79.     GetMediaID = m_MediaId
  80. End Property
  81.  
  82. Public Property Get GetArtistName() As String
  83.     GetArtistName = m_ArtistName
  84. End Property
  85.  
  86. Public Property Get GetAlbumName() As String
  87.     GetAlbumName = m_AlbumName
  88. End Property
  89.  
  90. Public Property Get GetAlbumCategory() As String
  91.     GetAlbumCategory = m_Category
  92. End Property
  93.  
  94. Public Property Get GetAlbumGenre() As String
  95.     GetAlbumGenre = m_Category
  96.     If (m_Genre &#60;&#62; &#34;&#34;) Then GetAlbumGenre = m_Genre
  97. End Property
  98.  
  99. Public Property Get GetAlbumLength() As Long
  100.     GetAlbumLength = m_AlbumSeconds
  101. End Property
  102.  
  103. Public Property Get GetAlbumTracks() As Long
  104.     GetAlbumTracks = m_Tracks
  105. End Property
  106.  
  107. Public Property Get GetAlbumNotes() As String
  108.     GetAlbumNotes = m_Notes
  109. End Property
  110.  
  111. Public Property Get GetAlbumYear() As String
  112.     GetAlbumYear = m_Year
  113. End Property
  114.  
  115. Public Property Get GetAlbumRevision() As String
  116.     GetAlbumRevision = m_Revision
  117. End Property
  118.  
  119. Public Property Get GetTrackName(idx As Integer) As String
  120.     GetTrackName = &#34;&#34;
  121.     If (idx &#62; 0 And idx &#60;= colTrackNames.Count) Then
  122.         GetTrackName = colTrackNames(idx)
  123.     End If
  124. End Property
  125.  
  126. Public Property Get GetTrackTime(idx As Integer) As Integer
  127.     GetTrackTime = 0
  128.     If (idx &#62; 0 And idx &#60;= colTrackTimes.Count) Then
  129.         GetTrackTime = colTrackTimes(idx)
  130.     End If
  131. End Property
  132.  
  133. Public Property Get GetTrackNotes(idx As Integer) As String
  134.     GetTrackNotes = &#34;&#34;
  135.     If (idx &#62; 0 And idx &#60;= colTrackNotes.Count) Then
  136.         GetTrackNotes = colTrackNotes(idx)
  137.     End If
  138. End Property
  139.  
  140. Public Property Get GetCdText() As String
  141.     GetCdText = m_CdTextInfo
  142. End Property
  143.  
  144.  
  145. Public Property Get GetServer(idx As Integer) As String
  146.     Dim i As Integer
  147.     Dim j As Integer
  148.     Dim site As String
  149.     Dim tmpsite() As String
  150.  
  151.     'process errors here
  152.     On Error Resume Next
  153.  
  154.     'pass back a specific server
  155.     If (idx &#62; 0 And idx &#60;= colServers.Count) Then
  156.         'get site info string, no parsing option
  157.         GetServer = colServers(idx)
  158.     Else
  159.         'populate the servers into the selection box
  160.         For i = 1 To colServers.Count
  161.             'break down sserver site string to give more clear selection display
  162.             tmpsite = Split(colServers(i), &#34; &#34;, 15, vbTextCompare)
  163.            
  164.             site = tmpsite(0)                       'server name
  165.             site = site & vbTab & tmpsite(4) & _
  166.                    vbTab & tmpsite(5) & vbTab       'lat and lon
  167.            
  168.             'get the location...
  169.             For j = 6 To UBound(tmpsite())
  170.                 site = site & &#34; &#34; & tmpsite(j)
  171.             Next j
  172.            
  173.             'plug it in...
  174.             frmSites.lstList.AddItem site
  175.         Next i
  176.  
  177.         'get user selection...
  178.         i = frmSites.GetSelection()
  179.  
  180.         'server name _only_ returned, we are selecting for them...
  181.         tmpsite = Split(colServers(i), &#34; &#34;, 15, vbTextCompare)
  182.         GetServer = tmpsite(0)
  183.     End If
  184. End Property
  185.  
  186.  


TAMBIEN DEBEREIS DECLARAR LAS APIS NECESARIAS.

BUENO AQUI VA LA PRIMERA AHORA OS TOCA A VOSOTROS USTEDES TRADUCIS ESTO A .NET Y YO OS PONGO LA SEGUNDA PARTE ASI PODREIS AÑADIRLE A VUESTRAS APLICACIONES LA POSIBILIDAD DE ACCEDER A FREEDB CON ESTA CLASE QUE ES TOTALMENTE GRATUITA.

SALUDOS OS ESPERO AMIGOS  :comp:

7
VB .NET / Como Quedaria Esto En Net
« en: Martes 27 de Enero de 2004, 19:43 »
POR FAVOR ALGUIEN SABRIA DECIRME COMO QUEDARIA ESTO EN VISUAL BASIC .NET

ESTO ES EN VISUAL BASIC 6.0

Public Property Get GetMediaID() As String
GetMediaID = m_MediaId
End Property

Y NO SE COMO VA N VISUAL BASIC .NET

ALGUIEN ME LO DICE POR FAVOR

GRACIAS

8
VB .NET / Ayuda Con Este Codigo
« en: Miércoles 21 de Enero de 2004, 15:59 »
GRACIAS pero ya lo he solucionado solo. saludos y si quereis saber como se hace pues preguntarmelo que estare encantado de decirslo. :kicking:

9
VB .NET / Leer Ini
« en: Martes 20 de Enero de 2004, 15:34 »
HOLA,
POR FAVOR ALGUIEN ME PODRIA DECIR COMO LEER UN FICHERO INI EN VISUAL BASIC .NET


GRACIAS

10
Visual Basic 6.0 e inferiores / Insertar Datos....
« en: Miércoles 14 de Enero de 2004, 15:52 »
HOLA A TODOS MIRAD NECESITO SI ALGUIEN LO SABE Y CLARO ESTA NO LE IMPORTA EXPLICARMELO QUE ME DIGAN COMO PUEDO PONER DATOS EN UN DATAGRID O EN UN LISTVIEW DESDE UN ARCHIVO DE TEXTO CON LA SIGUIENTE EXTRUCTURA:
[Bird Hunter 2003]
1=Caza
2=Ingles
3=CD
4=Windows 95/98/ME/NT/2000/XP

[Deer Hunter 2004]
1=Caza
2=Ingles
3=CD
4=Windows 95/98/ME/NT/2000/XP

LO QUE QUIERO ES QUE EN EL DATAGRID ME PONGA EN UNA COLUMNA LLAMADA "NOMBRE" LOS DATOS QUE APARECEN EN CORCHETE LUEGO EN OTRA COLUMNA LOS DATOS QUE APARECEN NUMERADOS.

EJEMPLO:

NOMBRE                  |GENERO    |IDIOMA    |SOPORTE   |S.O
Bird Hunter 2003      |Caza         |Ingles      |CD             |Windows....

ESPERO ME PODAIS DECIR COMO SE HACE YA QUE ESTOY EMPEZANDO Y ME GUSTARIA APRENDER A HACER ESTO.

UN SALUDO A TODOS

11
Visual Basic 6.0 e inferiores / Que Me Aconsejais Para Hacer Esto
« en: Sábado 10 de Enero de 2004, 22:08 »
Hola todos mirad me gustaria que me aconsejarais en un buen control para realizar una base de datos ya que no estoy muy puesto en la programacion de bases de datos.
Me gustaria que me dijerais un buen control y algun sitio donde pueda obtener información de como programar una base de datos con el control que me aconsejeis.
Tambien si sabeis de algun control ocx de ubn combobox con estilo flat y un control como el de outlook ese del menu lateral.
A yo uso  Visual estudio .net y uso como lenguaje visual basic
muchas gracias y espero alguno de ustedes sea tan amable de aclararme mis dudas.
Una cosa que se me olvidava un listview no se puede usar como base de datos no? o si se podría usar para poner información obtenida de un fichero.
Saludos

12
Visual Basic 6.0 e inferiores / me podeis orientar?
« en: Jueves 13 de Noviembre de 2003, 15:37 »
Hola, tengo una duda y esuqe necesito poder desarrollar un programa que capte los mensajes que los usuarios me mandan en el messenger y los que yo mando, lo que no se es como decirle que coja el texto de la ventana del messenger con la persona con quien hablo.
Ha y una cosilla que no es para ningun troyano es para una parte de mi programa que quiero que mientras utilizan mi programa puedan ver lo que le estan escribiendo en el messenger y a su vez poder contestar. Una cosa podria hacer lo que quiero sin necesidad de que el messenger este puesto es decir puedo iniciar sesión con un programa echo desde visual basic obetenr mis contactos y hablar con ellos?
bueno esa es mi dudilla
Un fuerte saludos a todos

13
Visual Basic 6.0 e inferiores / Re: se podría poner un panel de un StatusBar1 en blanco
« en: Miércoles 12 de Noviembre de 2003, 16:02 »
Hola quedria saber si se puede poner el color de fondo de un panel de un statusbar en blanco
muchas gracias
y de nuevo decir que me encanta el foro nunca he visto uno tan completo
saludos

14
Visual Basic 6.0 e inferiores / Re: ¿que control utilizo para hacer una tabla?
« en: Lunes 10 de Noviembre de 2003, 18:41 »
:question: Hola amigos mirad necesito hacer una tabla para hacer una base de datos y necesito poder añadir columnas y filas al igual que me gustaria añadir imagenes en algunas celdas
si me podeis decir que control puedo utilizar os lo agradesco
un saludo

15
Visual Basic 6.0 e inferiores / Re: ¿que hace el control SAFRemoteDesktopClientHost?
« en: Domingo 9 de Noviembre de 2003, 20:13 »
Hola soy nuevo en este impresionate foro que descrubri hace solo dos dias y la verdad no he visto ninguno igual enorabuena.

Tengo curiosidad por lo que hace el control  SAFRemoteDesktopClientHost si alguien lo sabe espero qque me aclaren esa curiosidad.
Muchas gracias
Saludos

Páginas: [1]