Maximum Number Of Clients That Can Connect Simultaneousy?
Mar 9, 2012
I developed a client-server application using soket technology. At this moment the number of clients that connect at the same time is 40. Question: What is the maximum number of clients that can connect simultaneousl
View 2 Replies
ADVERTISEMENT
Feb 18, 2011
i am trying to redistribute my app that uses Oracle 11g:
Imports Oracle.DataAccess.Client
The problem i am having is that it will not run on a machine that doesnt seem to have the correct drivers that its looking for. When i install ODAC 11.2 Release 3 (11.2.0.2.1) with Oracle Developer Tools for Visual Studio on the test VM it works just fine but thats a 230+mb file to download and install! Not to mention that if the user already has Oracle 10/11g on their machine that it may mess up their current connections/etc by installing that setup file.Is there another setup package that i can install that only has the Oracle Data Provider for .NET 2.0 11.2.0.2.0 or whatever its needing from that ODAC 11.2 Release 3 file.
View 1 Replies
Apr 28, 2012
Connection succesfuly made (TCPClients) Writing/Reading with NetworkStream At an interval of 16 ms. Client sends 4 bytes -> Server receives 0 bytes ??? Server Sends 4 bytes -> client receives 0 bytes ???
[Code]...
View 11 Replies
Apr 4, 2011
how can i get the maximum number in visual basic
View 4 Replies
Jan 23, 2006
I'm using VS 2005, after VB6 to VB.NET conversion we have fixed all the errors but still have unidentified number of warnings. Is there any way to increase this limit of 101 warning you can see after compiling? I want to actually see the total number of warnings to get an idea how much work is there.
View 15 Replies
Feb 9, 2011
Im trying to complete code for a program I am running regarding the Collatz Conjecture. Im using Visual Basics 2010.This is the code I have thus far :
Dim a, count As Integer
a = TextBox1.Text
count = 0
ListBox1.Items.Clear()
[code]....
This code allows me to type in a number and see the length of the hailstone sequence and the hailstone sequence itself. What im not quite sure on how to do is this following: I would like to add the maximum sequence number reached in my program, but I am unsure on what to do.
View 1 Replies
Jan 13, 2009
how many variables and controls (i.e. text box, listview, buttons, etc) can a VB program has without slowing down its performance?
View 2 Replies
Jan 18, 2011
I am moving from VB 6 to VB.net. Are there any practical or hard limits on the number of controls per form? If so, what are the limits?
Are control arrays still supported in VB.net?
View 3 Replies
May 14, 2011
My issue is that some websites only allow say 15 characters maximum to be used to create a user name where other sites do not. Currently I have one text box on the screen and a button, and a web browser that navigates to two sites.Site #1 has a cap of 15 characters max to create a user nameSite #2 doesn't have any maximum amount of characters to use.I am wanting to know how I can enter lets say a 20 character username into the text box and have the code set a max of 15 characters for site one and nothing for site 2. I was thinking that this could be done when passing the information from the text box to the text box on the screen with something like
Textbox1.Text.value.length= maximum 15
Site #2:
Textbox1.Text
[code].....
View 3 Replies
Aug 13, 2009
What is the maximum number of executions in a while loop in VB.net that it will allow? Meaning, it is checking for a variable to equal some value, but that value never comes? How many times will it execute the code before it quits? Is there some way to set the maximum number of executions without terminating it programmatically?
View 5 Replies
Nov 14, 2011
I'm trying to figure out a good way of implementing a List(Of) that holds a maximum number of records.
I have a List(Of Int32) - it's being populated every 2 seconds with a new Int32 item.
I want to store only the most current 2000 items.How can I make the list hold a maximum of 2000 items, then when the 2001'th item is attempted to be added, the List drops the 2000'th item (resulting in the current total being 1999).
Thing is, I need to make sure I'm dropping only the oldest item and adding a new item into the List.
View 6 Replies
Oct 27, 2010
one of our programmers is having an issue with a asp.net app. i had him rebuild and recompile the app to the network share on the staging server and received the same. i even deleted the files in this folder(C:WINDOWSMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET Files). to make sure that the server was not the issue i installed it on another server and received the same error.i found a article on msdn that states that its a source code issue.
Compiler Error Message: BC30041: Maximum number of errors has been exceeded.
Source Error:
[No relevant source lines]
Source File: vbc : Line: 0
View 6 Replies
May 5, 2011
I have been looking all around Bing and Google trying to find this, does anyone have an answer? How many line continuations will the compiler tolerate in VB.NET 2010 (.NET 4)?
View 2 Replies
Apr 21, 2010
i am trying to put a maximum row number of lines in a multiline textbox. What i want is to achieve something like a console, with a maximum number of rows, with the top rows to dissappear and to keep always the last i.e. 500 rows. a note: for the textbox text i use the following algorithm
dim text
textbox.text = textbox.text & vbcrlf & text
the problem is that after a certain number of rows the program starts to get a little slow. So i guess if i put a limit to the rows i will fix this.
View 3 Replies
Apr 5, 2011
1) Is it possible to set the maximum number of characters that a string can hold?
Just like the following example from VB6:
Dim my_var As String * 10
2) I noticed that Option Base 1 does not exist. I created a table my_table(2) and tried to msgbox the following[code]...
View 8 Replies
Sep 2, 2010
Im wanting to use a textbox for the entry of Decimal figures (currency). Is there any way I can have it so if a user does not put a decimal figure (ie 15 instead of 15.00) it will put it on.
I tried a masked textbox, but that means i have to set the maximum number of digits before the decimal too which is no good.
View 4 Replies
Jun 26, 2009
I have this app to copy files with a progressbar... What I'm trying to do is to set the progressbar1.maximum to the number of files in the folder. But I'm getting a cross-thread error. This is the error I'm getting: Cross-thread operation not valid: Control 'ProgressBar1' accessed from another thread than the thread it was created on. This is where I'm trying to set the ProgressBar1.Maximum: [code]
View 5 Replies
Feb 7, 2011
how can i code a simple program to generate the maximum number i enter/type within 3 or more numbers using math.max. for example, if i enter 25, 60, 45 how can i use math.max to calculate the largest value out of the 3 numbers?
View 4 Replies
May 13, 2009
I recently upgraded a project from 2003 to 2005, and there were errors in them, but I am unable to view any in the error list. Only one error displays in the list
[Code]...
View 2 Replies
Jul 26, 2010
I created application database by vb.net and sql server 2005 now I have some computer on the one of them I installed sqlserver 2005 and other (Clients) computers I installed Application how I can connecting my application to sql server on the pc1 or how I can using connection string.
View 2 Replies
May 17, 2010
XML is used as one of our main integration points. it comes over by many clients at a time but too many clients importing at the same time can slow down our database to a crawl. Someone has to have solved a problem like this. I am basically using VB to parse through the data and import what i want and don't want.
View 2 Replies
Apr 30, 2012
i was just wondering what other options we have. MDI seems to be main feature most clients have.Would you use one if building an irc client? I started off with out one. Half way threw decided to start using one.
View 2 Replies
Jun 9, 2011
How to make clients on sql server i mean when i will install my application on clients how i will connect it with sql server?
View 3 Replies
Feb 4, 2011
I'm developing an application, which will have a common db in a server (SQLServer db) and the client PCs will have my program installed - in a LAN.
So, my question is, when the users in the client PC wants to pass some messages (for eg: one of the user got a message from his boss that all of them are requested to meet him). That is, I want to implement a communication system through my app. It will be a common message system. That is, just like a shoutbox.
So, do I have to use a TCP based communication system or just use a timer to check the db for any new messages and display them ?
View 2 Replies
Jul 1, 2011
How can I retrieve the clients IP address that in use of my application? Is there's a code that retrieves a value from clients computer running application?
View 4 Replies
Mar 8, 2011
i want to designe a simple program that have one server and multiple clients.i program with vb.net,but dont know anything about winsock, can you send me a sample code for start.
View 1 Replies
Dec 2, 2009
(Using vb 2008 express.)
I am trying to create a server to send clients text on request. I am using a tcp listener to accept clients then send each client to a thread in a threadpool which deals with each client's request then closes the client connection. It seems to work fine but I would like to know how it works. Using the listen loop below I cant help feeling I should be sending some values to the threaded sub. How does it know which client each thread is dealing with?
Sub ListenLoop()
Looop:
Client = Server.AcceptTcpClient
[Code].....
View 1 Replies
Aug 27, 2010
with XP and Outlook it works perfect, with Vista it does not.
Any chance to get it running on all clients? The source is very simple.
Trying to send some Input data using mailto.
Always works, but on some clients everything is in the subjet and not in the body! Other clients seem to be ok.[code....]
View 3 Replies
Oct 4, 2009
I am programming a chat like application using Tcp. Now I have a probem. I am going to have loads and loads of data being transferred so I will have to use 4 seperate ports.[code...]
My problem is for me to use a maximum of 4 ports all together transferring data from the client(s) to the server(s) I will need 4 clients and 4 servers. I need to open 4 instances of 4 clients. I was going to put a client in a form and then when the client is running it creates 4 instances of that form but than there would be too much confusion going on. I think there my be a way to use Classes instead of forms.
[code...]
View 6 Replies
Oct 7, 2011
I am trying to make a host so that as clients connect they will appear in a list box. I can get multiple connections going, but the list box remains empty.
[code]...
View 7 Replies