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 SkipVought 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. MrVB50au

    Empty Date Field Problem

    I can't understand what the problem can be. I created my database using VisiData that comes with VB and I don't have the same problem as you do. I can create a new record and if there are any fields that I cannot complete due to lack of info' it accepts it and saves ok. I don't know if this...
  2. MrVB50au

    Find If Control Is Loaded

    OK, I have worked out my problem and I do apologize for the late response. However, this had raised an important question: "Why" am I creating labels and not "Disabling" textboxes? The answer to that is quite simple: Textboxes don't have the transparency property as label controls do. Lets...
  3. MrVB50au

    Find If Control Is Loaded

    Hi, How can I find out if a control array is loaded or not? Example: I'm drawing textboxes on a form, do all the text formatting as Bold, Italics, Size, etc. Once I had drawn a few I double click the form and the textboxes are then replaced by an array of label controls copying all the...
  4. MrVB50au

    Deleting Records

    bdavis96 Just Getting Off The Track Slightly: I had also started my programming in 1993 with pascal and passed my programming exams with honors, or should I say with horrors. LOL . . . I liked pascal more than C, so I did some databases, writing text files, created a COBOL Compiler Interface...
  5. MrVB50au

    Deleting Records

    petermeachem I agree, speed is very important especially in todays advanced technology and if anyone can come up with a better, faster way of doing things, I'm all for it. bdavis96 Please excuse my pickiness, it's just that I'm too well aware of these stumbling blocks that some, NOT ALL, some...
  6. MrVB50au

    Print Problem

    Concider creating a preview form with a scrollable picturebox, then inside that picturebox you would have another picturebox that is set for an array. eg: picBar(0). set the scalemode of picBar(index)and stretch it to the sizes you need. Multiply picBar(index) and have each one line up for the...
  7. MrVB50au

    Deleting Records

    bdavis96 OK, Here's the First Issue: Look at the path of the mdb file, you must question yourself "What if the users' mdb file is situated on another drive?" (eg: Networks have many drives for different work allocations). Then the path, what if the user had chosen a different path in that...
  8. MrVB50au

    Deleting Records

    bdavis96 Are you planning of others to use your app?
  9. MrVB50au

    Deleting Records

    bdavis96, I guess you're planning of using the database app for your own personal use. If not, you need to look at some issues in your code above. petermeachem, I'm suprised to see you've missed them. good luck bdavis96.
  10. MrVB50au

    Deleting Records

    bdavis96, Use the database "Close" command in your code before compacting. petermeachem You seem to know more about it so I'll step aside. You were right, it's fixed now. Thanks
  11. MrVB50au

    Deleting Records

    See and study the code below that I use to delete every record "BAR ONE" in my app'. The one left over needs to stay. you can replace the data in that one record and update it or simply empty it's contents and then update it. BUT!, And I mean BUT! If you delete the last record you will get a...
  12. MrVB50au

    Bug with SSTab Control

    DrJavaJoe, Luckily, I don't use SSTab and Command buttons so I don't have the problem. I did however found problems with SSTab and command buttons before I started using my own and I know what a pain in the rear it can be.
  13. MrVB50au

    Create a Control in RUN-MODE??

    OK, Fare Enough! Thanks anyway guys.
  14. MrVB50au

    Create a Control in RUN-MODE??

    ok, if i can create a label control in runmode, without it ever being on the form at designmode, how will I go about this please?
  15. MrVB50au

    Create a Control in RUN-MODE??

    Hi Everyone, Is it possible to create a control and it's arrays on the form in Run-mode? FOR EXAMPLE: In Design-mode I had created a Label1(0) and set it's visibility to false In Run-mode, I had created Label1(1), Label1(2) and so on. Now, still in run-mode, I want Label1(2) to have a...
  16. MrVB50au

    Drawing A Control On A Form

    Goodness DrJavaJoe I've got still so so much to learn about programming. Thank you so so much for this, your knowledge as well as everyone elses is valued beyond words. You all are a real help to people like me. Thanks again both of you DrJavaJoe and MattSTech
  17. MrVB50au

    Drawing A Control On A Form

    Here's the updated version of it. Option Explicit Dim oldX As Single Dim oldY As Single Dim objInx As Integer Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) oldX = X oldY = Y MousePointer = 2 Shape1.Left = oldX Shape1.Top = oldY...
  18. MrVB50au

    Drawing A Control On A Form

    Thank you MattSTech This really gave me a good start and here's what I have so far as a result. ----------------------------------------------------------- Option Explicit Dim oldX As Single Dim oldY As Single Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As...
  19. MrVB50au

    Drawing A Control On A Form

    Hi There! Please could anyone help me. I have been trying to draw a control in RUN MODE onto a form eg: Form1. I created two variables named oldX and oldY to store coordinates of the mouse cursors' X and Y when Form1_MouseDown is activated. Then got the control array eg: Text1(objInx) to load...
  20. MrVB50au

    KEEPING TRACK OF PROGRAM USAGE

    Hi Everyone, I have in my program For instance, if a user goes to work on Monday and sees that a program was last run on Saturday--when he was at the beach--he'll know that someone else was using the program. Here's how I implemented a technique for keeping track of program usage. The technique...

Part and Inventory Search

Back
Top