Search results for query: *

  • Users: Core
  • Order by date
  1. Core

    Re: Default project type from VB to C#

    Re: Default project type from VB to C# You know how when you install Visual Studio it asks you what developement environment you wish to use? How to heck do I change it to CSharp now that I am tired of VB? Thanks in advance!
  2. Core

    Ansi telnet. Hyperterminal. BBS Terminal. Where to start?

    ANSI telenet. Like with a BBS. How? Anyone? I am trying to write a simple program like Hyperterminal. Is there an easy way to handle ANSI escape codes? I can make the telnet connection no problem.
  3. Core

    ASP.NET 2.0 and DATAGRIDVIEW with Objects

    Paszt, Thank you for replying. You are the first person to reply to any of my questions in this forum. I think I steered you wrong with my description. I can't drag my class object datasource onto the webform. I have tried 9 ways from Sunday to do it and it won't drag onto the form. It will...
  4. Core

    Nice Tutorial - Asp.net 2.0

    http://webproject.scottgu.com/VisualBasic/HelloWorld/Helloworld.aspx
  5. Core

    ASP.NET 2.0 and DATAGRIDVIEW with Objects

    Current Answer: Originally I created a class "rank.vb" with properties to set variables and then made an array of them. Public RankList(200) As Rank I set a object datasource to rank and pulled a datagridview onto my form. After updating the array I simple bound it...
  6. Core

    ASP.NET 2.0 and DATAGRIDVIEW with Objects

    In VB you can create a class, create an object datasource for it and drag it right onto your form. Why can't I do this in ASP? I can create the datasource no problem. But it doesn't even have the little arrow so you can select master/details. I am assuming I have to bind it progamatically...
  7. Core

    2 programs - communicate with each other - How?

    Honestly I may be missing something entirely. It isn't an area of expertise for me. But here is an example of just the send side using tcp/ip. Credit: Rimmel© Imports System.Net Imports System.Net.Sockets Imports System.Text PublicClass Form1 ' These vars can be formwide or local (in...
  8. Core

    2 programs - communicate with each other - How?

    Well if you need to do that only one way you set one machine to listen and the other to connect to it. If you need both set them both to listen and both to connect to one another. Here's an example from planet source code...
  9. Core

    2 programs - communicate with each other - How?

    What do they need to communicate? You mean you want to setup a constant connection? What kind of data are you sending? To just exchange data it can be as simple as reading a text file on a network location. Each program keeps it's info in the file and compares it to one another. Let me take...
  10. Core

    Ansi telnet. Hyperterminal. BBS Terminal. Where to start?

    Using hyperterminal with windows you can log into a BBS and you see colors, blinking, etc.. How do I do that in .net? I have figured out how to make the connection. Here is my receive code. NumBytes = tnSocket.Receive(RecvBytes, RecvBytes.Length, 0) RecvString = RecvString +...
Back
Top