VS 2010 Way To Handle Numbers?

Dec 26, 2011

Only now, I'm facing this kind of problem, i have a application that until now worked with two different cultures ENG and PT, i always knew this, and i manage to solve all problems related to parsing the numbers, but now i have to change the code, and "protect" the code to handle with others cultures. So i need tips/best way to handle different cultures, and different database culture settings.I think that i shouldn't limit the user, by setting the decimal, the grouping digit, the date time format, etc. . The application should accept the numbers in the user current culture. But this path forces me to putting everywhere the parse/tryparse method.

View 1 Replies


ADVERTISEMENT

VS 2010 - Too Much For The UI Thread To Handle

Jan 22, 2011

I've got a form that acts as a progress report for a long running operation, it has a listview on it (which I might be replacing with a DGV soon) that gets updated with progress updates from a background thread that is doing all the work. The method running on the background thread raises events that the form then handles and adds the string passed in to this event to the listview. The method running on the background thread raises progress update events several times a second and for each of these updates the event handler on the form must invoke a method on the UI thread to actually add the item to the listview.

This works fine on my test PC (which has a quad core CPU and 8 GB of RAM) but others have reported that after a while the form goes to the Not Responding state so I'm assuming all of these updates on the UI thread are being requested too often for it to be able to process them all as well as user input.So I'm looking for a better solution and have come up with the following:When the background thread raises these progress updated events, instead of them being added to the listview instantly I add them to a Queue(Of String). Then every second the form would check this queue and remove any items currently in it and add them to the listview - using a Queue(Of T) instead of a List(Of T) should guarantee they come out in the correct order. Both of these operations (adding to the queue and reading/removing from it) would be done under a SyncLock block that would lock on the same object to avoid both threads trying to work with the queue at the same time, so there would still be some contention but I'm hoping it would mean the UI thread only gets busy once a second instead of potentially roughly 30 times a second as it is doing now.Does that sound like a good plan? Can anyone think of a better way of handling this?

View 18 Replies

VS 2010 : How To Handle .zip Files

May 2, 2011

I have been working on a program and I need it to unzip a zip file. I tried handling a zip file as a directory but that didn't work.It wouldn't hurt if I could compress files into a zip file to! But I need unzipping the file first.This is my code handling it as a directory:

Dim count As Integer = Directory.GetFiles(My.Application.Info.DirectoryPath & "Games" & game & "�00.zip").Length
MessageBox.Show(count)

It has an error saying it is not a valid directory name.

View 4 Replies

VS 2010 Get Handle Of Variable?

Aug 28, 2010

I need to get the handle of a variable. How do I do this?

DEVICE_PARAMETERS = New PresentParameters
ZeroMemory(>>Handle of DEVICE_PARAMETERS<<, Marshal.SizeOf(DEVICE_PARAMETERS))
-Ren�

View 4 Replies

VS 2010 - Get Value Of Handle Without Knowing Type?

Dec 23, 2010

I am working on a new version of my clipboard manager. I was wondering if there would be a way to copy the value of a given handle without knowing its type? The current methods I know require one person to know the type of the handle (as an example by using Marshal.PtrToStructure).

View 1 Replies

VS 2010 Difference In How .NET And VBS Handle COM Objects

Sep 24, 2010

I am trying to use a free 3rd-party DLL (SmartWIM.DLL - Smartdeploy Imaging Component) which is, essentially, a COM wrapper for the WIMGAPI DLL for creating images of Windows drives.You have to register the dll with REgSVr32 of course Now, included with the installation package is a VBS that does a CreateObject for the SmartWIM object. When I use the VBS I can successfully create an image with the CaptureImage method.However, when I convert the same code to VB.NET and called exactly the same method, the CaptureImage method "hangs".By that I mean it successfully creates an image file but then doesn't do anything else. I am at loss to understand why it would work when run via a VBS and not work in a VB.NET Console application?

View 2 Replies

VS 2010 Handle Event From Different Forms?

May 30, 2012

I have an event in a module, like this:

vb.net
Module Module1 Public Event Event1(Value as Boolean)End Module

I want to be able to handle this event from different forms. This is what I tried to do...

vb.net
Public Class Form1 Private Sub Event1Handler(Value As Boolean) Handles WindowsApplication1.Event1 End SubEnd Class

But I get a squiggly line under WindowsApplication1 that says Handles clause requires a WithEvents variable defined in the containing type or one of its base types. I tried to swap Module1 in, but same thing. I tried without anything in front of Event1, but still nothing.

View 11 Replies

VS 2010 Handle Event To All TextBoxes?

Jun 5, 2012

I'm needing to make something to ALWAYS replace a "." to "," in all textboxes...

That's what I'm doing, and it's working:

Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
For Each myControl As Control In Me.Controls

[Code]....

View 7 Replies

VS 2010 How To Handle A Bad Value From Linked Excelsheet

Dec 15, 2010

Im using an excel sheet as a datasource to retrieve som values that I use to draw a modified voltmeter.

However the excel sheet is DDE-linked to another application (3rd party) that updates it on a realtime basis. Every once in a while, that means my app gets a value it cant handle, or it cant access the specific cell because its being written to.

This causes my picturebox (voltmeter) to draw an error image. Now I would have thought that once it�s supposed to redo the whole operation (datafetching and drawing) that would get rid of the error image (it�s on a timer). It doesnt.So how do I solve this? If I close the form and reopen it, that takes care of the problem, but I dont want to do that.

View 3 Replies

VS 2010 WebBrowser Handle New Window?

Jan 27, 2011

WebBrowser Handle new window: How I can open it in a new window

View 7 Replies

IDE :: Vb 2010 Express HWnd Window Handle?

Dec 31, 2010

I have inserted the following code depicting a procedure that can place the cursor at a particular location within a Rich textbox. However, I am unable to get the Hwnd handle to run without an error.

Would someone advise if the SendMessage arguments are correct and how do I access the RichTexBox Hwnd window handle for this procedure.

[Code]...

View 4 Replies

VS 2010 - Get The Handle Of The Java Applet And Set It To An X And Y Co-ord On Form

Jan 29, 2011

Ok i'm loading a webpage in the WebBrowser Control, but what i need to do is manipulate that webpage. Here is the webpage (you will probably need to take a look so you know what i'm talking about). [URL] Now i'm trying to remove the advert at the top of the webpage OR somehow get the handle of the Java applet and set it to an x and y co-ord on my form.

View 2 Replies

VS 2010 - Screenshot Of Specific Window By Handle

Jan 30, 2011

I want to make a screenshot of a specific window of which I know the handle. I know there is a BitBlt function but I can't get that to work with the handle, I prefer it to work even if the window is not active but I'm not sure if this is possible at all.

View 1 Replies

VS 2010 : Handle Very Huge Text/log Files?

May 4, 2011

I have a very huge server log files like files are more than 500 to 600 mb and even some files are over 2 gb data. the files are maintained for few years. it will be maintained as is. each log file has at least 1 million lines to 20 million lines.I am looking create an application which can find a line in the text file using regex, removing duplicate entries.how these huge file can be handled in a way it works very quickly.

View 5 Replies

VS 2010 Capturing A Window By Handle With Aero?

Feb 25, 2012

I have been working on an image capturing tool for a long time now & I was wondering how some of those programs are able to make an aero capture of a form.I know you can capture a window if you have it's handle by using the BitBlt, but that doesn't keep the transparancy of the aero form.Let me give you an example:I did a lot of research on google but I never found anything close to something that explains how to do it.

View 4 Replies

VS 2010 Form Unable To Handle Other Events?

Apr 7, 2011

I'm trying to use a asynchronous UDP-Port to recieve data on a form.I manage to receive one message at a time(for each click of btnReadData), however if I do this receive in a loop (in order to continously receive new messages), my form seems to be locked.What am I doing wrong?

Public Class FPR2DIS
Delegate Sub dDataReceived(ByVal Data As String)
Dim UDPWorker As New Worker

[code].....

View 3 Replies

VS 2010 Get Process Windows Handle And Title?

Jan 16, 2011

For an app. I'm making I need to find all the windows that belong to a process.
From all of this windows I want to have the handle and title.

View 4 Replies

VS 2010 Handle Multiple COM Ports Using Same AddressOf Sub?

Jan 25, 2011

I've got my serial/com port code working ok using the standard Port.DataReceived handler:

AddHandler Port.DataReceived, AddressOf port_DataReceived I now want to be able to handle multiple COM ports. Do I have to create multiple copies of the handler sub or is there a way the handler sub can tell which COM port it was called for?

View 3 Replies

VS 2010 Handle Null Dates In A Database?

Apr 18, 2011

I am reading dates from a table in a database to display in a DataGridView column that is formatted as a date. The problem is that when the value is null in the database my program errors out because it cant convert the value to a date. How do you guys handle this? *Edit: If I set the value of my date variable to "Nothing" it displays as "1/1/0001" in my DataGridView, and I would like the cell to be empty for the null dates.

View 24 Replies

VS 2010 Handle Receive Data On A Socket?

Sep 3, 2010

I've looked through a lot of snippets online and I see a lot of things similar to

Dim bytes(tcpClient.ReceiveBufferSize) As Byte
networkStream.Read(bytes, 0, CInt(tcpClient.ReceiveBufferSize))

but what I am unsure of when to call such a thing? How do I know when there is data to receive...in visual basic 6 with winsock, there was a specific routine which was called upon data arrival, but I see nothing of the sort for vbNet.

View 2 Replies

VS 2010 VB Can't Seem To Handle Object Or Attachment Dbs Fields?

Feb 15, 2012

I have just loaded an access 10.0 database into my VB project as a dataset.Two of the tables contain an Ole object field and an attachment field (the data in the fields are described by the field types). All of the data contained in either of these field types, when observed in the dataset, show a warning and indicate that it is unable to display that data. As might be expected, when the data is called in a gridview, anything from those fields throws errors.

I would like to know if there are any known issues with these types of fields and VB, and if so what might be done to resolve that.

View 4 Replies

VS 2010 : One Class To Handle Multiple Dynamic User Controls?

Apr 3, 2012

I have multiple user controls (the same one dynamically added to a form 4 times), and one class. I would like all of the user controls raise events in that one class. For example, if any of the user controls are clicked, I want it to send a string to the class to be processed and show a MsgBox "Control name was clicked"I am doing this as an exercise to reduce repeating the same code over and over directly in the control, and to avoid creating the class over and over to accompany each user control.

View 1 Replies

VS 2010 Sum Of Numbers?

Jul 8, 2011

I'm again got stuck in a simple problem, i'm learning it by myself. I didn't able to do it as i've tried many times. I'm making calculator. Please tell me what I'm doing wrong?

VB.Net
Dim total, num As Integer Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1.Text &

[code]....

View 18 Replies

Joystick Handle - Use Only The Handle Of The Component?

Mar 23, 2009

I wrote an application to handle a joystick with directinput. It works fine if it uses the handle of the main window but it doesnt happen the same if the handle is the one of the component that contains the joystick's operation.

I mean:

main form handle: 15

component handle (which is inside the window and the joystick needs the focus of this component to work): 25

It always work if the handle i initilizate the device is the main form (15).How can i use only the handle of the component?

View 1 Replies

VS 2010 - Query For Even And Odd Numbers

Dec 1, 2011

"Select * from Table WHERE ItemNum=2 OR ItemNum=4 OR ItemNum=6"
I use the code above to select ItemNum w/ even number.. but the problem is how about 8 and above? The same with odd number?

View 2 Replies

VS 2010 : Sum Numbers In A Textfile?

Feb 24, 2011

I just got a textfile with a couple of numbers (1 number in one row), how would I sum these numbers? I thought it would be easy, but thing is it's turning out to be not so easy.

View 3 Replies

VS 2010 Add Multiple Numbers?

Nov 28, 2010

I am trying to write a console application that adds and undetermined amount of numbers together and then averages them and does some other calculations with them, but I cannot for the life of me figure out how to add many numbers together. I am doing this in a console application and using input boxes and message boxes to Receive and display the data. So the question is, How do I add many numbers together (an undetermined amount, maybe 5 numbers maybe 25 numbers) and then add them.

View 8 Replies

VS 2010 Calculate All The Numbers?

Apr 28, 2011

In the TextBox1 I have the following numbers:5 4.1 6.23 0 0 7 7.924

Possible to calculate all the numbers in this way?

like replace all the "space" in "+" and get the answer or something?

View 4 Replies

VS 2010 Two Random Numbers

Nov 23, 2010

every time i press the Roll Dice button the turn1roll1, turn1roll2, or turn2roll1, turn2roll2(depending on turn variable) it shows system.random in ASCII Chart i used the label names so no confusion.[code]

View 5 Replies

VS 2010 : First Generate Random Numbers?

Oct 6, 2010

I have code to save records to my mysql database.But first I want to read what is the last number of record and add 1000 on that? What is the proper way to query that first. I want to make the result at unique ID of my clients. Here is my chunks of codes.

Private Sub addClient_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim conn As MySqlConnection
conn = New MySqlConnection
With conn

[code]....

View 10 Replies







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