User Profile

Collapse

Profile Sidebar

Collapse
THEAF
THEAF
Last Activity: Jun 5 '08, 10:59 AM
Joined: Mar 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • THEAF
    replied to video player!!!!!!!!!!!!
    Thnk u for your replies
    See more | Go to post

    Leave a comment:


  • THEAF
    started a topic video player!!!!!!!!!!!!

    video player!!!!!!!!!!!!

    there are many mp3 players that people have made. but all these do is play sounds. can someone please tell me were i can find nstructions or tutorials that can help me create my own media player that can also show videos/films. also do you know if someone has created a media player that runs Real Videos (rm/rmvb format). Not to be rude but please don't say all you need is this and that, create an if statement and ta da!! because i can bearly understand...
    See more | Go to post

  • THEAF
    replied to Real Player!!!!!!!!
    i've already checked it. they only have avi and mp3 and other players. not rmvb/rm, and im not good enough to adapt it to play rm/rmvb videos.
    See more | Go to post

    Leave a comment:


  • THEAF
    started a topic Real Player!!!!!!!!

    Real Player!!!!!!!!

    Does anyone know how to create a real player using vb6.
    or does anyone know were i can find one that is already made.
    Thank You
    See more | Go to post

  • THEAF
    started a topic list box problem!!!!!!!!

    list box problem!!!!!!!!

    hi,
    i'm trying to create a reminder form on vb6 with access holding the reminders.
    i was given a code that checks the list box where all the reminders are shown on vb to see if any of the reminders match the actual time and date.
    my problem is that if there is a reminder that matches the actual time and date then the message box will show but the item shown in the message box is always the one on the top of the list.
    ...
    See more | Go to post
    Last edited by debasisdas; Apr 21 '08, 12:58 PM. Reason: added code=vb tags

  • THEAF
    replied to Task Reminder
    i have done something like this that is without the timer, it worked but had problems. i't posted my problem but i didn't get a good response to solve my problem. iso i was maybe(hopefully ) wondering if someone could direct me to a source code that fulfills my needs.
    See more | Go to post

    Leave a comment:


  • THEAF
    replied to Task Reminder
    well its for my project.
    I want to create reminders like appointemts, meetings, deadlines that kind of things.
    The set up should be like 3 textboxes 1st for the name of the reminder, 2nd for the date to be reminded and the 3rd for the time to be reminded at. all reminders should be able to be seen in a listbox. Oh an the reminders sould be stored in mS ACCESS and im using vb6
    See more | Go to post

    Leave a comment:


  • THEAF
    started a topic Task Reminder

    Task Reminder

    hi,
    Does anyone know how i can create a task reminder using maybe a few things like modules, listbox, command buttons, textboxes and any other commonly used buttons.
    And do you know where i can download a free example that show how to create something like this.
    See more | Go to post

  • THEAF
    started a topic Reminder form again!!!!!!!!!!!!!!!!

    Reminder form again!!!!!!!!!!!!!!!!

    OK,
    i've had quite a few problems with this form and again i have another one. i'm using vb6 and access.
    THIS IS MY FORM LOAD AND AFTER THE LOOP IS WHERE THE REMINDER CODE IS
    Private Sub Form_Load()
    '
    Dim s() As String
    Dim ListTime As String
    Dim ListDate As String
    Dim i As Integer

    Set dbReminder = OpenDatabase(Ap p.Path & "\Password.mdb" )
    Set rsReminder...
    See more | Go to post

  • Error 'No Current Record' when trying to delete

    i'm trying to create a reminder form, when i add a new reminder its ok but when i try to delete a reminder then i get No Current Record problem.

    Form Load
    [CODE=vb]Private Sub Form_Load()
    Dim s() As String
    Dim ListTime As String
    Dim ListDate As String
    Dim i As Integer
    Set dbReminder = OpenDatabase(Ap p.Path & "\Password.mdb" )
    Set rsReminder = dbReminder.Open Recordset("Remi nder",...
    See more | Go to post
    Last edited by Killer42; Mar 14 '08, 01:03 AM. Reason: Added cODE=vb tags, adjusted indenting for readability

  • THEAF
    started a topic type mismatch problem Help!!!!!!!!!

    type mismatch problem Help!!!!!!!!!

    hi,
    i'm creating a search button. When i click the button an input box shows up where i then enter the name of the employee and the result is show on a list box. Im using vb 6 and access.

    my form load
    [code=vb]
    Private Sub Form_Load()
    '
    Set GR_Database = OpenDatabase(Ap p.Path & "\GR_database.m db")
    Set rsEmployee = GR_Database.Ope nRecordset("Emp loyee", dbOpenDynaset)...
    See more | Go to post
    Last edited by debasisdas; Mar 11 '08, 11:21 AM. Reason: added code=vb tags

  • THEAF
    started a topic Add from one label to another label!!!!!!!!!

    Add from one label to another label!!!!!!!!!

    hi,
    i'm tryin to create this math questions form for my sister. the form has 2 labels where random numbers show, a text box where the answer is entered, a next button the next numbers and an exit button.

    This is my next button and my random number generator.
    Private Sub Command2_Click( )
    '
    If Val(lbl1) * Val(lbl2) = txta.Text Then 'txta.text is the textbox were the answer is entered
    txta.Text...
    See more | Go to post

  • THEAF
    replied to Timer
    sorry,
    what it was, was that as the each 5 sec the public sub.. should be called to randomize a new number but it's ok now.
    See more | Go to post

    Leave a comment:


  • THEAF
    started a topic Timer

    Timer

    hi,
    im trying to call the form load after each 5 seconds. can enyone please look at my code and show me how to load the form after 5 seconds. thank you
    [code=vb]
    Private Sub Form_Load()
    lbl.Caption = "30"
    End Sub

    Private Sub Timer1_Timer()

    If lbl.Caption = 0 Then
    Timer1.Enabled = False
    MsgBox ("100 secs is up")
    ...
    See more | Go to post
    Last edited by debasisdas; Feb 28 '08, 02:11 PM. Reason: added code=vb tags

  • THEAF
    started a topic Creating a reminder

    Creating a reminder

    hi,
    I'm trying to create a reminder. i have 2 forms one for to set the reminder and one to view all the reminders. these reminders are recorded on access. i can save the reminder and the other form shows the reminders, but it does not alert the user at the time the reminder is set unless your on the form that shows all the reminders. i just used if rs!(record set)time = time and re!date = date then show msgbox. im thinkin that t might be a...
    See more | Go to post

  • THEAF
    started a topic Log file

    Log file

    hi,
    i'd like to create a log file..
    There is one form that has a list box where it shows all the login and logout times.

    Code for Form load
    [code=vb]
    Private Sub Form_Load()
    '
    Dim dbmyDB As Database
    Dim rsmyRS As Recordset

    Set dbmyDB = OpenDatabase("E :\skol\A2 Computing\Speed y Pizza database.mdb")
    Set rsmyRS = dbmyDB.OpenReco rdset("Log file",...
    See more | Go to post
    Last edited by debasisdas; Feb 27 '08, 09:07 AM. Reason: added code=vb tags

  • THEAF
    started a topic Array sort of thing!!!!!!

    Array sort of thing!!!!!!

    hi,
    im using MS Chart to present graphs on my form and the data represented comes from MS Access. The graph holds data for each month. I had to present my programme showing how far i've got to my teacher and got gunned down for my database looking show childish like. i mean this was my first attempt. He says to create an array so that i don't have to have a colume for for each month and instead have one colume hold the data for all the months...
    See more | Go to post

  • THEAF
    replied to Access rights!!!!
    Sorry but i don't get what your sayin.
    are you sayin if im using the reference Microsoft Office Access Library or somfing....
    See more | Go to post

    Leave a comment:


  • THEAF
    replied to Serach Box!!!!!!!!
    ohm, the problemwas that the list kept clearing instead of showing the result.
    Anyway just to let you know i got it fix. the problem was with my list box
    this the solution:

    Old
    rsmyRS.FindFirs t "StaffID=" & Str(lstRecord.I temData(lstReco rd.ListIndex))
    then the rest.....

    Solution
    rsmyRS.FindFirs t " StaffID =" & Str(Split(lstRe cord.List(lstRe cord.ListIndex) ,...
    See more | Go to post

    Leave a comment:


  • THEAF
    started a topic Serach Box!!!!!!!!

    Serach Box!!!!!!!!

    hi,
    this is the code im trying to use for my search button. Just to explain on the toolbar i select search, an input box should pop up, i input the firstname on a staff then the listbox should clear and show the details. all my code does is just clear the listbox.

    Search
    [code=vb]
    Set dbmyDB = OpenDatabase("E :\skol\A2 Computing\Speed y Pizza database.mdb")
    Set rsmyRS = dbmyDB.OpenReco rdset("Staff",...
    See more | Go to post
    Last edited by debasisdas; Feb 14 '08, 10:49 AM. Reason: added code=vb tags.
No activity results to display
Show More
Working...