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


ADVERTISEMENT

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

Pure Text Files / Handle Special (german) Characters In .net Vs VB6 Old Files?

Jul 17, 2009

i have an old VB6 system that generates plain text files. When this old system writes "A" into the file, it writes (hex) "41". For an "ä" (a-umlaut, special gernam character), it writes (hex) "E4".

Now i have to process files like this in VB.Net. when i open such a file in the IDE, it displays correctly "ä" (But not always!). To see what i mean, please open a notepad and create a new file "ae.txt" with content: äöü. Now your file contains exactly 3 bytes: (hex) E4 F6 FC.

But when i write code like
Dim strTest As String
strTest = File.ReadAllText("ae.txt")
Debug.Print(InStr(strTest, "ä"))

i get 0 - so i cannot find back the "ä" - what do i need to do, to find it? And 2) for compatibility reasons, i have also to be able to create such files. How to do that? Seems the different encoding types do not work as i think.

View 2 Replies

Asp.net - Getting .NET To Handle CSS Files?

Jul 25, 2011

Possible Duplicate: Can .NET intercept and change css files?

I have configured IIS6 to get .NET to handle css files.I did the following steps

Launch IIS Manager Right-click on Default Web Site Click on the Home Directory tab Under Application Settings click on Configuration.Add a new association for .css and map it to .NET executable:

C:WINDOWSMicrosoft.NETFrameworkv2.0.50727aspnet_isapi.dll

How can I check if this is working, i.e. I want to change the default style of a page depending on the url, i.e. if the referer url is http://intranet, it should continue to use the old existing style style1.css, if the referer url is http://intranetv2, it should use the new style style2.css.

View 2 Replies

How To Handle Associated Files

Feb 25, 2009

how to make VB handle my associated files.I made a program that opens fine when from the EXE file. But however, when I try to open it from the associated file, it behaves the same way as if opened from the EXE.So, where (in what method?) do I tell VB how to handle those files?

View 8 Replies

Handle The Errors Inside .dll Files When Creating Them In .Net?

Jan 9, 2012

I know this idea of - if message boxes are used to display error messages inside a .dll and when the .dll is installed in a different computer (possibly a server machine), errors occurring inside that .dll will be shown in the server and not to the user. Since practically there will not be a person near the server to click 'OK' to the error message every time it occurs it will stuck the programs using the .dll.

So how to write exception handling to a .dll project?

View 1 Replies

Handle Unauthorized Access Exception When Getting Files?

Jan 17, 2011

I am trying to get a list of files using this line of Dim files() As String = IO.Directory.GetFiles("D:", "*.*", SearchOption.AllDirectories)But it errors out on folders that are inaccessible, like the RecycleBin folder & the program stops. So how do I get a list of files in all folders, while skipping the inaccessible one

View 1 Replies

VB - Large Binary Files - Call C DLLs & Pass The HANDLE

Jan 27, 2011

I have some functions written in C that read & write large binary files (> 4 GB) using routines CreateFile, ReadFile, WriteFile & SetFilePointer, that use the HANDLE data type to access the file. Some others who are more familiar with Visual Basic would would like to be able to call my C routines to work with such large binary files. We particularly need SetFilePointer to jump around with the files.

[Code]...

View 2 Replies

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 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 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

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

VS 2008 Handle Word And Excel Files With Edition Or The Professional Edition Is Required?

Mar 16, 2010

Since I am new to VB .NET , I would like to ask some general questions about it . Here we go :

[Code]...

View 29 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 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 Make A Code That Unzips Files And Then Move Those Files Into Another Zip File?

Feb 23, 2012

How do i make a code that unzips files and then move those files into another zip file?

View 2 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







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