Informacion de Usuarios que Accesaron a un Archivo en red

oscar_igor

New Member
Joined
Apr 7, 2003
Messages
22
Hola, tengo el siguiente codigo donde funciona todo muy bien. Este codigo me da que usuarios entraron a un determinado archivo que esta en red el problema es que los datos me los va insertando hacia la derecha y para mi es mejor que me los de hacia abajo, ya intente con varias pruebas y no mas no puedo.
Gracias por su apoyo.
Saludos
:banghead: :banghead: :banghead: :banghead:

Private Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long

Sub ActualizarRegistro()

Dim strUserName As String, Cadena As String * 46
Dim intNúmArchivo As Integer, lngNúmRegistro As Long

strUserName = String(100, Chr$(0))
GetUserName strUserName, 100
strUserName = Left$(strUserName, InStr(strUserName, Chr$(0)) - 1)

intNúmArchivo = FreeFile(1)
Cadena = Left(Left(strUserName, 25) & String(25, " "), 25) & Now() & Chr(13) & Chr(10)

Open "P:\accesos.txt" For Random Shared As intNúmArchivo Len = 46
lngNúmRegistro = (LOF(intNúmArchivo) / 46) + 1
Put intNúmArchivo, lngNúmRegistro, Cadena

Close intNúmArchivo

End Sub
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Re: Informacion de Usuarios que Accesaron a un Archivo en re

Ya encontre la solucion por si alguien le interesa:

Cadena = Left(Left(strUserName, 20) & String(20, " "), 20) & Now() & Chr(13) & Chr

Gracias de todas formas
Saludos
 
Upvote 0

Forum statistics

Threads
1,223,937
Messages
6,175,511
Members
452,650
Latest member
Tinfish

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top