Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: brews
  • Content: Threads
  • Order by date
  1. brews

    Listview

    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 = ""...
  2. brews

    format mskphone

    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...
  3. brews

    format phone # list view

    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)...
  4. brews

    File System

    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.
  5. brews

    finding absolute row in a dataset

    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...
  6. brews

    Read a text file

    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") _...
  7. brews

    startup path

    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...
  8. brews

    Print Selected records

    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...
  9. brews

    selective printing

    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...
  10. brews

    font size

    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...
  11. brews

    load images in picturebox

    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...
  12. brews

    No CR menu Item

    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...
  13. brews

    Move Next/Move Previous

    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)...
  14. brews

    Export to Excel

    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...
  15. brews

    Future Value

    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...
  16. brews

    format date/time

    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.
  17. brews

    project properties

    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
  18. brews

    Form Change

    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...
  19. brews

    Does MS Access Exist?

    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...
  20. brews

    tool strip buttons

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

Part and Inventory Search

Back
Top