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: rickyoswaldiow
  • Content: Threads
  • Order by date
  1. rickyoswaldiow

    Refering to a recordset member with a variable.

    Good evening all. Is it possible to reference a recorset member with a variable? i.e.: strString = "FieldName" With rsRecordset ![strString] = "Some Text" End With
  2. rickyoswaldiow

    ToolTipText on a Disabled Control.

    Good morning all. Today I am working on User Guides and Documentation for my project. When the Enabled property of a control is set to False, the ToolTipText does not display! This is most annoying, is there a way around this?
  3. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    Good afternoon everybody. Today I am working on some project design work. I am reverse-engineering parts of an application that have been built in VBA. I have all of the technical information required for the project but I am wondering; If I go for a highly modularised design using many...
  4. rickyoswaldiow

    Migrating to .Net

    Good afternoon all. I'm sure you get a lot of questions relating to projects being migrated to .net - I am wondering which versions of windows my application will support if I migrate from VB6 to .Net. I currently have clients running on 98, NT, XP etc... Is there a definitive list to which...
  5. rickyoswaldiow

    Adding new sections into a report.

    How do I add in new sections to a report? It starts with the Header, Footer and Detail but I need some more..
  6. rickyoswaldiow

    Non-Nullable column cannot be updated to Null...

    Good afternoon all. I am having some trouble with my save function. The problem is that when the program loads and the controls are populated, two of my DataCombos are acting strange. I have 10 of these DataCombos and they are all loaded in exactly the same way, one after the other...
  7. rickyoswaldiow

    Click event executing on more than just a click!

    Morning all. On my form today I have a checkbox that can enable or disable a combo box. For this I am using the Click event of the checkbox then an If statement to check its own state and enable/disable the combo. I have a problem however - this check box is also toggled by another event...
  8. rickyoswaldiow

    Clearing a ListView control.

    I am trying to empty a ListView of its date. Is there a simple way to do this? I cannot find anything like .Clear for this control :(
  9. rickyoswaldiow

    VB6 equiv. of VBAs Requery

    Does anyone know the Visual Basic 6 equivilent of VBAs .Requery? i.e. Me.cboBankUpdatedBy.Requery
  10. rickyoswaldiow

    Breaking down the text in a multi-line text box...

    Good evening all. Today I am trying to store the text typed into a text box into a database. Very simple you may say, but here's the catch; The text box is multi-lined and there is a seperate record for each line in the database. For example, the user will enter his address as follows House...
  11. rickyoswaldiow

    Focusing on a particular tab on a SSTab control.

    I have a SSTab control set up on a form, it has several tabs. Using a button press event, I wish a particular tab to be shown but I cannot figure out how you can uniquely identify each tab?
  12. rickyoswaldiow

    Selecting an item from a DataCombo using the Index ID

    Good morning all. I have a DataCombo control (not to be confused with ComboBox) which is populated with data. I am wondering how I can display the Description (ListField) text by referencing the Index ID (BoundColumn) i.e. I have three entries in the DataCombo 0. Red 1. Green 2. Blue I want...
  13. rickyoswaldiow

    Populating a ListView.

    Good morning all. Today I am working on populating a ListView control (not to be confused with ListBox). The original code is setup thus: dim lstItem as ListItem lvwListView.ListItems.Clear If Not(rsRecordSet.EOF and rsRecordSet.BOF) Then rsRecordSet.MoveFirst Do Until rsRecordSet.EOF...
  14. rickyoswaldiow

    Converting True/False to 1/0...

    Good morning everyone. I have a project that has hundreds of Check Boxes throughout but I have come accross a problem while moving it out of VBA and into VB6. The checkbox requires a 1 or 0 value to be toggled but all of our data in the database is stored as True or False. At the moment I am...
  15. rickyoswaldiow

    Setting a property of *all* controls

    Is there a shortcut to setting a property, say .enabled, of all controls on a form besides making control arrays and looping through them?
  16. rickyoswaldiow

    The basics of .dsr

    Good morning everyone. Today I have been looking at a small program that connects to a SQL database. I have been reproducing this application with relative success untill now. I have come accross a .dsr file in the project. Upon inspecting this I can see it holds details relating to the...
  17. rickyoswaldiow

    Copying a form from VBA to VB6

    Is there any way to copy a Form made in Access 2002 into VB6?
  18. rickyoswaldiow

    SSTab width

    I'm having a little troulbe with the width of the tabs on the SSTab control. The titles do not fit and I cannot find a property to stretch them...
  19. rickyoswaldiow

    Adding tabs to a tab control.

    Good afternoon everyone. I'm trying to make a tab control with multiple tabs but I can only get as far as adding the tab control in, how do I add the extra tabs?!?
  20. rickyoswaldiow

    "User Level Security" over "User Created Security"

    Good evening everyone. The database I am currently working on handles it's user accounts with a set of forms that only administrators of the db can access. It has groups and users but it simply stores the information on a table via some nifty modules that someone wrote. It does use the...

Part and Inventory Search

Back
Top