Jump to content
Xtreme .Net Talk

bobbynad

Members
  • Posts

    21
  • Joined

  • Last visited

About bobbynad

  • Birthday 09/21/1972

Personal Information

  • Occupation
    Programmer
  • Visual Studio .NET Version
    .Net Professional
  • .NET Preferred Language
    VB.Net

bobbynad's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello Friends Please let me know the escape sequence which determines that the characters following it are editable or not editable. I am using Winsock to connect to telnet server , I do get the required data but couldn't know the escape sequence which determines the characters are editable or not. Please do help
  2. Hello , I have few problems in regard to the code below 1. The DataGrid is not displayed 2. I want to insert some data in the array and latter the array is attached to the datagrid. I am facing some errors a) at line AryFiles(FilCount) = New FileList(Fl.Name, Fl.Type, Fl.DateCreated) it shows the array out of bound. b) I tried to see the results using break point , I couldn't as it dosen't reach the breakpoint , Please let me know the process to apply break point and debug. Where am i wrong in this code Imports System.ComponentModel Public Class WebForm1 Inherits System.Web.UI.Page Protected WithEvents DropDownList1 As System.Web.UI.WebControls.DropDownList Protected WithEvents ListBox1 As System.Web.UI.WebControls.ListBox Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid Protected WithEvents Button1 As System.Web.UI.WebControls.Button Private AryFiles() As FileList = New FileList(1000) {} Protected WithEvents Label1 As System.Web.UI.WebControls.Label Dim FilCount As Integer #Region " Web Form Designer Generated Code " 'This call is required by the Web Form Designer. <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load FilCount = 0 'Put user code to initialize the page here End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click FilCount = 0 FilDisplay("C:\Documents and settings") DataGrid1.DataSource = AryFiles End Sub Private Sub FilDisplay(ByVal Str As String) Dim Fld As Scripting.Folder Dim Fl As Scripting.File Dim FSO = New Scripting.FileSystemObject() For Each Fl In FSO.getfolder(Str).files AryFiles(FilCount) = New FileList(Fl.Name, Fl.Type, Fl.DateCreated) FilCount = FilCount + 1 Next For Each Fld In FSO.getfolder(Str).subfolders FilDisplay(Str & "\" & Fld.Name) Next End Sub End Class Public Class FileList Private m_FileName As String Private m_FileType As String Private m_FileCreated As Date Public ReadOnly Property FileName() Get FileName = m_FileName End Get End Property Public ReadOnly Property FileType() Get FileType = m_FileType End Get End Property Public ReadOnly Property FileCreated() Get FileCreated = m_FileCreated End Get End Property Public Sub New(ByVal FileName As String, ByVal FileType As String, ByVal FileCreated As Date) Me.m_FileName = FileName Me.m_FileType = FileType Me.m_FileCreated = FileCreated End Sub End Class
  3. I placed few Web forms control on ASP.NET web page during design time. I edited the label control with text and a listbox control with some items , When I execute the program a new IE starts and displays the text and the collection of the listbox control as string, it dosen't show the controls . what would be the problem.
  4. bobbynad

    Telnet

    Hello I could get connected to the server using Winsock control and do implement Get & send Commands. I could get get data and display the same in VB form. Now I need is how to differentiate the characters I recieved is for editing or not editing. Such that I can place the non-editing characters in label controls and Editing characters in textboxes. Please do help
  5. Please help me to convert the below Java Code to Visual Basic <APPLET archive="DuriusWaterPic.jar" WIDTH="320" HEIGHT="240" ALIGN="MIDDLE" CODE="DuriusWaterPic.class"> <PARAM NAME="cabbase" VALUE="DuriusWaterPic.cab"> <PARAM NAME="image" VALUE="bluebrain.jpg"> <PARAM NAME="dim" VALUE="5"> <PARAM NAME="noise" VALUE="0"> <PARAM NAME="mouse" VALUE="9"> <PARAM NAME="timer" VALUE="0"> <PARAM NAME="target" VALUE="_blank"> <PARAM NAME="url" VALUE="http://www.bluebrain.nl/"> <PARAM NAME="bg" VALUE="ffffff"> <PARAM NAME="reg" VALUE="22454732"> </APPLET>
  6. vtputs (Char * f) { char cbuf[1024]; strcpy(cbuf,f); strcat(cbuf,"\n"); vtProcessedTextOut(cbuf, strlen(cbuf)); return(0); } Please , How would be the above code written in VB.Net.
  7. Hello Please Let me know to connect the server using the free ports available at time from the client machine usings sockets.
  8. Please let me know the details regarding RPC Connection in VB.NET
  9. Do anyone know about Remote Procedure Call Procedure , Please do help me in installing them on the system
  10. Hello I have a new assignment which requires to develop a application software which is used on terminals VT100 , Please help me to initialte this project.
  11. Thanks , I have been assigned a new Job to develop a program which will be used on VT100 emulators connected to server through WAN. I am new to such projects , I would like to know the process to initiate this type of project.
  12. Please let me know the details Emulator & its programming in VB.NET.
  13. Hello , Please let me know the procedure to write or change the contents of the textbox of the crystal report during runtime. If I have a textbox named Text1 in Section named Section7 & I need to change its contents during runtime , Whats the syntax to be used.
  14. I would like to build a crystal Report . Please help me with the code .
  15. How could I count no of Lines in a file , sentences in a file , words in a file , etc
×
×
  • Create New...