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

    Tab Stop vs Return Stop

    On most objects placed on a form, there is a property called tab stop. In my case I have textboxes I want to tab through, The tab stop property works fine, but I havent found anything that allows me to use return in the same way as tab stop. Can you have tab stop and return stop at the same time?
  2. GaryWilsonCPA

    Textbox download worth trying

    I bumped into this download - it's a textbox that can be formatted for various items. It does dates very well. It also works on formatting for accounting numbers. It also allows you to tab or return your way through the textbox. http://www.codeproject.com/vb/net/cpflexmaskeditbox.asp
  3. GaryWilsonCPA

    Anyone here using Infragistics suite

    I want a product to help me with the following. formatted textboxes comboboxes multi-column and sorted dataviews that can be used with comboboxes and lookups Has anyone used the $495 version of the above? Can i use infragistics suite and sell my final product without licenses issues? In...
  4. GaryWilsonCPA

    Format text in textbox question

    The code below works if you click the textbox one time, but if you click twice an amount 500,000.00 becomes 500.00 It works perfectly on the first click, just strange behaviour on second click. LOANAMT = TEXTBOX NAME. Any ideas??????? Private Sub LoanAmt_Click(ByVal sender As Object, ByVal...
  5. GaryWilsonCPA

    Database location question

    I have the following connection string that works, however it is hardcoded to one location for my db. The location of my database is below. \DublinFundRaising\DublinFundRaising.mdb""; Is there a way to change my programing to allows the database location to exist anywhere on the server...
  6. GaryWilsonCPA

    vb.net and crystal reports

    Has anyone started a forum just for this area?
  7. GaryWilsonCPA

    Thanks VBSlammer - the formulas worked great

    Thanks VBSLAMMER - You are the man............... GaryWilsonCPA, if you're a CPA then you're a stickler for accurate numbers, am I right? Well, there has been much debate over how to get an accurate age based on a birthdate. Dividing by 365 works most of the time, but doesn't take into account...
  8. GaryWilsonCPA

    Adding crystal reports viewer to toolbar

    I have vb.net installed on two computers. On one computer I can add crystal reports viewer to the toolbar, however on the other computer I have not been able to find the viewer to add. Both computers have crystal reports for developer installed, both have vb,net installed. I think my...
  9. GaryWilsonCPA

    Question about placing additional data on form

    I have a form that uses one table, I need to add a query to that form, and use one field. Is there a method to adding new tables? Thanks
  10. GaryWilsonCPA

    Location of Crystal Reports Viewer DLL

    I am trying to add the Crystal Reports Viewer to my toolbox and seem to have trouble finding the correct one. What is the actual file name of the crystal reports viewer dll. Where is it normally located? I have the developer edition version 10.00 Thanks
  11. GaryWilsonCPA

    Modules can only occur after namespace ????

    I get this error when i use the following code. Module PublicVariables public MyInstanceOfForm2 as Form2 End Module "Modules can only occur after namespace" What does this mean?
  12. GaryWilsonCPA

    Reusing a completed form on a tab

    I was wondering if there is a way to use a completed and working form within a TAB on the MULTITAB. I could rebuild the form inside the multitab, but is there a way to just copy all my work within the tab. I tried copy paste, but got a unrecognisable mess.
  13. GaryWilsonCPA

    Dataconnection string question

    I have a dataconnection that is used throughout my program. ""\DublinFundRaising\DublinFundRaising.mdb"" I would like to allow users to have the MDB placed anywhere they want on there server. I want to build a utility to store the connection string (allowing users to edit it based on actual...
  14. GaryWilsonCPA

    Backup-Copying of visual basic project question

    I have a visual basic project that I need to copy and move to another computer. I work at two locations so, often I will copy the entire folder the project sits in (including the database) When I copy the entire folder on the destination machine, most of my project works, however I find that...
  15. GaryWilsonCPA

    Using messagebox to skip code.

    This code is part of a button that calculate the amount of a value for units times unit cost. I use the following to test if a value in a textbox is numeric. It works properly. CODE TO WARN THAT TEXT IS NOT NUMERIC If IsNumeric(Val(editQuantity.Text)) = True Then...
  16. GaryWilsonCPA

    Math question between two textfields

    I wish to use two fields to create an amount in a third field. Edit amount should be the sum of textbo2 times editquatity. If I put the formula together like below I get a concactonation of editquantity and textbox2. editAmount.Text = (editQuantity.Text) + (TextBox2.Text) I think I am on...
  17. GaryWilsonCPA

    COMBOBOX PASSING NUMBERS

    My combo box can pass text to a text box on my form, however when I try to pass a number to a number, I get no results. Is there a different way in coding for passing numbers (int) instead of text?
  18. GaryWilsonCPA

    Combo box default value

    I want the default value for a field to be yes, I want to pass that from the combobox1 automatically. right now the combobox1 allows me to drop down a "yes" or "no" but the user must keypress to get the yes or no. What I am looking for is that the combo box automatically have yes on top and...
  19. GaryWilsonCPA

    Filling a combo box with data

    I have used a combo box on a form generated by the dataform wizard. It will draw the data from the table configured with the form. I want to draw data from a different table that I added to the form. I added a oleadapter and a dataset. The combo box doesnt fill up with data. This is...
  20. GaryWilsonCPA

    Query question with form driving query

    I have a form with a textbox1 located on it. I want the user to put the desired zip code in textbox1, then have the query use the textbox1 data to drive the query. SELECT [Client Demographics].[Last Name], [Client Demographics].[First Name], [Client Demographics].[Middle Initial], [Client...

Part and Inventory Search

Back
Top