Have a list view that populates members from an Access DB. Purpose is then to populate a form when a members name is clicked:
Private Sub mnuView_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuView.Click
Dim frm As New frmAllView
tsStatus.Text = ""...
Trying to make sure that a mask text box is filled correctly. Tried this with no luck:
If mskPhone.Text <> "(xxx) xxx-xxxx" Then
MessageBox.Show("Please enter phone data in this format 'xxx xxx-xxxx'", "Wrong Fromat", MessageBoxButtons.OK, MessageBoxIcon.Error)
Exit Sub...
Have a listview with eight columns. One contains phone numbers which is a challenge for me to present in the usual manner, ie (000) 000-0000.
The data is stored in an Access db, stored as text, formatted in the db as !\(999") "000\-0000;;_, 14 characters. Have tried formatnumber(file, 10)...
Trying to make a shortcut in the file system of a sln. However, when the shortcut is highlighted, the property box offers only a folder, application folder.
In a different sln, the property box allows a file to be chosen.
How to cure? Thanks.
VB6 used movenext and moveprevious to increment/decrement the absolute record in a dataset. VS 2008 does not seem to have those features.
This is what I have to start. iMemberID finds the current record, next find the total number of rows (iMaxRows), then run through the database looking for...
Reading a text file locating certain positions, I am using:
Dim Lines = _
( _
From line In IO.File.ReadAllLines(OpenFD.FileName) _
Where line.Length > 0 AndAlso _
Not line.StartsWith("5") AndAlso _
Not line.StartsWith("9") _...
When starting an application in VS 2008 to connect to the db i used --> Private cn As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Application.StartupPath & "\Customers.mdb"). After I tried to make it an executable, the application.startuppath now...
Converting from VB6 and CR9 to VS2008 and CR2008. Have a module that is identical in both however the VB6 part prints exactly as it should where the VS2008 part prints all available records.
A listview with checkboxes is populated with the records to be printed. The user chooses which records...
Have a vb6 database program using an mdb as the data file. In one particular process I want to print selected records using a listview with check boxes.
The code that causes the printing
Private Sub mnuFilePrint_Click()
Set cCol = New Collection
For Each xItem In...
Have a program with several reports using Crystal Reports where the font size is set in each report under Section Expert, Font. Also, in an interface that letters can be written Fonts can be set. However, someone using a tablet to run the program claims that instead of the font size being set to...
Using OpenFileDialog, a picture is loaded into a picbox and then saved to a db using only the picName not the path. When the record is subsequently called by these procedures an error message says that the pic could not be found and gives the path which is exactly where the pic is stored. The...
Whenever I try to add a Crystal Report to a project, I first add the form then the viewer. Next click on the CR tasks arrow and then create new CR. At that stage a 'Crystal Reports' item should appear on the menu bar. But it does not. If I open the faux report, I cannot start debugging the...
Trying to have the user be able to move alphabetically through a db in .net. The user picks a record from a listview and then:
If frm.lvwDisplay.SelectedIndices.Count = 0 Then
Exit Sub
Else
intID = CInt(frm.lvwDisplay.SelectedItems(0).Text)...
Trying to export fields to excel. Have set the references to Excel 12, But, the i, j loop cuts short the number of fields to export to 10 the first time and then exports all 19 which results in an Excel file with duplicates.
Imports Excel = Microsoft.Office.Interop.Excel.
Dim i As Integer
Dim j...
Have a short procedure to calculate time value of money with three parameters - PV, interest and time period.
FV = PV * (1 + i / 100) ^ n 'this tracks fv without monthly/annual payment
where i = interest and n is number of months/years (time period).
Would like to also use a...
Trying to show date and time in a label where it will update constantly. The formats that I know are:
me.Items("lblDate").Text = DateTime.Today ' day only
ssMain.Items("lblDate").Text = DateTime.Now 'date,hh:mm:ss
Would like to have date,hh:mm. Thanks.
Under the Resource tab there is a white X on red background and the message 'There is already another resource with the name 'aaa'. I had some resource bmps and removed them. Now, only the above message shows.
How to correct?
thanks
In vb6 I used code to loop through the objects in a form to see if they changed. If so, a boolean was set to true. something like this:
Public Sub FormChange(ByRef bFormChange As Boolean)
Dim obj As Object
For Each obj In frmSStab
If TypeOf obj Is TextBox Then
If...
In VB6 I checked to see if the user had MS Access installed before checking for a table. This procedure is to make sure the app does not crash because lack of the program Access. this code in VB6
Public Sub FindAccessVer(ByRef bFound As Boolean)
Dim oXLApp As Object
Dim sAppName As...
Have several buttons on a tool strip and also an errant Select Case.
Here is the select case
Select Case tbrText.Text
Case "New"
Call mnuFileNew_Click()
Case "Open"
Call mnuFileOpen_Click()
Case "Print"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.