Does Making COM Files 'embedded Resources' Improve Performance
Jun 25, 2009
If I took a COM object (specifically Excel 2003 workbook) and made it an embedded resource of my executable, would that improve the notoriously slow .NET-COM interop at all?
View 1 Replies
ADVERTISEMENT
Mar 9, 2010
i'm developing vb.net application. There are 10 ways of transactions. I want to produce 'Purchase register report'. For that I want to find what amount of effect has been made by each transaction on ledgers of 'Purchase account'. Purchase account has almost 30 ledgers. And transactions can produce about 10000 rows in database for a year. Now if I produce month wise report for a year, there will be 10000*30=300000 row scanning which makes it very slow in execution.
View 6 Replies
Mar 7, 2009
I'm trying to improve my app with some error catching. I have a module that downloads a file from the Internet to a local folder. At the moment, if the local folder doesn't exist, it just crashes here:
strLocalFile = New FileStream(pPath, FileMode.Create, FileAccess.Write, FileShare.None)
with error:
System.IO.DirectoryNotFoundException was unhandled
Message="Could not find a part of the path 'C:Documents and SettingsSimonDesktop estdownload.zip'."
Source="mscorlib"
How can I do something with that error and stop my app from crashing? Ideally, have a messagebox show saying 'directory not found' or similar.
View 5 Replies
Oct 25, 2010
i have a datatable with about 10000 rows and few columns (4)I have noticed that the process of reading a big table its quite slow..is there a way to improve performance in reading a datatable?
View 15 Replies
May 31, 2012
I have a repeater which takes 270 seconds to render and actually ends up crashing all browsers. The SQL to retrieve the data takes about 10 seconds. I wanted to remove the Eval's to see if that speeds up things a bit, but I am having trouble with the correct syntax. I have doubts that this would actually improve performance as I am dealing with 150,000 records. Would a GridView or other control be faster? Would using LINQ to SQL improve performance? Here is the code for the Eval:
[Code]...
View 1 Replies
Apr 10, 2009
How can I improve the performance of a Windows Forms application?
View 1 Replies
Jul 30, 2010
improve performance of Contact fetching using EWS managed API?
View 1 Replies
Jan 18, 2012
How can I improve the performance of a Windows Forms application?
View 5 Replies
Jul 1, 2010
I'm currently working with a gridview that has a huge underlying dataset.I'm almost certain that I saw something about a new facility in Visual Studio 2010/.NET 4, which would improve the performance (e.g. doesn't download all the data on databind, but rather only what data required for current page). My guess would be that it was using AJAX.I didn't need it at the time I saw it, and now I can't find it, even though I've been hunting online for a while.
View 2 Replies
May 21, 2011
I want to import data from excel and move that to Datatable in VB.NET 2008. I wrote and working but its taking too long time.. for 1500 records its taking 4.40 min.
[Code]...
View 1 Replies
Jun 19, 2010
i have added 3 .png files [done.png, failed.png, busy.png] to my project & changed them to "embedded resource" [from this wht i understand is that they will be integrated within the exe hence eliminating the dependency on the actual location it is stored]
i have 1 picturebox on my form whose image i have to change as per the output of something else
this is wht my code looks like :
If text1.text = "Done" then
picturebox1.image = my.resources.done.png
end if
[Code].....
but it gives me error during run time.. am i using the right code ? or is there an alternate method for this ?
View 3 Replies
Nov 19, 2011
I am wanting to use a vnc installer as an embedded resource, and if the computer running the program does not have vnc installed then typing in a password will install vnc. I have tried everything I can think of and running the process from my computer works, however when ran on a different computer i get the error "File not Found". I am sure I am not calling the embedded resource correctly. I am using Process.Start(" ightvnc.exe /S")
View 24 Replies
Jul 29, 2011
in CodeDom you can add a resource with EmbeddedResources like this:
[code...]
View 2 Replies
Apr 30, 2009
I'm having some trouble trying to inherit a control that uses an embedded resource. The trouble is - this control uses me.GetType() instead of GetType(ControlName). Now when I try to use the derived control, it looks for the resources in the derived control's assembly, instead of the base control assembly, and obviously - doesn't find them.
View 1 Replies
Sep 29, 2009
Is there a way to running program exe that i embeded into my exe program without need to extract it, and run it from shell ?
View 1 Replies
Jul 3, 2009
I'm writing a console application in Visual Basic 2008 Express. I added several text files to my project as resources. Specifically... I went to my project's "Properties" page and selected the "Resources" tab. I clicked the "Add Resource" dropdown and chose "Add New Text File". I entered some simple text and saved the file as "Welcome.txt". I built the entire solution.n my code, I use console.writeline(My.Resources.Welcome) to display the text
View 1 Replies
Mar 20, 2012
I've copied the files albanyc.ttf and MTCORSVA.TTF into 'Resources' and set the 'Build Action' for both to 'Resource'. A label is set to one or other of these fonts dependent upon what is being displayed. This works fine on this PC but when I copy the program to my laptop it seems to me that neither font is used and the same 'other font' is used in stead of either of the ones I want to use. I tried setting the build action to 'Embedded Resource' but that made no difference and I got an error message when I tried 'Compile' (I kinda expected that, but thought it worth a try). Both CP and laptop have the same OS, Win.7 64bit, the only difference is that the PC has Pro. and the laptop Home P.
View 7 Replies
Mar 13, 2010
I'm having trouble with reading a file from embedded resources.
I'm starting to learn about developing applications for eBay. You can pass queries to eBay in XML format, and receive replies back in the same format.
I have some examples of code to do this. Here's how the sample code loads an xml file, containing the query.
'Get XML Document from Embedded Resources
Dim xmlDoc As New XmlDocument()
Dim current_assembly As Assembly
[Code]....
I can't see any difference between the sample and my attempt.
The Assembly Name and Root Namespace in my project are both set to "Sample," just as in the original.
I've tried things like changing the filename and the namespace, but I still can't get it to work.
View 10 Replies
Mar 29, 2012
the story goes something like this:i have embedded resource file, a vbs script.i have an error when i use writeallbytes and it says dimensional error cannot be converted to bytes something like that so i decided to make a module instead of writeallbytes,what my program does is it writes the content of the script to textbox and after that this data will be written in a script and will be save on drive C: as .vbs.that is perfectly working on my codes
[Code]...
View 5 Replies
Oct 16, 2009
I need to some how integrate 2 .exe files, and 1 batch file into my project. I don't like them sitting out in the open, and this will look neater. What I mean is, when I run a command like, "Shell("cmd.exe /C Ping " & TextBox1.Lines(26))", and I have a .exe named ping in the program directory, it will open that console executable, and then to ping etc. I want to somehow pack the .exe and batch with the program.
View 1 Replies
Apr 18, 2009
I need to make an array of images using references to the resources folder. The following is my code which does not work:
Dim imgPictures(8) As Image
imgPictures(0) = Image.FromFile(My.Resources.cat_1.ToString)
How do I reference the images sitting in the resources folder for this task?
View 4 Replies
Jul 29, 2011
I added some resources in my codedom project but I have no Idea how to access the resources? the "My" Keyword is not available and it doesn't work:
My.Resources.blabla.ToString
How can I access my resources without the using of "My" keyword?
View 1 Replies
Dec 14, 2009
I want to create a patcher/installer type program. I have 3 files that need to be embedded or stored in a file. Two files need to be extracted when user clicks a button and one of those two files need to be run with a parameter when the button is clicked and last file needs to be extracted when program closes down. All 3 files need to be able to be updated in the program.
View 7 Replies
Mar 11, 2012
I have a tar.gz file which contains other tar.gz files. For example: file1.gz contains a.gz, b.gz, c.gx, and so on.I can read tar.gz files which have no embedded gz files. However, I need the ability to read embedded gz files. The following is a code snippet which reads .gz files which are not embedded - this works fine. how I can read embedded gz files?
For Each fi As FileInfo In di.GetFiles("*.gz")
fullPath = dirpath + "" + fi.ToString
dirInstream = New GZipStream(File.OpenRead(fullPath), CompressionMode.Decompress)
[code]....
View 1 Replies
Nov 30, 2009
I'm not sure if I'm gonna feel like an idiot after posting this, but here goes . I have taken my first shot a writing a code generator. not too shabby for my first go round, but I already see some ways it can be vastly improved. Not there yet, however. One of the things this code generator does is pull text templates (MANY text templates! Over and OVER again!) from a project resource file. I have added them to the resource designer as linked text files.
Now, the way the generator is written, there can at times be a LOT of iteration (think writing property declarations for a Classs which represents a database entity, as well as the backing fields for those property declarations, etc.).
Is there any significant performance hit to repeatedly accessing a resource? I have looked around on msdn and this forum (and will continue to investigate), but I am hoping someone can give me some clarification.
I SUSPECT that use of a resource file means a trip to the Hard drive each time one accesses it . . . Right? It IS a FILE, linked by it's PATH, right? Due to it's having been designated as a project resource, id a resource file somehow "magially" made available in memory, so that the disk round trip is not necessary?
I suspect I should be retreiving popular resources into a persisted Class-level variable if I plan to use them often within a specific class scope, and at the method level if I plan to perform a significant number of iterations whihc require the resource within the method.
AM I on the right track, or is the resource retreival trivial? I am NOT concerned about milking maximum performance out of a generator tool; it is acceptable for this process to take a little time. However, I also don't want to be sloppy unecessarily.
View 2 Replies
Oct 31, 2010
My program toggles an existing IE add-on between enabled and disabled. At the same time, it creates a shortcut to itself in the Quick Launch folder using one of two icons which reflect whether the next click is a toggle on or toggle off. I store the two icons in the same folder as the targeted executable, and everything works fine, but I would rather have these two files embedded. I know how to embed them. The problem is locating them. At the moment I use:
Dim MyShortcut As IWshRuntimeLibrary.IWshShortcut
MyShortcut = WshShell.CreateShortcut(QuickLaunchVariable & "Toggle.lnk")
MyShortcut.TargetPath = path/executable
MyShortcut.IconLocation = path/iconfile
MyShortcut.IconLocation requires a string and I don't know how to get to the location of an embedded file as a string. There is no MyShortcut.Icon which would allow me to simply refer to the embedded file.
View 4 Replies
Jun 19, 2009
Our current solutions/projects have several classes combined into one file, I'm told this was done due to the slow compile times in VS
View 6 Replies
Jun 1, 2012
I know how to open local .msg files in webbrowser in html format.The problem is when the .msg has embedded pictures, the only thing that appears is a blank space ("picture not found") where it is supposed to be.If I open the .msg file in Outlook, I see the images correctly, but in my program I can't see embedded pictures.
View 2 Replies
Dec 10, 2010
lets say i have a program that consists of a form and 2 buttons.Now i want to make a theme.I want the background to change and the button background icons to change
(Button1 makes the theme Green and Button2 makes the theme Red)
Suppose i have : C:ThemeGreenButton1green.Picturefile[code]....
ATTENTION: What i want is that the images can also be shown on another pc user that doesn't own them.(Of course this is not the case.I just want to Understand how i can add some files to resources)
View 8 Replies
Oct 18, 2011
I want to add 20 small exe files in Resources. The total size is only 1.5 mb. I've added a couple of exe files and I see them in the "Resources" in Solution Explorer.
I've tried to start with:
Process.Start(My.Resources.PROJECT1.EXE)
But I got an error:
'EXE' is not a member of 'System.Array'.
(This is about the VB, Visual Studio 2010).
View 4 Replies