Loading Data Into Memory
Oct 2, 2009
I have a small VB program written using VB Express 2008Part of it uses an Access database this all works fine using the custom classes.I want to extend it to use some parameterised settings which I have stored in a table in the same Access database .I want to load these parameters from the table at program startup, then use them later in the code as needed.In SQL I want to execute :-select parameter, parameter_value from system_ parametersthen store this in an array which I want to index on the parameter column/elementAny suggestions on how I can load this data into the array ?
View 1 Replies
ADVERTISEMENT
Nov 5, 2009
In VB 2005, I am calling a C++ DLL function that returns the address in memory and size in bytes of a jpeg image. How can I load that jpeg image directly from memory into a picture box in my VB form? I cannot afford to save it to disk first.
View 10 Replies
Jun 2, 2011
an application i developed using vb 2008 express, to fill a web form with data from an access database, one after another when a button is clicked hasn't given me what i expected. the loop was suposed to stop after filling web form with the first data on clicking a button and continue to fill the webform with the next(2nd) data from the database on clicking the button again. Below is the code i wrote
Private
Sub STARTButton_Click(ByVal
sender As System.Object,
ByVal e
[Code]....
View 2 Replies
Dec 5, 2006
I'm using the ShockwaveFlash ActiveX control in a VB.NET Windows Forms application and i'm wondering.Is it possible to load an SWF file into the ShockwaveFlash ActiveX object from a memory stream rather then from a file name?
I've noticed that the ActiveX object has such properties as "InlineData" and "MovieData", possibly these could be used.
I've also noticed someone has used Windows Messaging to send a pointer to a stream to the ActiveX control, has anyone seen this done?
View 1 Replies
Mar 1, 2012
how load a string containing the source for a .exe strait into a process without accessing the hard drive.
Currently my code goes something like this...
Imports System.IO
Dim file As String
file = file_source
[Code]...
View 1 Replies
Jan 31, 2011
I am using the following piece of code to load images as thumbnails to a FlowLayoutPanel control. Unfortunately i get an OutOfMemory exception.As you already guess the memory leak is found at line
Pedit.Image = System.Drawing.Image.FromStream(fs)
So how could i optimize the following code?
Private Sub LoadImagesCommon(ByVal FlowPanel As FlowLayoutPanel, ByVal fi As FileInfo)
Pedit = New DevExpress.XtraEditors.PictureEdit
Pedit.Width = txtIconsWidth.EditValue
[code]....
Update: The problem occurs while loading a number of images (3264x2448px at 300dpi - each image is about 3Mb's)
View 4 Replies
Dec 18, 2009
Alright, for a school project i'm making a filecrypter, and i need to load the executable directly into the memory.
For those that don't know it yet, a crypter consists of a crypter, and a seperate "stub"
the crypter crypts the file, and the stub is binded to the file, and upon execution, the stub is executed, and in turn executes the file it's bound to.
I have a RunPE sub, and on itself it works fine
Imports System.Runtime.CompilerServices
Imports System.Reflection
Public Class Form1
[Code]....
View 4 Replies
Oct 4, 2005
WebBrowser Example.zip IntroductionBecause the WebBrowser control that we use in .NET is a COM control, not all of its uses are straightforward and some of them (even those which seem like they should be easy) require that we dip into our Interop toolbox in order to properly implement them.
A perfect example of this is loading HTML content into the WebBrowser from memory, rather than a file or a URL. Anyone who's ever used the WebBrowser control before is familiar with the Navigate2 method, which tells the control to load content from a URL (or path to a file). Loading HTML content from memory, however, is a rather elusive practice because of the many steps involved in making it work.
MSHTML.HTMLDocumentYou might notice that the WebBrowser control exposes a "document" property. The object returned by this property can be coerced to the type of "mshtml.HTMLDocument" (you must add a reference to MSHTML to your project in order to make this work) as follows:
Code:Dim clsDocument As mshtml.HTMLDocument = CType(WebBrowser.Document, mshtml.HTMLDocument)
(NOTE: You will have to add a reference to the COM library MSHTML to your project to make this compile)
Once we create an instance of HTMLDocument, a whole new world opens up to us, providing all sorts of DOM access to the content of any given Web page.
If we were to create our own HTMLDocument object from memory, we could use the "write" method to write HTML content to the document from a string variable, like this:
Code:'initialize the document object within the HTMLDocument class... clsDocument.close() clsDocument.open("about:blank")
'write the HTML to the document using the MSHTML "write" method... Dim clsHTML() As Object = {sHTML} m_clsDocument.write(clsHTML) clsHTML= Nothing
WebBrowser Control ImplementationUsing the HTMLDocument returned by the "document" property of the WebBrowser control, however, is not as straight-forward. Because of the way that this object is created and initialized in memory (by the COM WebBrowser control), the "write" method fails when called as above. In order to write content to the HTMLDocument exposed by the WebBrowser control, we must first marshal the string value to a memory space that is compatible with COM. Once the string is properly marshalled, the COM interface IPersistStreamInit (implemented by the HTMLDocument class) must be used to pass the value into the object.
Interop DeclarationsIn order to pull all of this off, we must declare several Interop pieces, including an enumeration, a function, and two interfaces. The declarations for these pieces are as follows:
[Code]....
View 10 Replies
Jul 13, 2009
I have a window application develpoed in vs 2008, framework 3.5, in which i have put a button.. Now where i click that button the other text boxes are filled up with the data from database thru web service.. what i want is while all text boxes are being filled i want to show an animated loading gif image till data loading is completed in all the text boxes.. i have tried to use image picture box but while data is loading gif image is displyes but in static mode.. cant see animation... i think this is because data loading and animation both are done thru one UI thread..
View 8 Replies
May 31, 2011
I don't know whether it is simple or not because i am new to programming. my requirement is : In my vb.net winform application, the filenames of the files present in "D:Project" willbe displayed in DataGridView1 control. Now I want to load these files one after another into memory stream buffer and add the headers("ID","Name","Class") to the content in the file. Then I want to save these files in "C:" with "_de" as suufix to the filename i.e.,sample_de.csv.
View 1 Replies
Feb 19, 2009
When im using this code, i encounter an "Out of Memory" error;
If System.IO.File.Exists("C: est.jpg") = True Then
Dim fs As New IO.FileStream("C: est.jpg", IO.FileMode.Open, IO.FileAccess.Read)
PictureBox1.Image = Image.FromStream(fs)
[Code].....
View 2 Replies
Oct 25, 2009
i want to know that when im adding my data in form after loading one person data then 2nd person data the 2nd person data cannot come to next line it is adding on the same line.plz tell me wat can i do?
View 6 Replies
Jul 5, 2012
I am trying to load a xml file into a data set by loading the information into a data row. when i try to complete the task it throws a nullReferenceException. the row has data in it and i used the code earlier and it work.
[URL]
Imports System.IO
Imports System.Xml
Public Class frmMain
[Code].....
View 4 Replies
Apr 21, 2011
I am reading data from wordpad one by one which records the sale of grocery item by barcode. I want to store it in memory so that after reading the whole file I can calculate the total number of the same items sold by comparing the bar code.
View 2 Replies
Feb 23, 2009
Is it possible to store data in memory or a temp file so that if my application crashes information such as text boxes can be restored?
View 3 Replies
Jul 4, 2011
I need some informations to do my project. From webservice I get mye data as a List and this is stored in my application in bindingsource.datasource. The list do have many properties which displays as columns in the datagrid successfully.But my problem is how do I store the data in my local memory? You might say just make some local dataset or datatable....,but how do I convert the list to datatable? Or how do I convert bindingsource.datasource to datatable?
View 4 Replies
Sep 2, 2009
I want to create an app that does NOT use a database or XML files, just in-memory data. On loading, it will populate one in-memory table with standard data. During operation, it will extract subsets of the data, change it, store it in a different table and display it in a datagrid. how this could be accomplished?
View 9 Replies
May 19, 2009
Is there something that needs to be done with the following code to release the memory it uses?
Dim objImage As MemoryStream
Dim objwebClient As WebClient
Dim sURL As String = Trim(m_StationInterface.PicLocation)
[Code].....
The code is on a popup form that shouldn't ever get disposed. A new image is loaded onto the form every time it pops up. However, the process size for the application continues to grow each time it makes it through that code block.
I've tried objImage.Close() and .Flush(), objWebClient.Dispose(). The process size still grows by a good 4mb after every call. It's like the old image is kept in memory.
View 5 Replies
Mar 20, 2012
which way do you think is best? Using connection As New OleDb.OleDbConnection(My.Settings.CustomerConnectionString & My.Settings.CustomerDatabasePath)
Using command As New OleDb.OleDbCommand("SELECT [customer] FROM [tblCustomers] ORDER BY [customer] ASC", connection)
connection.Open()
Using reader As OleDb.OleDbDataReader = command.ExecuteReader()
[Code]...
View 1 Replies
Jun 27, 2011
Its my first time here. And I'm a new to programming and to VB.NET too so please don't mind if I say or ask stupid things :POkay here's my question. Let's say I have a table which contains student details. (Student Code, Name, DOB, Sex, Address, Contact No) and I have a grid which shows ONLY the student code and the name.
Now What I wanna do is when you double click on a cell, ALL the data related to that particular row should be loaded into a form with textboxes.
View 1 Replies
Mar 2, 2010
I'm trying to load data into a DGV row at a time from a dataset and keep getting the following error on the highlighted line.
Private Sub LoadClientGrid()
Try
grdClientList.Rows.Clear()
For Each row As DataRow In rsClientGrid.Tables("tblClients").Rows
Dim grdRow As New DataGridViewRow
[Code] .....
View 6 Replies
Dec 22, 2010
I have here a huge csv file with millions of rows entries. I want to load this data in a vb.net application, what datatype should i use, datatable, array or sth. else? It needs to be as fast as possible. how i can optimize the loading of the data? I once loaded this data in a datatable and it took days.. then i exportet it as xml data and loaded this xml file with the data. this was about thousand times faster.
View 5 Replies
Jun 10, 2011
I have an xml file called "QuotesxmlDoc", in my program I have written code for a search screen that searches the xml file for titles or keywords in quotes saved and the information is then shown in a datagridview, see the code below:
Private Sub btnSearchQoutes_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearchQoutes.Click
Dim xmlnav As XPathNavigator
[Code].....
On the main screen of the program, I want to show all the saved quotes from the xml file in a datagridview, I just need to show the date, category, author, title of the quotes, I also need the datagridview to refresh everytime a new quote is saved.
View 4 Replies
Nov 23, 2010
Try something along these lines:
TextBox1.Text=(dt1.rows(DataGrid1.CurrentRowIndex).item(0).tostring)
where dt1 is the datatable you're using as the data source and you want the data from the first column of the grid to be shown in the text box.
dp.SyntaxHighlighter.ClipboardSwf = '/dp.SyntaxHighlighter/Scripts/clipboard.swf'
dp.SyntaxHighlighter.HighlightAll('381571b4631840c6b8a8abfe5b54ed97')
View 2 Replies
May 15, 2012
Loading into a Datagridview, Nothing seems to work no Error even with test data Added.
Here is some code
Dim SqlConnectionString, SqlCommmandText As String
Dim SqlAdapter As SqlDataAdapter
Dim Table As DataTable
[code]....
View 5 Replies
Oct 14, 2010
RichTextBox1.LoadFile("c:pic.jpg", RichTextBoxStreamType.PlainText)It seems like it loads the data correctly, but the data is all wrong. I know this because when I use a packer sniffer, the data of the file that I sent is different when I sent the file manually.ou can also try RichTextBox1.SaveFile("c:pic.jpg", RichTextBoxStreamType.PlainText) after the picture of the data has been loaded and the picture becomes corrupted (won't show any picture anymore)
View 7 Replies
Mar 25, 2009
I have created a project with a search form. add new record form and a also have an edit record form.Under the add new record form I have added an attachment button an a opendialog where I can select multiple files, so far this is working great, then I add the name of each file that I select and added to a listbox, so far so good,for example:
View 4 Replies
Jan 4, 2009
I have an webbrowser, and I want to save the start page into an XML file... I have a textbox where I can input the start page url and an "apply" button, I got the apply button to work, and the URL saves into my_start_url.xml.
[Code]...
View 1 Replies
May 14, 2012
I am trying to show xml data in an Ultragrid. I have tried using Ultragrid.loadfromxml and using the location of the file and i have also used a file input stream and throw that into the load xml method
View 3 Replies
Sep 1, 2009
I have a tab control and what I want to do is when I click on the tab, data is loaded into the DGV. This does not happen until I click on the tab page several times and then the data is shown. What I did was I took the dataset fill from the Form_load and put it in the Tabpage2_GotFocus procedure thus:
[Code]...
View 4 Replies