Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Moving Simple Application From Client Server


Well i have developed general ledger(Accounting application)in vb6 .now i have to refine it i want that suppose there are 6 computers.

so i want is database will be located only on one computer which is known as server and other 5 computer will act like client only front are end are installed on them the problem is that what modification i have to doneto make client server architecture
i m using access but ofcourse i will moved towards to sel server




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Moving From Simple Application Into Client Server
Well i have developed general ledger(Accounting application)in vb6 .now i have to refine it i want that suppose there are 6 computers.

so i want is database will be located only on one computer which is known as server and other 5 computer will act like client only front are end are installed on them the problem is that what modification i have to done

Telnet Server, RF Client Bar Code Reader, Working With A VB Application Thin Client Application
> Hello To All,
>
> I need a little advice and direction.
>
> I trying to build and application where a RF (Radio Frequency 900mhz
> hand held Bar Code Reader) device would connect and enter and retrieve
> information from a VB application.
>
> Example of Screen:
> Updating Inventory:
>
> Invoice Number:_____________
>
> Part Number: _____________
>
> Quantity: _____________
>
> Press F2 to Save and Continue.
>
> How Do you build a Telnet or VT100 or VT220 Server application in VB
> that can create the Example and except the individual entries.
>
>
> The hand held device can connect to a server in Telnet (ANSI), but I
> just lost and can find anything solid on the web.
>
>
> Steven

Server Client Application
Hello All,
I'm seriously in need on info on how to write an App that runs on a LAN and specifically can monitor the client from the server. For instance, the server can view if any of its clients aer running that program and what state it is.

A Web Cafe Client program is an example of what i'm thinking about

Can anyone help me please?

Client Server Application
i put my sql server database on windows 2003 server.how can i connect my application on other pc(client) and get data from my sql server database,any idea to connect to server using active directory like most client server application do.
thank for any help

Client Server Application
Hi,
i want to make a client server software. kindly give me any idea and instruction.

thanks

Need Help With Client-server Application
Ok, I am using some source code that I got online from:
http://www.mentalis.org/vbexamples/l...ategory=SOURCE

The code is in the intermediate section titled server-client.

I need to know how to use this connection to use a database on the server side. Anybody know?

Client-server Application
hi!
till now i have developed desktop application but now i like to know how to develope client-server application using vb as front-end and sql server as front end
i also like to know this in detail ,so please help me out

Client/server Application
Can anyone point me into the right direction to find information on this? -- I have a program that is only designed for a single user, and I need to convert it into the client part of a client/server application. This client will obviously be on multiple computers accessing the same server. How do I handle all the users and be able to deal with them separately on this server. I know that in C++ I can just use threads, but I don't want to rewrite the program in a new language (time crunch). Each client will be extracting data from a database, and I need to know who is who becuase they will be having live data sent to them as it is updated on the server. Please Help!?!?!

Client/server Application
Hello all,

Good day to all! i need help a suggestion , solution or any code on how to
established a connection for client/server application.
For example:

***This is for remote IP

Remote IP: 192.168.2.55 ' this is the remote ip address
Remote Port: 12005
User Login: username
User Password: password
Database Name: dbname

***This is for remote Host

Remote Host: http://192.168.2.55
Remote Port: 12005
User Login: username
User Password: password
Database Name: dbname


Any suggestion or solution? Pls.

Thanks all
Joseph

Client/Server Application
Hi,

I want to develop a client/Server Application using Microsoft Winsock activeX control.

I want to save a record in a database whch is allocated in a server.

is there anyone to help how to go about?

Yor help is most appreciated.

RPK

Client/Server Application In VB6
I am trying to write a Client/Server application using VB6 ActiveX exe. I have two interfaces for the server and two clients. I need to call a method from client1 to fire an event to client2. When I define

Private WithEvents server as clsServer
Private interface as Interface1

Private Sub Form_Load()
Set server = new clsServer
Set interface1 = server
End Sub

Private Sub Client1Event()
interface.FireClien2Event
End Sub

Client1 calls Client1Event to fire an event, client1 can catch the event but client2 does not. This is because both clients created a copy of the server.
What can I do to make this work so that clients can call methods to fire events for each other?

Client Server Application
Client Server Application ...?

Client/server Application
Hi all! i would to develop a client/server application. my question is, instead of i installing the client application in all the computers in the network, can i just install the client in the server and then it would copy ( install ) itself into the computers within the network.

thanx in advance!

Client-server Application
plz..
i have to develop a client and server application in vb which can send and recive data from server

plz help me and show me a way to develop to it



Edited by - manish_khilwani on 3/6/2006 5:02:07 AM

Client- Server Application
Hai

I have a Vb application that runs on the server at a certain port.How do I go about writing a client tool that would enable a browser like Internet Explorer to connect to this application and exchange data.

Regards

Kumar

Client-Server Application
Hi,
Am developping a project using visual basic 6. The application is to work on windows 2000 Advanced Server. The database that will be used is SQL Server 2000. I need to get the Derver name at runtime because the apllication is being developped on another server. Obviously the server name will be different. I forgot to mentioned one more thing about the application...it is going to be shared so that multiple users can use the app. So if anyone can help me plz.

Thanks in advance,
Yours Sincerely




Edited by - duncan on 3/29/2003 12:04:49 AM

Client Server Application.
Hiii,
I have to develop a client server application using VB and SQL Server,I would use ADO.I have to make an online admission system where around 10 students can be given admission at a time for some specific college and course, after checking that whether seat is availabe in that college for that course or not.10 clients will access database(they can request to add,update,delete data) placed on a server.The whole database will be placed on server only.What are the major points I have to take care of for creating this application.Plz tell me that which cursor(eg. adOpenDynamic/adOpenStatic cursor in client side application) and lock type(adLockBatchOptimistic/optimistic lock in client application) I'll have to use for:
1. Add record (by one or many users at different or at the same time)
2. Update same or different record(by one or many users at different or at the same time)
3. Delete record under same situation.
If A,B,C,D are users.Can the record can be viewed by any no. of users(clients) without any problem?But how to restrict other users(B,C,D) to update/add/delete a specific record if that record is being used by a user(A)?And processing should be fast without getting an error/corruption of database/data duplicacy/data redundany. what about transaction handling?
I have worked only on desktop application using VB and SQL Server..At what points this client server application will be different from desktop application??Please help me in this regard..Its urgent for me.

thanx
mamta

Client Server Application
Hi EveryBody ;


I have an internet cafe i want to create a client server application thats allow me to controll clients machine ( Start using the machine , restart , shutdown , restrict access to some windows features ) and will try to coonnect this software to a database which will help me to improve the finantial operations for my cafe .

any one have any idea about doing this , e-book , or sample programe for this ?????

my email : firas_th@hotmail.com


Best Regards

Client/Server Application Using API
I need some information/code regarding client/server application using APIs. I want to develop an application which resides on server and creat a log file(text file) in which it keeps track of every user's Time, Date, User Name, IP Address, Maching Name and log off time. All the recrod should be in text file or in any othre format. So anybody can help me ? Thanks

Client/Server Application
Hi,

I was developed an application using VB5.0 and MSAccess97. Now this application running on a PC. It is connected with network. I want give access to this application other machine also. All machine on the Network. I was using the opendatabase menthod for opening database and openrecordset method for opening recordset.

I want how to develop a client/server application. Anyone have any ideas about this concept pls send mail.


Thanks

Regards

Siva

Simple Client Server Chat Prob
Aight,

I have a server and a client. For right now its just supposed to be a simple chat program. For some reason whenever the client send the server a piece of information, it always comes out as ???|? or something like that. Why cant the server read what the client has sent it?

I even tried having my client send something simple like


wskChat.senddata "I AM SENDING YOU THIS"

and apon dataarrival, that the server is just Simply to output that dang thing, but it always comes as ???|? or ??| ?? ????? You get the point. Its acting stupid.

Any ideas?

Simple Client/Server Ideas Needed
I'm in the process of developing a simple turn-based board game (we all remember Battleship, right?). I wasn't sure to put this here or in the Comm area. Anyway, here's what I'm thinking:

The server (simple web server) will store the files. I'm thinking of a couple text files. One will be used for player turn (0 or 1). Another file will hold the array of ship placement. For example:

Code:
[player 1]
Battleship=A1A6
etc

[player 2]
Battleship=B2G2
The other file will hold the firing coordinates.

What do you think about this setup? I may add additional files for things like stats and what not. I will be using WinSock so I'm not even sure if I'll need the "turn" file. I'm open to all suggestions.

MS Access With VB As A Client Server Application
hi ,
i have developed a software in Visual basic as a front end and MS access as back end.

my software have two diffrent type functionallity one for administarator and the other one for client(its just read only).

At the time off deployment i have faced some problems , so i need some sort of help about the problems.

1) database (MS Access MDB) should bee placed on the system where Administrator funcational application installed . and the other part of application (client) Which install on different systems ,use Administrator funcation application database which on different system.

so how its posible .

True Server/Client Application??
I plan to put my designed VB application on W2K Advanced Server and let about 10+ user using it.

I wonder if

1/ Do I need to design/code something (I've coded username and password to login feature in my application) in my program to handle client/server things or W2K Terminal Service will be capable of it??

2/ Is any special setup or installation if there is a case that W2K can not handle it?

Vb Application With Client - Server Database
Hai all,

I created one vb application in my PC with access database as backend.
If it is to be work on Local Area Network (client/server setup that is database available only on server) what shall i do?

Now i am using DSN LESS connection.
To acheive LAN set up which one is suitable DSN or DSNLESS.

I saw one software in which they provide only the IP of Server while configuring the client,
but client machine automatically idetifies the database of the server using that IP.
How can we do this?

If Database is changed as ORACLE or SQL server what is to be done for the above?

Can anyone help me on this?

Thanks in advance,
Louis

Client Server Application In Access....HELP!
I am currently building a client/server chat program using vba in Access. The reason for making it in Access is so that i can have a database running in the background to store data about the conversations.

The problem i am having is that when ever i break the connection between client and server, the one left open stops responding.

Has anyone experienced this before and how do i overcome it?!?!?!

Client / Server Database Application
Hello,

I want to clear something about Client Server Database application using Visual Basic 6.0 and SQL Server 2000 and ADO.

Is there any difference in Opening Recordset from the following ??



VB Code:
Set Rs = New ADODB.RecordsetWith Rs        .Open "Select * from Tbl_Class_Reg where Class_Code = '" & TxtCode & "'", dB, adOpenDynamic, adLockOptimisticEnd With


If any difference then what is that ?

What is Locking ??? Why we use it ??

Do we need 2 different softwares fro the same work for Clien and Server ? or just Install 1 software on server and open it from client ?

Please help me. Any code or application with code will be appriciated

Farooq

How To Run An Application From Server By Client Request
Hi,
may i ask you a simple (or complicated?) question.

how can I create an server-type application (or just a simple application)
which would be run only from server according to Clients requests.

In other words, how to avoid installation software/application on each network computer and run the application on it from server, i.e. create instances
of it on each computer and receive resulting data on server?

Thank you in advance,
Shab

sd12ru@yahoo.com

Client/Server Application With VB And Access
Client/Server Application With VB And Access

I have created an application with VB and Microsoft Access. However

like most VB/Access applications its a desktop application. I want to

convert this application into a Multiuser application wherein more than

one user can access it on the network.

How can I do it? Please help. An example code or link on the net would

be a great help.

Thanks.

Building Client Server Application
Yes, you must connect to the sqerver using some kind of data object..

I would strongly recomend ADO..

Once you established a connection you can do almost anything on the server...

Getting The Server Time From A Client Application
Does anyone know how to get the server time and date from a client application?

I'm writting an application and I wouldn't like the users change the local system time and save a record with an incorrect time.

Thanks a lot!!! ;o)

Marcelo Piazza
mpiazza@mailbr.com.br

Updating A Client Server Application
I have written a client server application in vb6 (vb client to oracle 8.6). I am currently pushing a new executable to each client whenever there are changes. I am interested in having the client search for updates on a server or over the web and initiate the update process without user intervention. Some remote clients are being updated using remote admin software. Cannot move to a new version of vb at this time.

Any suggestions would be greatly appreciated.

Help Winsock (client-server) Application
helo there ,im new to vb , and as im a working experience student the company whom i working with has given me project that is consider a small system/program that uses client - server concept.that means a server and 2 or more client which files and data are updated or modified using database at server from client(all the work are done in the client pc),i have this tutorial about winsock basic server - client application but couldn't understand. could anyone help me with my project ,i have done the interfaces ,buttons, menus, login using db,but just couldnt understand how ,when client insert data and it update it to the server.and how to do modules ,for it if any ,some tutorials or sample project would help me alot thank you.

How To Add Emotions To Client/Server Application
Hey Guys!

I have created a client server application with VB that allows to chat on a LAN , I want to add some emotions ... same like in VbCity

It is an easy question
any ideas !?!??!



Edited by - AS_CCE on 3/15/2004 12:38:50 AM

Updating A Client Server Application
I have written a client server application in vb6 (vb client to oracle 8.6). I am currently pushing a new executable to each client whenever there are changes. I am interested in having the client search for updates on a server or over the web and initiate the update process without user intervention. Some remote clients are being updated using remote admin software. Cannot move to a new version of vb at this time.

Any suggestions would be greatly appreciated.

Client/Server Application With VB And Access
Client/Server Application With VB And Access

I have created an application with VB and Microsoft Access. However

like most VB/Access applications its a desktop application. I want to

convert this application into a Multiuser application wherein more than

one user can access it on the network.

How can I do it? Please help. An example code or link on the net would

be a great help.

Thanks.

Client/Server Application With VB And Access
Client/Server Application With VB And Access

I have created an application with VB and Microsoft Access. However

like most VB/Access applications its a desktop application. I want to

convert this application into a Multiuser application wherein more than

one user can access it on the network.

How can I do it? Please help. An example code or link on the net would

be a great help.

Thanks.

PLEASE HELP - Creating Client Server Application
PLEASE HELP - Creating Client Server Application
--------------------------------------------------------------------------------

I created both client and server in VB6
The client is a regular VB application and the server is a ActiveX-EXE type of application.

The Client starts the server application using the CreateObject command.

Network in discuss:
Windows network (means no server is available, but each computer can reach each other hard disk).
No computer is defined as server, neither has IP address

Description of the current status and problem:
Let's Call the PC where the database resides F (Just a name for the description no more than that)
at the moment each client generates it's own server at the client PC machine. This server access the database at computer F

My questions are:
1. How Can I make the client on all the computers to generate the server application at computer F?
2. How can I share the server, if allready created , among the different clients (Clients will share the same server at computer F, instead having a server created for each client )

Thanks
Daniel

Client Server Application Using VB And SQL Server..
Hiii,
I have to develop a client server application using VB and SQL Server,I would use ADO.I have to make an online admission system where around 10 students can be given admission at a time for some specific college and course, after checking that whether seat is availabe in that college for that course or not.10 clients will access database(they can request to add,update,delete data) placed on a server.The whole database will be placed on server only.What are the major points I have to take care of for creating this application.Plz tell me that which cursor and lock type I'll have to use for:
1. Add record (by one or many users at different or at the same time)
2. Update same or different record(by one or many users at different or at the same time)
3. Delete record under same situation.
If A,B,C,D are users.Can the record can be viewed by any no. of users(clients) without any problem?But how to restrict other users(B,C,D) to update/add/delete a specific record if that record is being used by a user(A)?And processing should be fast without getting an error/corruption of database/data duplicacy/data redundany. what about transaction handling?
I have worked only on desktop application using VB and SQL Server..At what points this client server application will be different from desktop application??
Please help me in this regard..Its urgent for me.


thanx
mamta

?'s About Winsock Client/server Application *Not Resolved*
ok this is the first time that i have ever used winsock in any application that i've written so any help would be greatly appreciated. here is my question:

1) i have a server app that all the clients will connect to for database operations and logons, (the server app is also going to be automated to do DB operations, not that anyone needed to know, but hey whatever), this has a winsock control.

2) now for the clients. when the app loads a login form pops up for the user to login. there is a winsock control on this form. when the form load it attempts to connect to the server. if connected when the user clicks the login it will send the user name and password to the server and the server will send back authentication to allow logging in.

3) here is were my many problem is. upon authentication the login form unloads and the mdi form is loaded which has a winsock control on it as well. HERE IS MY MAIN QUESTION: is there a way to lets say set the mdi form winsock control to the login winsock control or still have the mdi form winsock control know that it is still connected to the server so that i don't have to make it connect again.

here is my theory please let me know if it would work.



VB Code:
set mdiSocket = logSocket



Please any help or suggestions would be great

Timeout Problems With VB/ASP/SQL Client Server Application
We have an Intranet program with an ASP user interface that uses VB DLL's/RDO to connect to a SQL database. We are using ADO in the ASP's to connect to the SQL database for queries.

The problem that we are having is we are getting "Timeouts" when the SQL database is being accessed from the web pages.

We have increased the Timeout settings for IE, ADO, RDO and IIS, but we still need to improve the performance of the program.

We have researched the problem on MSDN and done some re-configuring in SQL, but have not been able to resolve this issue.

Any and all suggestions are welcome.

Thanks,

Chris

FYI...we're running IE 4, SQL 6.5, Visual Interdev 6.0, VB 6 and IIS 4.0.

[This message has been edited by ChrisJackson (edited 12-09-1999).]

Timeout Problems With VB/ASP/SQL Client Server Application
We have an Intranet program with an ASP user interface that uses VB DLL's/RDO to connect to a SQL database. We are using ADO in the ASP's to connect to the SQL database for queries.

The problem that we are having is we are getting "Timeouts" when the SQL database is being accessed from the web pages.

We have increased the Timeout settings for IE, ADO, RDO and IIS, but we still need to improve the performance of the program.

We have researched the problem on MSDN and done some re-configuring in SQL, but have not been able to resolve this issue.

Any and all suggestions are welcome.

Thanks,

Chris

FYI...we're running IE 4, SQL 6.5, Visual Interdev 6.0, VB 6 and IIS 4.0.

[This message has been edited by ChrisJackson (edited 12-09-1999).]

Trigger Javascript From VB Client Server Application
Is it possible to trigger java script from a VB stand alone application ?
Please provide further information about the feasibility of it.

Saving Problem In Client/Server Application
Hi,
I have developed an order management system and its a client/server
application with SQL Server.. now the problem is, when I save a record from
both cleint and server pc at a time, it saves the record but assigns same
ID.. I don't know how to lock a particular record which can only be accessed
by one pc at a time and other pc can only view it..
plz help me..

here is the connection string I'm using.. correct me if I'm wrong..

Public CN As New ADODB.Connection

If CN.State = 1 Then
CN.Close
End If

CN.CursorLocation = adUseClient
CN.ConnectionString = "Provider=SQLOLEDB.1;Integrated
Security=SSPI;Persist Security Info=False;Initial Catalog=Baris;Data
Source=NETSRV"
'CN.ConnectionString = "Provider=SQLOLEDB.1;Integrated
Security=SSPI;Persist Security Info=False;User ID=Administrator;Initial
Catalog=Baris;Data Source=NETSRV"

CN.Open



plz help me with this problem.. thanx

Web Client And Server Application Event Notification
I'm working on a project that requires a Web GUI connected to a server
backend application. When a user clicks a button on the GUI the Web
client sends a message to the server application which updates a
database and notifies all Web clients on the LAN that the button has
been pressed. This is the simpliest form of the system which I would
then develop into a complete application. I plan on developing the Web
GUI as an ActiveX Document and the server application as a stand alone
VB application.

1. How does the Web client notify the server that a button has been
pressed?
2. How does the server notify all the other Web clients on the LAN?
3. I've been reading about Microsoft Messaging Queue (MSMQ). Is that a
good way of sending messages between the client and server or is there
a better way?

Any Websites, books, source codes, or example applications would be
very helpful. Thanks.

- Wole

Vb Application With Client Server Data Access
Hai all,

I created one vb application in my PC with access database as backend.
If it is to be work on Local Area Network (client/server setup that is database
available only on server) what shall i do?

Now i am using DSN LESS connection.
To acheive LAN set up which one is suitable DSN or DSNLESS.

I saw one software in which they provide only the IP of Server while configuring the client,
but client machine automatically idetifies the database of the server using that IP.
How can we do this?

If Database is changed as ORACLE or SQL server what is to be done for the above?

Can anyone help me on this?

Thanks in advance,
Louis

Client/Server Application&&database Distribution
Hello,
I have developed a client/server application that uses an Access database as a backend. I will install it soon at the customerīs site, but I have some questions:
At my developing computer, Iīm using App.Path & "DBName.mdb" for opening the connection to the database (Iīm using ADO). This of course works fine as the database is in the same computer, and will also work fine for installing the application at the customerīs server.
But how do I install at the client machines? Do I have to prepare a second installation package where Iīd have to hard code the serverīs path and recompile? This second package wonīt of course contain the database as it will be already stored at the server. (Iīm using the P&D wizard).
I donīt know the target db path at the moment, I will know it when I do the installation and I donīt want to be recompiling at the customerīs site!
Is there any other professional but easy way to tell the client application where the DB is stored without having to alter the program?
Thanks in advance.

Client-server Application (connection Problem)
hello..

this is the first time i'm developing client-server application

now i'm testing the application with my server
the connection made with SQL Server using this

"Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=dbDesa;Data Source=MSSYA"

i need to deploy the complete application to another server
so i assumed, the connection string above can't be used
how to solve this problem

Idea For Client-server Application - Help Needed
Hi Gurus..

I have dll on server and I need to connect it and call sub and functions in the dll (yes, I need to get returned values) from client. Both VB and I know the server IP. Any suggestion?

Copyright Đ 2005-08 www.BigResource.com, All rights reserved