Making A Builder For A Simple Ftp Client?

Jun 11, 2011

I'm making a builder for a simple ftp client, but i have a problem.I have readed a tut about a builder with a stub, thats done but i only can fill in 1 form, but how can i make that my builder fills 2 forms in the client?

My code in the stub is:

Dim options(), text1 As String
Const FileSplit = "@vorfin@"
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)

[code].....

View 1 Replies


ADVERTISEMENT

Making Reports With Report Builder 3.0 OR SQL Server BI Studio 2008

Dec 5, 2010

I have some questions about building reports in Report builder 3.0 OR SQL Server BI Studio 2008. I use the report builder for the good wizard. Make better reports dan de BI wizard. And after that i work further in the BI Studio. Now i have a problem i have a report(letter) that i need to generate. But i exists of 2 pages. The first page is a letter with the second page as Attachment with some calculations. So i may not printed on the same page. But i can't make 2 page's in de report builder or BI studio. How can i do that? Because i must place on each page a footer with some general info.

[Code]...

View 1 Replies

Simple IRC Client + Server

Sep 19, 2009

I have three computers in my house. I want to control them, like put to sleep, shutdown, display msgbox and so on. I want something very simple.

The server should have a window so i can write, something like: "Basement: shutdown". The client should not show. When the client receive its name and ": shutdown" it will then shutdown.

I have seen a bit on the 101 Samples for Visual Basic 2005 and "UsingSockets", but it don't have a server-form.

View 11 Replies

Making A Simple Calculator In VB?

Oct 1, 2005

how to make a simple calculator using vb?

View 11 Replies

Making A Simple Keylogger?

Jul 31, 2010

I want to make a simple key logger in VB.Net in console mode which runs on background. So, I m not getting any logic, how to made it.

View 10 Replies

Making A Simple Login?

Apr 15, 2009

The login box is the first box to appear, but after I successfully enter the right username/pass combo it goes to the next form, but the login form stays open as well? I've tried doing this:

Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
Dim username As String
Dim password As String

[code]....

However, after I click Login it closes down both windows. I've also tried LoginForm.Close() but that comes up with an error.

View 14 Replies

VS 2008 Simple Network Client

Jun 19, 2011

I've written an app that gets an integer value every 500 ms from a MCU over usb. Works great. I want to get that same value over TCP/IP. Programming the MCU is no problem The problem is in VB.Net. I've read a bunch of sites and they seem to be overkill to what I want and just don't work for VS 2008. I just want to get that value and then manipulate it. I've tried the 'system.Net.Sockets' import and dimmed a 'New TcpClient', but one of the sites said to call the tcpClient.connect method and that doesn't come up in intellisense. Can someone help me just connect to a server with known IP address and Port, and read the integer 'x' every 500 ms?

View 8 Replies

Making A Simple HEX Editor With VB 2010?

Mar 3, 2011

I'm making a simple HEX Editor with VB 2010. As a result I am trying to automatically leave a DataGridView cell after entering two characters and move onto the next cell

View 1 Replies

Making Own Simple Custom Button?

Jun 9, 2011

Introduction[INDENT]Since this is my first thread in VB.NET forum(most of the time, I was in C/C++ forum), I want to share something that you might find it useful with your school project or with your works.Button is already a MUST-HAVE element in every program (I couldn't imagine program without a single button would function). Because it is everywhere, its appearance affects your form's appearance greatly. Some people might not care about how their software looks, but to me, it is a very important aspect for my software.

NOTE: I am pretty new to VB.NET myself. If there is any mistake, please correct me.
[/INDENT]

Step 1: Creating UserControl and Essential Properties[INDENT]Creating UserControl into your project. Then imports the following:
Imports System.ComponentModel
Imports System.Windows.Forms

[code]....

Because UserControl already has BackColor and ForeColor properties, you only need to construct Text and BorderColor properties

Private _BorderColor As Color '' Button Border Color
Public Property BorderColor() As Color
Get

[code]....

View 1 Replies

Simple Client-server Application Programming?

Nov 18, 2010

I'm trying to learn how to do some very simple client-server application programming.

Basically, I want to make a program (the server) that listens and waits, and when a commend is sent it will run a batch file or execute a line of code.

The client will just ask for the ip and send the command when a button is pushed.

Shouldn't be too hard right? So what are some good resources that you've used to get started?

View 1 Replies

Making A Messenger Client?

Jul 14, 2010

i am trying to make a messenger client which will work like alerter or similar, so far i have decided to to make two applications,

1) which will send messenger,(sender)

2) which will accept msg and display a alert to user using msgbox.(receiver)

i have started coding receiver, i am using port 6000 to listen to messenger.so far i have made code to listen to port(open/bind/listen)but now i am not able to figure out how to display messages to user received on that port.

Dim RecieveSocket As Socket
Dim PortListen As Int16 = 6000
Dim address As IPAddress = IPAddress.Parse("0.0.0.0")
Dim endpoint As New IPEndPoint(address, PortListen)

[code]....

View 4 Replies

VS 2005 Make A Simple Client-server Program?

Sep 27, 2010

I was wanting to make a simple client-server program.I saw some code for it and it was easy to understand but it was with winsock.

The program is:

Client: Clicks button.
Server: Recieves Text written in clients textbox.

Is there a reasonably easy way to do this?Maybe Net.Sockets or something similar?

View 3 Replies

VS 2008 Making Client And Server?

Apr 11, 2009

I'm making a program that would require me to send data between to different machines.The way i plan to do this is to have a server program constantly running on my computer.(any other way to do this?) When someone opens the Client program, the program connects to the server. The server then takes the users I.P address and Username and adds it to a listbox on the Server application. Then the server application constantly updates the list of users on the Client application. So that way every user can see everyone that is connected.Then, when the user wants to connect to another user - They select the Username from their listbox of users. Then all connections will be handled between the users = Each user is connected to the other user's Client program. Well there is the first thing i don't know how to do.The next is simply how i send the data between the users. Would i use a winsock control?Example: One user does an action. The winsock control sends the text "blue" to the other user. The other user's program's form color changes to the color blue. That's not what this program will do, but it's just an example.

View 6 Replies

VS 2008 Send A Simple Text File To A Client From The Server?

Feb 16, 2010

I am Really Interested in Learning How to Code in Vb With Client and Servers.What should I use Tcp/Ip,Winsock? any Good Tutorials or Examples. How do I send a Simple Text file to A Client from the Server?

View 1 Replies

Making A Simple Game - Multiple Hotkeys - Simultaneously Go Up And Left

Jun 9, 2011

I'm making a simple game. I want simultaneously go up and left.

Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
' If e.KeyCode = Keys.Z Or e.KeyCode = Keys.Up Then

[CODE]...

Left, right, down and up work. now diagonal.

View 1 Replies

Making A Simple Program That Encrypts A Text File And Then Decrypts It?

Sep 30, 2009

I am making a simple program that encrypts a text file and then decrypts it: why i get an error when i use this

Public Class Form1
Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
System.IO.File.Encrypt(TextBox1.Text)

[Code].....

View 12 Replies

Making An Email Reader Program - TCP Client + SSL?

Jul 12, 2006

I am making an Email reader program, and I need to use POP3 servers. I learned the protocol so I'll could use winsock for the connections.The problem is, that a lot of servers require SSL connection, and I don't know how to open one...I know there is a way with the TCP socket, but I don't know how......

View 1 Replies

Making Voice Chat (client/server)on .net2008?

Mar 6, 2010

making voice chat (client/server)on vb.net2008

View 6 Replies

VS 2008 : Making A Chat Client And Server With Winsock?

Feb 10, 2010

Make a Chat Server and Client using winsock:I want to have a Login forum and Be able to ban user and Give them ranks I would like it to Use INI files.

View 2 Replies

Making A Simple Image Editor And Added Zooming And Drawing With Mouse Position Like A Pencil?

Sep 11, 2009

Im making a simple image editor and I added Zooming and Drawing with mouse position like a pencil. My problem is When I zoom the image and try to draw on it, everything becomes offset and the lines i drew are not even close to the mouse. Here is My code ( Just add a button1 and Picturebox1 with an image)

Public Class Form1
Dim pen1 As Pen
Dim x1, y1, x2, y2 As Integer
Dim gr As Graphics

[code]....

View 4 Replies

Finding Simple .net Code To Upload And Image From Client To Web Form Image Control And Save It To Sql Express Database?

Feb 15, 2011

find a current and simple way to do this. I'm using VWD Express 2008 and SQL Express 2008.I'm able to get the client's path to the image file using an asp:FileUpload control on the web form.How do I upload the client's image file and display it in the web form's image control?How do I save it to the sqlserver? The image table is already set up with a "Image" data type column. Can the image be saved to the database as simply as other data types?

View 3 Replies

Client-Server-Client Multithreading - Instant Message Another Client

Jun 21, 2010

We are creating a Who wants to be a millionaire style game in VB. Our server is pulling information such as questions and answers from a Access Database and sending them to the contestants (Clients). All transfer of information is directly from the server to each client. One of the "Life Lines" we want to use is "Ask a friend", where one client is able to Instant message another client for a short time to get help on the question.

[Code]...

View 2 Replies

Post A Simple Code Using VB That Start Building Simple Games?

Jun 10, 2011

Is there anyone can post a simple code using vb,that start building a simple games ?

View 2 Replies

Make A Simple Browser With Some Simple Addon's?

Dec 9, 2011

Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:

Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage

[code].....

View 2 Replies

Writing A Program With 1 Client And Server Where Client Side Creates A Text File

Dec 1, 2008

I have been reading through Atheists posts in regards to client-server and TCP client/server connection's. But how do i go about writing a program with 1 client and server where the client side creates a text file.Once the server sees there is a text file it connects and downloads it to itself or the client pushes the text file to the server.Once on the server i will read the text file and put its info into a sql db.

View 14 Replies

SMTP Email Client Fails On Local Machine Needs To Run On Client

Jun 29, 2010

I have an application that takes a series of reports and sends them as attachments in an email to a specified group of email accounts.

When I run the Java version of this using apache commons and the same setting, the email is sent. However, when I run the VB.NET version of the code, it fails on my local machine and on the client machine.

I have a VB.NET web application running on a server that uses similar code. I tried that code locally and it fails. Yet, the web application is working perfectly.

Why is it that the Java application can send the email, but the .NET application cannot?[code]....

View 7 Replies

VS 2008 Chat Server/client - After The Client Clicks Disconnect Or Closes By Task Manager, Looses Connection

Aug 18, 2009

Im using the code from [URL] as a starter, most of the code is the same. the chat system works fine but on the client a added a disconnect button "clientSocket.Close()" and as soon as i click that i get errors, on the client, this is the code...

Private Sub getMessage()
For infiniteCounter = 1 To 2

[CODE]...

And this line...

serverStream.Read(inStream, 0, buffSize)
gives me "Unable to read data from the transport connection: A blocking operation was interrupted by a call to WSACancelBlockingCall."

Now im talking the server, after the client clicks disconnect or closes by task manager, looses connection, etc the server crashes and gives me.

View 5 Replies

VS 2008 GUI .exe Builder?

Apr 15, 2009

Im trying to make an EXE with a GUI have made so they can input there info and make the program.

Im trying to make a mail sender

View 11 Replies

Designing Software - Making A MPC Sampler - Drum Machine - Making A Sound Directory ?

May 16, 2012

I'm a huge music person (got my own lil record thing going) but I'm wanting to design a program that would make music in my way. I have a decent amount of background knowlege of Visual Basic and Java I'm just wondering how could I execute this whole project. The Project is making a MPC Sampler. MPC is a drum machine; a machine with buttons that once you press it that it will play a sound from a drum (ex: snare, kick, tom, ect.) . So I would want to make some pads on my program that each have their own sound. Total of 16 pads. Which the design wouldn't be hard to make nor would the functionality of it having the play back sound (in my opinoin it wouldn't be hard atleast). But the thing is I wanna map out these pads to number keys on the number pad or keyboard. I'm not so sure how to do that. But that's all the easy stuff...

Also finding information is making a sound directory. What I mean by this is that I want to make a User Interface that will open up a file directory of sounds and the user can select what "kick" or "snare" sound he may want for the kick or snare pad. I don't know how to do that or even know what to search; neverless I don't know if this whole project idea is a good idea for Visual Basic or another programing language.

Also LATER ON I am wanting to add a record and export function that alows users to..well...record and export their beat or instrumental ha. That doesn't seem too too complex (mainly due to the fact that all it needs to do is record the users key strokes and then show them and play the sounds, but obviously it would get more complex than that.)

Here is an image of one of many MPCs but one with a directory - [URL]

View 5 Replies

Can String Builder Handle For For Each Or Will It Need For / To

Oct 20, 2010

Trying to do another replace method ' Strip URL text to generate correct download link

[Code]...

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved