CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: iagina

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: Is Visual Basic 6 a program or a programming language?

    IDE to mean - Integrated Development Environment. No one says it better than Wikipedia http://en.wikipedia.org/wiki/Visual_Basic
  2. Replies
    4
    Views
    5,781

    [resolved] Re: Calculating number of days from DatePicker

    Thanks for the light bulb. This is what I did and so far it counts 21 days fine.



    Private Sub DTPicker1_Change()
    Dim d As String, dtp As Date, myPickDate As Date
    myPickDate =...
  3. Replies
    4
    Views
    5,781

    Re: Calculating number of days from DatePicker

    So where do I set it to pick the date on the DTPicker1? Do I have an extra line with



    myPickDate=DTPicker1.Value
  4. Thread: New here

    by iagina
    Replies
    3
    Views
    665

    Re: New here

    You will also remember to teach us.
  5. Replies
    4
    Views
    5,781

    Calculating number of days from DatePicker

    Halo,

    My application captures data using date pickers. Items are taken and returned after certain intervals.
    I have code that should change the date in DTPicker2 by 21 days if DTPicker1 has been...
  6. Thread: Complile Error

    by iagina
    Replies
    17
    Views
    2,105

    Re: Complile Error

    If txtRepName.Text = "" Then ' blank field
    MsgBox "Please Enter the Rep Name"
    txtRepName.SetFocus
    Exit Sub
    End If
  7. Thread: EXE not running

    by iagina
    Replies
    13
    Views
    1,285

    Re: EXE not running

    So what is included in this ini file to override the defaults? I am interested especially on the reports since that is where I get lost.
  8. Thread: EXE not running

    by iagina
    Replies
    13
    Views
    1,285

    Re: EXE not running

    I think what WoF has said sums it up. Is it possible to declare the path of a report? I usually have problems declaring the path of a report and I go round it by first knowing where the application...
  9. Re: Some explanation about write access method

    & CStr(empID) & should be changed to & CStr(emp_ID) &, check if this will work!
  10. Replies
    8
    Views
    8,083

    Re: Run-time Error '424': Object Required

    I don't know if this code really opens the workbooks as it is supposed to... Is there a way of ensuring the workbook is seen as open? Then access can be made to the chart. I don't know how to do this...
  11. Replies
    8
    Views
    8,083

    Re: Run-time Error '424': Object Required

    How did you define Excel.Workbook? take a look at its definition because according to your program, it cannot see chart 4
  12. Replies
    12
    Views
    1,960

    Re: Repeating random number sequences

    You could keep them in a file. First you need to put the random number generated in a text box then take it from the text box into your file. You can then read it from the file and assign your seed...
  13. Thread: Stop this loop!

    by iagina
    Replies
    4
    Views
    1,012

    Re: Stop this loop!

    Thanks a million. This took me three days to realize and you took just a while to get it right. The program now works just fine.
  14. Thread: Stop this loop!

    by iagina
    Replies
    4
    Views
    1,012

    Re: Stop this loop!

    let me try and see what comes then get back to you. Thanks.
  15. Thread: Stop this loop!

    by iagina
    Replies
    4
    Views
    1,012

    Stop this loop!

    Halo friends,

    I am developing a stock control program that calls data from a database. this particular form has been built using text boxes that form an array. It should be a grid of ItemCode,...
  16. Replies
    15
    Views
    2,875

    I read the newsletter, and I want mine!

    Hi Brad,

    I hope I am the first person to post.... 24hours later.

    Agina
  17. [RESOLVED] Error during setup DLLSelfRegisterEx not found

    Got the answer!

    To eliminate the error, open the .LNK file using note pad and replace the line that has DLLSelfRegisterEx with DLLSelfRegister. Then this solved the problem. I should have googled...
  18. Error during setup DLLSelfRegisterEx not found

    I have used the package and deployment wizard to cerate a setup for a software that I have done. When I try to install the software in a machine it gives me the following error



    The file...
  19. Replies
    8
    Views
    982

    Re: Relationship In Access 7 Database

    Looking at what TheCPUwizard had to say, I now understand that I have to be more careful. I was also of the opinion that there is no point of creating relationships since VB does not know they exist....
  20. Replies
    8
    Views
    2,119

    Re: Can't restore minimized

    I think this happened to me a while back and I used some simple positioning code that does not let me down.



    Form Load ()
    'Fix position at start up
    Me.Top = 100
    Me..Left = 100

    'Fix the...
  21. Replies
    4
    Views
    3,727

    Re: Sunrise/Sunset Calculator ---PLEASE HELP

    Not so fast to judge... that was his/her first post!
  22. Replies
    8
    Views
    4,205

    Re: URLDownloadToFileA + progressbar?

    What are the objects that you have on your form? Seems like an object is missing
  23. Thread: DB Problem

    by iagina
    Replies
    4
    Views
    1,044

    Re: DB Problem

    Halo,

    This is what is happening!


    This can be done by creating the following in your form



    Set rsTableInDB = New ADODB.Recordset
  24. Replies
    3
    Views
    757

    Re: Conditional Dataenvironment

    Someone once gave me a hint here that if you want success in creating reports, create them in the folder that your application will be installing to on the FINAL computer. So if, say, you will be...
  25. Replies
    1
    Views
    20,318

    Re: How to use OLEDB in VB6.0

    I wish I had my VB installed but the system just crashed, here is some code to start you off.

    Place this code in a module



    Option Explicit

    Public Cnn As ADODB.Connection
    Public Rs As...
Results 1 to 25 of 107
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured