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: *

  1. medicenpringles

    DataSets vs Queries

    I have a couple of different procedures that retrieve data from a single database. Both return a single value, either an Integer or DateTime. But the one that returns an integer accesses the data by connecting to the database and returning the data using .ExecuteScalar, while the other one...
  2. medicenpringles

    i know there's a simple answer to this

    i have a project w/ several forms. i know you can open a project using "sub main", and that's what i try to do but for some reason i can't get the sub main to load my main form. here's my code: Module Globals Public MainForm as Form = New frmMain Sub Main() MainForm.Show() End Sub End...
  3. medicenpringles

    retrieve a single value from an OleDb

    Hello again, I need some help with a simple OLEDB query. I need to return one value from an Access database. the code below is a snapshot of what i have so far. Imports System.Data.OleDb Public Class Prices Public Shared ReadOnly Property Price(ByVal Name As String, ByVal Size As...
  4. medicenpringles

    access connections through code

    ok, this is going to sound a bit odd because i've never done this before, but here goes: i have a cash register application that involves several classes and several forms. i have a Globals module that holds all my constants and such, and i have a class named "Prices" that holds all the prices...
  5. medicenpringles

    systray bubbles?

    ya know those little bubbles that pop up above your systray to give you messages? is is possible to put other controls in those, such as checkboxes, radio buttons, and textboxes? if so (or not), how to i create one? Main Language: Visual Basic .NET Development Environment: Visual Studio...
  6. medicenpringles

    stealing a spell-checker

    is there a way to use MSWORD's spell checker to check the spelling of words in a text box in a form? Main Language: Visual Basic .NET Development Enviroment: Visual Studio .NET 2003
  7. medicenpringles

    tracking changes in an array

    First of all, i would like to thank the MVPs for helping me so much in my last few questions. and with that out of the way, here's my question: I have a form with 2 check boxes, Small Cheese and Regular Cheese. When the check boxes are clicked it adds or subtracts the correct amount to/from...
  8. medicenpringles

    simple mutli-tiers and layered forms

    i have two questions that are sort of off topic. i have an application with several forms. they are all the same size, and basically what i do with them is cover one with the other when controls are clicked. so say when i click "manager mode" on the main form, it covers the current form with...
  9. medicenpringles

    Class-Class reference-ing

    I have an application with a running total featured on all of the forms. when certain controls are interacted with on any of the forms, i need the total to be updated. this i can do. but showing the user that the total has been changed is the problem. he's the code i'm having trouble with...
  10. medicenpringles

    downloading/installing C#

    I've been developing in VB.NET and VBA for about a year now, and i would like to move into C#. where do i get the download to add C# to my Visual Studio family, or where can i buy the software? i can't seem to find the hard software anywhere, but it seems i can download it free off the MSDN...

Part and Inventory Search

Back
Top