VB 2008 - How To Implement The Keyword, Me
Dec 16, 2009I am working in vb2008. how to implement the keyword, Me. I see it used in code examples but when I try it, it does not work.
View 3 RepliesI am working in vb2008. how to implement the keyword, Me. I see it used in code examples but when I try it, it does not work.
View 3 RepliesNote that I'm aware of other yield in vb.net questions here on SO. I'm playing around with Caliburn lately. Bunch of great stuff there, including co-routines implementation.
Most of the work I'm doing is C# based, but now I'm also creating an architecture guideline for a VB.NET only shop, based on Rob's small MVVM framework.Everything looks very well except using co-routines from VB. Since VB 10 is used, we can try something like Bill McCarthy's suggestion:
[Code]...
It definitely isn't as elegant as C# version, but it looks to be doable. We'll see if there are any problems with this. If anyone has better idea, I'm all ears.
I get Keyword is not valid as an identifier error on this line
Private Sub Event _service_GetReleasesForProductCompleted(ByVal Sender As Object, ByVal e As EventArgs)
Where as I want to Raise an event [set up events].
I am trying to create a Datagrid at runtime. This I have done on other forms no problem yet on this I get a error:
"Incorrect syntax near the keyword 'FROM'." And the the following "In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user."
[Code]....
I would like to be able to open up notepad/word/etc and type in a keyword/password and have my program use that text.
The idea behind this is for our CMS application. Want to be able to capture the customer numbers as they are put in and have my program pull all the customer products etc. I am currently able to capture the keyboard text just not how to filter it as it is being typed.
is there any one who can give me a sample of a sms keyword program... badly need it.. i just need to study the program and make it more complex but i dont have the idea so please help...
View 1 RepliesI have a keyword search in my program that searches a SQL database table and displays all records that match that keyword in a datagridview. As some of the results can be quiet big i would like to highlight the word in the result that matches the keyword in RED. How can i do this?
Dim count As Integer
Dim word() As String
For count = 0 To DataGridView1.Rows.Count - 2
[code]....
VB is telling me to use the "NEW" keyword to create an object instance. For example: Private Sub ScoreTotal(ByVal sender..., ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
[Code]....
When I run the "MainStudentScores" form and click on a student with three scores separated by the "|", it should give me a Score Total, Score Count, and Average. However it is giving me an error message at "Scores.Add(intPlaceHolder)" This is where VB is telling me to use the "NEW" keyword. Does this make sense?
I want to build a flip clock for my vb 2008 form.But I cant seem to get it done.So I searched and found a flip clock control for not Vb but silverlight.Here is the link
[URL]
Is there a way I can use this clock in my vb form.
how should i implement networking through vb.net 2008?
View 6 RepliesI have a custom object that I would like to turn into a Collection that could then be used in a BindingSource. From what I've read, I can Inherit Collection(Of T) where T is my specific object. Then I can Implement IBindingListView. This is all great, but I have no idea how to actually use the IBindingListView Interface. I know I want to be able to sort and filter my collection, so I have the following.
Imports System.ComponentModel
Public Class ChemicalCollection
Inherits Collections.ObjectModel.Collection(Of Chemical)
[code]....
As you can see, I haven't really done anything other than let Visual Studio fill in the required properties and methods when I implemented the interface.
i would like to ask if it is possible to implement clickonce like in vb2008 in vb.net 2003?..example:i have a button "Update" in my application running on local machine...if i click it it will check the remote server if there is an update of that app.if yes then download it an change the application on local machine...
View 22 RepliesI want to try and use the new encryption algorithms provided with .NET 3.5. Any links or examples for how to use one of them to encrypt xml content?
As written on msdn site is:
The following algorithms are included:
Advanced Encryption Standard (AES) with key sizes of 128 and 256 bits for encryption.
Secure Hash Algorithm (SHA-256 and SHA-384) for hashing.
Elliptic Curve Digital Signature Algorithm (ECDSA) using curves of 256-bit and 384-bit prime moduli for signing. This algorithm is provided by the ECDsaCng class. It allows you to sign with a private key and verify with a public key.
Elliptic Curve Diffie-Hellman (ECDH) using curves of 256 and 384-bit prime moduli for key exchange/secret agreement. This algorithm is provided by the ECDiffieHellmanCng class.
I am making an application that has a tabbed interface. Each tab uses a UserControl with the controls that I need on it. The user enters some data & clicks a button, which starts a lengthy process. I would like to run that process in a BGW, so that the user can switch to (or open) another tab & process another set of data simultaneously.
View 7 RepliesI am wondering how to implement a barcode reader on vb.net 2008. I haven't started creating a program yet. I have only these simple questions
How to declare Barcode Reader on vb .net?
If I want to scan a product on the barcode reader how to catch the data that is being scanned?
basically add and remove text and selection information from a stack. Result: When using Undo/Redo the selection got messed up, the text moved, sometimes causing lag of epic proportions. I need a way of having complete and smooth undo/redo class for storing all information I would possible need.How to know whether or not to add an undo stack is easy, I just checked if the user clicked in the text or moved using the arrow keys. As soon a previous marking was given for "next text change needs to be backed up", it was backed up. At that point I stored the RTF and selection start/length. What do I have to store of a RichTextbox control to be able to restore it to a previous state, and how can I reset it back to a previous state? See it as having a "RichTextBoxState" class:
Public Class RichTextBoxState
Sub New(ByVal RTB As RichTextBox)
Me.text = RTB.RTF
Me.selectionstart = RTB.SelectionStart
[code]....
After restoring it must display the EXACT same thing as when it was saved as a state.
PROJECT TYPE: Windows Forms Application
LANGUAGE: Visual Basic
.NET VERSION: 3.5
IDE: Visual Studio 2008
OPTION STRICT: on
OPTION EXPLICIT: ON
I am developing a parental control application containing a feature that logs a user off of the computer after an administratively set period of time. I do not however want the application to continue counting time against the time limit when the user is not active on the computer. EXAMPLE: Child logs on and is active for an hour then leaves computer for 45 minutes to get dinner. The session timer needs to ignore the 45 minutes of inactivity. I have thought of two ways to accomplish this.
1) Use a SystemEvents.SessionSwith event (to detect the Start Menu > Log Off > SwitchUser action), or
2) Use an event which would detect user inactivity in excess of a set time, e.g. 5 minutes (similar to a screensaver).
Either event would call a method which would simulate a pause feature (as StopWatch and Timer have no pause support that I know of). I believe the 2nd option would prove to be more universally affective as 1) some users do not have Fast User Switching enabled, and 2) users would be required to manually switch users in order to prevent their inactive time from counting against them. My problem arises when I attempt to implement one of these methods. According to the IntelliSense error checking engine, I have absolutely no clue how to do either of these tasks in spite of the research I have conducted on the topic. I would prefer to go with the system idle time approach.
I am upgrading from Visual Studio 2003 to Visual Studio 2008. ow I should upgrade my project.My project is in Visual Basic.Net, and using an Access 2003 Database. I have four datasets, MainDataSet (for the main data tables) LookupDataSet (for lookup tables States, Countries, Colors, etc) OneFormDataSet (data used on only one form) and ReportsDataSet (data used for reports).I have one form "OleDbAdpatForm.vb", that has all the OleDbDataAdpaters for my project. It also has the DataSets and the OleDbConnection.I have public functions that enable me to load the data tables.
I have a LoadTable function when I can pass a column and a value, and the SQL select command is updated with a WHERE or HAVING, so only the requested data is selected. I also can pass the whole "WHERE ..." part of the SQL select command, so I can have multiple parameters in the SELECT command.On my other forms, I have copies of the DataSets, so I can design grids/controls. In the form_Load events, I manually bind the controls to DataSets and tables in located "OleDbAdpatForm.vb", so all forms are using the same data tables, and changes made to data in one form are reflected in data in other forms.The VS 2008's DataSources, BindingSources and TableAdapters seem much easier to use. how I should implement the new data features in my application?
I have been developing an application for quite some time now. I have decided to create an mdi parent form to hold all the windows I have done so far. Is there an easy way to implement the mdi parent/ child associations rather than to go and declare them each one individually.
View 7 RepliesI'm trying to analyze web pages for seo. I'm trying to create my own personal tool to extract all the keywords and tags from web pages (a little clearer).I already know how to extract or parse links and text from web pages. The issue is that I tried to implement title tags, body tags or keyword tags in general via using the following code:
Dim theElementCollection As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("a")
For Each curElement As HtmlElement In theElementCollection
If curElement.GetAttribute("href").Contains("http://twitter.com/") Then
[code]....
Try to extract all the keywords from the title, body etc. for this page:[URL] and send it to separate textboxes (title keywords in textbox1, meta tags in textbox2 etc.).
how I can implement my calendar with VB .net express 2008 and MSSQL 2008 Express. How do I get it to work with datasets, binding source etc.If I go to Properties>settings my connection string is:
Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|CalendarDatabase.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True
and I have a table with fields:-
CalendarID
Subject
Location
Purpose
[code]....
I can Add the event to the calendar I have the necessary items on my form linked to my table and I can save them to my table:
Me.Validate()
Me.CalendarTableBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.CalendarDatabaseDataSet)
But I cant keep the event displayed on my calendar when I close it and open it again.
I read about CLR in a computer forum. Can anybody give me some example code in CLR (SQL Server 2005)? And does CLR have anything to do with stored procedure in SQL Server 2005?
View 1 RepliesI am trying to implement a BGW and want to report progress to a progress bar for my TextFieldParser program, sometimes if your opening very large files it takes a while and I would like the user to be able to see the progress and have some interaction so they know the program is still running I am a little hung up on what to in the reportprogress
I have:
worker.ReportProgress(0, myReader.ReadFields())
and its not doing anything, I didnt expect it too since ReadFields is an array
parser
Private Sub BackgroundWorker1_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
Dim worker As System.ComponentModel.BackgroundWorker = DirectCast(sender, System.ComponentModel.BackgroundWorker)
[code]....
Protected Sub Menu1_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemClick
End Sub
In VB.net, we have the Handles keyword, I'm wondering if C# has anything comparable. Or do you have to manually wire all the methods to each control's event (in ASP.NET especially)?
Possible Duplicate: WITH statement in Java? does anyone know if there is the With Keyword in Java?
View 4 Replieswhy use of namespace and use keyword and declaration of namespace
View 1 RepliesPossible Duplicate:Default value for generics k so while translating some code from c# to vb, i came across the default keyword, and I'm simply replacing it to nothing.
View 2 RepliesIn my current project everyone names variables and methods after what they are and what they do. This is good for quickly understanding the code, but with a lot of long varible names comes some headaches, such as when copying a dataset to an entity/object. So, while you understand the code, the readability still takes a blow.
veryLongVariableName.Id = datasetVeryLongVariableName.Id
veryLongVariablename.Something = datasetVeryLongVariableName.Something
etc.
Using VB.NET's With keyword can help.
With veryLongVariableName
.Id = datasetVeryLongVariableName.Id
.Something = datasetVeryLongVariableName.Something
End With
Now, my question, is there any way of using With, or something similar, but for several variables at the same time? Something like:
With veryLongVariableName As a, datasetVeryLongVariableName as b
a.Id = b.Id
a.Something = b.Something
End With
I'm all for descriptive naming conventions, but they do tend to clutter things. Especially in VB!
I m trying to create a software in vb.net for some genealogists to trace their ancestors History, the users will search for the document in 3 ways
1. reference number from a combo box.
2. By the title of the document.
3. by inserting a keyword from the documents abstract..
i have already loaded the picture. i hav put all in one note pad my reference no., on next line i put my abstract and on the third line i put my path where the document is located.in coding i put all in different array.... making the program read all one by one line wise.i want to make search thru the keyword... means wen user inserts a key word in the textbox the program read all my abstract and then in a drop down it should display the documents that match the keyword.
Its work well in windows 7 but when i run project in windows xp its says i must use New keyword but when i use New its gives error at regkey.GetValueNames and RegistryKey = Registry.LocalMachine and regBaseKey.OpenSubKey("SOFTWAREMyApp", FalseImports Microsoft.Win32[code]...
View 4 Replies