Create A Private Chat For Office Branches
Oct 10, 2010i would like to create a private chat for our office branches.for sending simple message for the designated employee.and have a list of online employees.
View 1 Repliesi would like to create a private chat for our office branches.for sending simple message for the designated employee.and have a list of online employees.
View 1 Repliesi want to do partially clientserver chat application i have a idea that if user login to server his username and ip address shold detected and send to all the clients and in client list only username should display , ip address is kept hide , when user clicks any client it should connect directly to that client instead of server so that server load will be less only for conference chat we should use server?
View 2 RepliesIf I decide to build this, this would probably be my first "large" project i've ever done myself.What I am looking to build is a very simple Chat/IM client to use for the users in our office network. It would just call us their Windows logon name and use that to IM and the like. I'm talking a very simple client, with a list of names of people who are logged into the network, and option to IM them and an option to do a multiple user chat. It doesn't have to be visually stunning.
View 1 RepliesIm trying to make a basic client and listener chat room but im having problems with method invoker.
Error: Error1Method 'Private Sub CliInfo(CliMess As String)' does not have a signature compatible with delegate 'Delegate Sub MethodInvoker()'
Imports System.Net.Sockets
Imports System.Threading
Imports System.Text[code]......
As can be seen in the image, the X has 2 branches of moves (arrows), it can capture the Os by leaping on them (marked yellow), and I am not sure how to store such branches of moves/captures.
View 9 RepliesHow can I create my own LAN Chat?
View 1 RepliesIam planning to create a chat box by vb.net but I don't know what to do.What is that app needs?
View 3 Repliesim a bit humiliated on searching the net with a step by step instruction on how to create a vb.net form app that can communicate to other computers using tcplistener/tcpclient.
View 11 Repliescreate a chat room? My current hosting is a linux server with mysql. I want to make a client that can connect to the database.(already done) and if the user exists, to open a chat form. I want this to be multithreaded, that way I can have up to 500 people chatting with each other at the same time, from different locations. (realistically will usually be around 50)I have found some winsock type examples, but I dont understand how I can adapt that to work with a linux server... Can anyone help give me examples? I guess I basically want an IRC.(Which I dont know how to implement.)
View 2 RepliesI want to create a tcp/ip chat system using vb.net. I have created using vb6 using winsocks but unfortunately I couldnt find it in VB 2005. I have discussed with some friends about it and they also couldnt do it. I like to try something I dont know in this way I learn more. I want to create the in such a way that the client and server both have an interface and the client and server both have port text-boxes and the client has the host text box and the connect button.
View 2 Repliescreate a chat client for vb2008.The user logs in from a form, And they are taken to the main form with all the features. From their I want them to already be logged into the chat. The chat will get the username from the config.ini file. Since multiple people will be using this, I will be hosting the server part of the chat on a windows 2008 server.
View 2 Repliescreate a chat robot from theprogramming Currently I use Compiled language is VB.NET.From VB.NET in a few months exposure to MS SQL and use of these twotools to design my chat robot. That is fluent sentences of everyday language, a sentence stored in MSSQL.
As follows:
I say: <What did you say?
AI: I returned to what?>
A few months down the progress of the lack of progress.I can not find a better solution to enhance the smart until I found the AIMLchat robot.AIML is derived from the Artificial Intelligence Markup Language-basedword processing streaming XML.It is specifically designed to deal with sentence structure and the birth ofcomputer technology.I recently started slowly in contact with this technology AIML?[URL]
I would like to create a voice chat application using Vb.net
View 2 RepliesI have chose to create a text/voice/draw chat application. So far, I have gotten as far as creating a server application and a client application which can be run multiple times on the same mahine allowing each instance to communicate with on another.[code]...
View 5 RepliesI am trying to create a user control that basically looks and feels like fb chat contacts list complete with friends lists and online/offline toggle buttons. How should I proceed??
View 1 RepliesI want to create a CHAT server?
View 4 RepliesOkay so i am dreadfully bored in my Visual basic class at school and thought it would be fun to write a lan chat program for all of my class mates to use. So I was wondering what would be the best way to go about it. I have read up on Winsock but i can't tell if it even exists for Vb 10 or if it is usable if none of our computers cant talk over the internet. If winsock is not a viable option then what would be an alternative.
View 6 RepliesI am trying to create a signature from a private key that i have been provided and a hashed value. I am using DSA and the following code but receive the following error:
Invalid type specified. source mscorlib
The error is thrown on this line: ImportCspBlob(pk)
Private Function key() As String
Dim privatekey As String = "-----BEGIN DSA PRIVATE KEY-----" _
& "Key Data"
[Code]....
if i create a chat program and use winsock to connect me and my friend would my friend have to download MSWINSCK.OCX to run the application?
View 2 RepliesI was wondering if its possible to create a chat that runs off of mysql and not a server?
View 4 Repliesi want to create a simple chat and server application but i dont know where to start in socket hope someone will help me to create the application.
i found some tutorial in .net but it doesn't explain the code.
UDP multicast client and server chat application.
View 10 RepliesSo, in another related post, i got the chat to send to a java server, cool.Now, it's a matter of sending it back to VB.on the server side of things, (in java), I am using the following
JAVA
public static void sendback(String what2send) throws IOException {
ObjectOutputStream oos = new ObjectOutputStream(mySocket.getOutputStream());
[code]....
I have created a synchronized queue and am using SyncLock on the SyncRoot property of that queue when I invoke the Enqueue/Dequeue methods. The methods are invoked from instances of standard producer/consumer classes.Is that a proper use of the SyncRoot property?
Would it be better practice to create a private shared object in each class and lock on that instead?
I would like to create an interface that brings with it it's own private variables and regions.for example, if you create a class and implement IDisposable, you get all of the following:[code]
View 3 Repliesif for example i have two private sub I declared a local variable on private sub a... is there a way that private sub b could use the variable created on private sub a? Im asking because im in a problem in my app were using global variable is not an option to make the long story short
View 5 RepliesI have been told before that it is possible to create sections of code which can be collapsed and expanded like a normal Public or Private Sub, but containing multiple Public Subs So say I have code for a variety of textboxes I wanted to be able to collapse, how would I do this?
View 3 RepliesI am cleaning up some code and I have multiple classes that are 99% exactly the same. So my understanding is that my options are...
1. Create a class and all other classes inherit from it and modify it a bit
2. Create an abstract class and all classes inherit from it and modify a bit ** I took this route
3. Create an interface and all classes Implement that interface.
Here is my 'original' class below (the one that all of them look 99% identical). This class is used in an arraylist so I have a listing of all my images from a folder I have searched.
[Code]...
I am trying to create a Random Number Generator (dice roller) that will dump its results into an open chat window. I was lead towards using DDE but have never used it before. Is this the best method? if not, What is?
View 1 RepliesHow do I create a zoom bar like the one in Office? I mean the one that has a circular + and - button, and a numeric button that you can click on. I just assumed it was part of VB.net, but I can't see it anywhere.VBA VB.NET developer
View 7 Replies