How Does Stack Overflow Chat Work
Dec 10, 2011
I have created quite a few web chats using VB.NET and ASP.NET and I'm just wondering how Stack Overflow handles messages being sent back to clients. Because web can only make requests and get responses back once, how does Stack Overflow handle messages? In my implementation I have a recursive loop that gets called every 1 second and makes an Ajax request to the server to get the latest messages, but I am thinking of using web services
View 2 Replies
ADVERTISEMENT
Mar 10, 2010
What I want to know is that in VB.net is it possible to get a stack overflow, and if so how is it caused. What I mean is, what sort of written code would cause a stack to overflow.
View 2 Replies
Oct 31, 2010
this exception gets raised on a standard dim command???
Public Sub Life(ByVal AnyEvent As Object) Dim myNewLife As New Life Dim Happiness As New Collection Happiness.Add(AnyEvent) myNewLife.Experience(Happiness) End Sub
[code].....
View 2 Replies
Oct 27, 2009
I'm writing this program in Visual Basic .NET to organize different fields of data, and I'm using profile slots through application settings to store the data for users. But, I ran into a stack overflow error in my SlotSelect.vb class. My best plausible guess for why this happens is that I'm using the wrong kind of variable container in the below sauce code, but my dilemma is that I don't know what specifically is going wrong.The code that the vshost is saying is the cause for the overflow was written from some code that I looked up on MSDN and other places for referring to objects in other classes, and I tried using other variants of it to see if it was any different. So far, nothing has worked, and it doesn't stop the error while compiling, much less in the code markup--it only catches it when it starts the application in debug after it finishes building
View 7 Replies
Feb 12, 2012
could you tell me, why I get the stack overflow error on this code?
Dim ev As Double = datum.Year * 365 * 24 * 60 * 60
Dim honap As Double = datum.Month * 30 * 24 * 60 * 60
Dim nap As Double = datum.Day * 24 * 60 * 60
Dim masodpercek As Double = ev + honap + nap
The double datatype should be enough.
View 5 Replies
Jan 28, 2009
This nice table is getting the error:
An unhandled exception of type 'System.StackOverflowException' occurred in System.Data.dll
Dim reader As SqlDataReader
Dim cn As New SqlConnection(connectionstringvariable)
[code]......
View 2 Replies
Jan 19, 2009
This is probably a stupid question but is there anyway to prevent a stack overflow error from occurring in your VB.Net app?
View 3 Replies
Feb 4, 2009
I have a program that sends out mass emails. My problem is that at the end of the program....I keep getting a "Stack Overflow" error and I cannot figure out where this might be happening. This program is a VB.Net 2005 console application which is ran manually from the command line. The code below that I have posted is what sends the actual email. I don't think it has anything to do with this error but my question is this. Do I need the highlighted line of code? I'm thinking I don't since the mail object is already being disposed...but I'm not positive.
Dim oEmail As New System.Net.Mail.MailMessage()
oEmail.From = New MailAddress(strSender)
oEmail.To.Add(strRecipient)
oEmail.Subject = strSubject
[code]...
View 4 Replies
Jan 12, 2011
Now I see that VB tells me that label arrays are no longer supported But I also see that VB2010 is providing the relevant logic to update each of the label array fields I was until today using VB2008, because after running this application it crashes with a report of stack overflow, I assume it is related to the label arrays, but have no idea. So I have upgraded to VB2010.
In VB2010, I note that the immediate window is reporting A first chance exception of type 'System.InvalidCastException' occurred in Microsoft.VisualBasic.dll Now I have used label arrays for showing columns of like data, generated by a for loop. What should I be using it its place, maybe a grid..
View 2 Replies
Oct 22, 2009
This is driving me crazy. have been looking at it for several hours now. So I have an xml file which is transformed via xslt into output for a web site. first I use an asp.net statement to pull in the xml
<asp:Xml ID="Xml1" runat="server" DocumentSource="~/xml/Ax.xml"
TransformSource="~/xml/XSLTFile.xslt"></asp:Xml>
then I use xslt to transform
<xsl:template match ="Ax">
<table class="outputTable" >
<tr>
[code]....
I can't prevent the table from expanding beyond the normal row height to stack text in a cell. It wraps text if strings are too long. I have tried everything and nothing is working. I have tried using overflow:hidden + height; i have tried text overflow ellipsis?
View 1 Replies
Mar 14, 2010
From all the chat applications I successfully made each and every one of them required me to port forward my router so that the data can be received. Now my question is how can I make my chat program work on computers that have routers with most of the ports blocked, how do traditional chat programs do it? Perhaps The chat program intercepts packets then sends it to a known port such as 80?
View 17 Replies
Aug 20, 2011
So, 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]....
View 7 Replies
Mar 25, 2011
i have made a client and server chat system in VB 2008 with winsock,it's a one to one chat and works perfect fine, but do anyone know how to turn it into a multi-client chat system? Code in below: Here is the code for the server:
[Code]...
View 3 Replies
Dec 23, 2009
I was wondering, in a toolstrip there is an overflow option
View 3 Replies
Oct 13, 2009
In your actual programming experience, how did this knowledge of STACK and HEAP actually rescue you in real life? Any story from the trenches? Or is this concept good for filling up programming books and good for theory?
View 6 Replies
Apr 21, 2011
I need to write a VB.NET code to reverse the given characters using a stack.Input: 'S','T','A','C','K' So far I have input the letters, but I don't know how to get the console to reverse it. I'm a beginner to programming so please excuse my ignorance.
Module Module1
Sub Main()
Dim StackObject As New Stack
[code].....
View 4 Replies
Apr 19, 2012
I've never seen this error before; and apparently (According to DIC) the number would have be bigger than -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807, to this this exception (I'm using an Integer, but I've tried Int64, and the same thing happens).
This is where the exception is being thrown:
Dim localPort As Integer = (tcpRow__1.localPort1 << 8) + (tcpRow__1.localPort2) + (tcpRow__1.localPort3 << 24) + (tcpRow__1.localPort4 << 16)
Full Code (Method)
[CODE]...
I highly doubt that that the integer that is being parsed back is greater than, either of those numbers listed above. I've tried using Int64, and even removing the << operator, but it's still throwing this exception.
View 1 Replies
Aug 27, 2011
I get an 'overflow exception was unhandled' error in the following code.
It is a function to combine 2 bytes into a 16 bit integer.
Private Function MakeInt16(HiVal As Byte, LoVal As Byte) As Short
Dim h As UInt32 = HiVal * CUInt(256) + LoVal
Return CShort(h)
End Function
View 4 Replies
Mar 19, 2012
I need to make some big multiplications for cryptographic reasons in vb.net and overflow the variable as C,C++ and C# does. I have disabled the check of overflow at the vb.net project but when i an doing those multiplications i get as a result 1.#INF
ex. in c:
z^y= 0xFFFFFFFF ^ 0x000003FC= 0xFFFFFC03
in vb.net:
z^y= 0xFFFFFFFF ^ 0x000003FC= 1.#INF
View 1 Replies
Mar 10, 2012
I am getting an overflow somewhere while populating my database.The number of records inserted is different every time I get the error and I have been unable to trace where it is coming from.
View 7 Replies
Jun 20, 2009
I am making a program that reads files (exe and dll) and compares them byte for byte and then save the diffrences.when i read the file it crashes. when the binary reader reaches position 3 (RAW offset 0x03) it crashes with the sentence: Arithmic operation resulted in an overflow. I tried different files and its always at position 3.[code]
View 5 Replies
Jan 17, 2012
I need to overflow text of a cell that has too much data. I can't easily split it up into multiple cells so I guess the only choice now is to overflow it, but I just cant seem to find a way to do it.[code]...
View 1 Replies
Apr 26, 2011
We have a VB application, which will get input from the user, post it to HTTP url and get the result from it, assigns it to objects and displays it to user.
In this flow, users are getting Run-Time error 6(Overflow). But this is not happening all the time. Iam not able to reproduce also?Would there be any other reason for this, apart from normal reasons like assinging a higher value to lower datatypes.
View 2 Replies
Dec 24, 2011
I'm trying to make a grade calculator that can determine the minimum grade you need to acheive a desired grade. I'm new to visual basic, and I'm trying to figure out why I keep getting the run-time error '6' message. I tried declaring the variables as variants instead of doubles to fix the problem, but it didn't seem to work. When I click "debug" the red statement is highlighted.!
Private Sub CommandButton1_Click()
'***************Declare all variables**************************
Dim ClassSubject As String
[code]....
View 1 Replies
Apr 6, 2009
I received this error when im trying to save the date in my database.
SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. Description: An unhandled exception occurred during the execution of the current web request.[code]...
View 5 Replies
Jul 9, 2010
i finished a project ive been working on for weeks or well i thought i had finished it.. in VS debug environment it runs fine doing its logics for hours without a problem but after publishing it as a standalone it starts throwing errors pretty soon. Took another look at whats going on in VS debug and the only thing that stands out is "A first chance exception of type 'System.OverflowException' occured.." that pops up every now and then so i think this is whats crashing my program outside vs. This poses 2 problems a) the code is around 2k lines/3 classes and heavily multithreaded and i have no clue where exactly this error gets generated, b) from my previous encounters with first chance exceptions they seem like more "possibility for error" instead of an actual error itself and very hard to track down
View 1 Replies
Apr 15, 2009
I've started using .Net's stack collection. The basic features I guess are the "pop" and "push", where you add or take off the top element of the stack (if you are referencing other elements in the stack then another collection type is probably better).[URL]..it appears that the Stack collection (like other collections) is basically an array with some window dressing (so you actually can see other elements). As far as I can tell, "popping" and "pushing" is changing the first element of the array. Shouldn't instead the final element be the "top" of the stack and be the one that is changed? Otherwise the program has to reindex all the other elements in the array every time a pop or push is made. This seems very inefficient. But this is what Microsoft's description appears to be saying what is happening.
View 10 Replies
Jun 22, 2009
My problem is that i need log the stack call. I know that i can put a breakpoint in code and choose the debug menu option "call stack", But that is not a solution for me, because i need all the methods called by the application, not only the last until the breakpoint.
View 3 Replies
Apr 14, 2009
I just started programming in VB.NET 2008 with the Express edition and have been having a blast so far. I thought a fun program to try and make would be an infix to postfix program.
I have five text boxes off to the side of my program that shows what is on the stack as you iterate through the equation. I'm wondering if it's possible to make these textboxes set to display what is at a certain index of a stack.
For example, if I pushed a "(" onto the stack, I would like the top box of my textboxes to update and show a "(". When something else is pushed onto the stack, say a "/", I would like the "(" to be displayed in the second box down, and the "/" to be displayed in the top box now.
View 1 Replies
May 11, 2010
I did alot of work then I suddenly get this error message
View 2 Replies