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

Search:

Type: Posts; User: bluesource

Page 1 of 80 1 2 3 4

Search: Search took 1.16 seconds.

  1. Replies
    1
    Views
    3,589

    javascript/chrome onunload issue

    var win = window.open(page,'window','width=270, height=155, left=300, top=200');

    alert('1');
    win.onunload = function()
    {
    alert('2'); ...
  2. Replies
    1
    Views
    741

    ASP.NET validation control

    Hey I need a regular expression for a validation control on my password field:

    Requirements
    Must contain 1 digit
    Entire password must be 6-10 digits

    I have tried this, this ensures 1 digit,...
  3. Replies
    1
    Views
    1,708

    No postback on button click

    I have a 2.0 ASP.NET web form. I am using VB.NET. I have a web server button control on the form, btnSubmit. I also have a lot of server validation controls on the form to validate the fields.
    ...
  4. Replies
    8
    Views
    985

    Re: dll question

    If I run GetModuleFileName within the dll, it returns the name of the dll, not the application that invoked the dll.
  5. Replies
    8
    Views
    985

    Re: dll question

    The form is a part of the dll and a reference to it is passed into the COM exe, but the COM exe is using FindWindow with the application name to see if it exists.

    Unfortunately modifying the COM...
  6. Replies
    8
    Views
    985

    Re: dll question

    This is what is happening.

    1) We have a stand alone COM exe that runs.

    2) Usually an application invokes the COM to do its work. When the application invokes the COM exe it passes in the...
  7. Replies
    8
    Views
    985

    dll question

    In a vb 6.0 dll how can I find the App.Title of the calling application (the application that invoked the dll).

    App.Title only gives me the title of the dll. Do I have to pass this is in as a...
  8. SQLDataAdapter update does not apepar to be working

    I have 2 db's, source and target. I am transferring data from source to target. Source db tables have a few extra columns than target db, but the data transfer must still work seamlessly.

    I...
  9. Replies
    4
    Views
    5,894

    Re: view scheduled tasks

    Thanks for the link, but the the example on the url adds and deletes tasks from the schedule tasks on the computer the application is running on.

    How can I view whether a task is running or not on...
  10. Replies
    4
    Views
    5,894

    Re: view scheduled tasks

    Thanks I'll take a look.
  11. Replies
    4
    Views
    5,894

    view scheduled tasks

    I know this is pretty vague, but is there a way to view whether a scheduled task on a different computer (server) is running or not using vb code?

    Thanks for any help,
    Kevin
  12. Replies
    5
    Views
    844

    Re: time formatting

    Thankyou.

    I just learned our system allows 24:00 as a valid time

    10.19.04 & 24:00:00
    is the same as
    10.20.04 at 00:00:00

    I'll have to code this special case we use.
  13. Replies
    5
    Views
    844

    Re: time formatting

    Right, reguardless, it is not converted to 1200AM either. Apparently the Format function does not work properly? Do I need to write my own code to handle this particular case?

    thanks
  14. Replies
    5
    Views
    844

    time formatting

    I am formatting a string like so:

    .Column("StartTime").Value = Format(clsDateConvert.sShortTime, "hh:mm:ss AMPM")

    This works perfectly most of the time, but if the sShortTime value is 24:00, it...
  15. Replies
    2
    Views
    6,540

    obtain GUID from DLL

    How can I obtain the GUID (class identifier) from a dll using visual basic code?

    Here is how I instantiate the dll class:

    Dim comSched As Object
    Set comSched =...
  16. Replies
    3
    Views
    898

    Re: Visual Basic start-in directory

    Thanks guys, that's exactly what I was looking for... so simple. :thumb:
  17. Replies
    3
    Views
    930

    Re: vb bookmarks

    No, I simply want to use bookmarks. It is a part of the VB IDE so that you can place a marker (bookmark) at any point in your code and then toggle between those points as you wish... as opposed to...
  18. Replies
    3
    Views
    930

    vb bookmarks

    How can I use bookmarks in visual basic? Where do I set to use them in the options?

    I can see the menu for them in vb5.0, but do not know how I got them there. I can't see them at all in vb6.0
    ...
  19. Replies
    3
    Views
    898

    Visual Basic start-in directory

    I need to obtain visual basic code to determine the "start-in" directory. The dir where the project is run from.

    I cannot use the CurDir function because the directory is changed in various parts...
  20. Replies
    5
    Views
    1,027

    Re: String variable

    Thanks that's exactly what I was looking for. :thumb:
  21. Replies
    5
    Views
    1,027

    Re: String variable

    I would consider a valid string anything containing ascii codes 32 - 126.

    1) How do I traverse through each letter in a string?
    2) How do I convert a letter to an ascii code in vb?

    My vb is...
  22. Replies
    5
    Views
    1,027

    String variable

    How can I determine if a String variable contains a valid string? For numeric variables I can use IsNumeric, is there something similar for text?
  23. Thread: load bitmap

    by bluesource
    Replies
    7
    Views
    1,759

    Thanks Wiz, got it working!

    Thanks Wiz, got it working!
  24. Thread: load bitmap

    by bluesource
    Replies
    7
    Views
    1,759

    Thanks, I tried loading my bitmap from the...

    Thanks, I tried loading my bitmap from the resource file I made like this:

    frmProgress.pic.Picture = LoadResPicture(101, vbResBitmap)

    When I run the app, I now get this error message:...
  25. Thread: load bitmap

    by bluesource
    Replies
    7
    Views
    1,759

    Thanks for your responses... there is one prob. ...

    Thanks for your responses... there is one prob. The bitmap cannot be separate from the exe, it must be already loaded in the IDE. Know what I mean?

    So I need 2 bitmaps already loaded in the...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured