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

Search:

Type: Posts; User: Hack

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,350

    Re: Application.FileSearch

    Application.FileSearch was removed starting with Access 2007 and was not replaced with any built in functions. The only way to accomplish this recursive type of search is through code.
    ...
  2. Replies
    5
    Views
    73,135

    Re: How do you modify Logging Out of SharePoint?

    Before doing anything else you must remember that is SharePoint limited in the role of portal. In fact, it is a poor excuse for a portal although many, many IT departments within companies use it...
  3. Replies
    5
    Views
    73,135

    Re: How do you modify Logging Out of SharePoint?

    Are you using SharePoint designer on your site(s) and are you familiar with using ASP.NET?
  4. Replies
    4
    Views
    1,430

    Re: how to break For...next Statement loop

    And you should not be using one form for each question. Place all 40 questions on one form and I think your results will be easier to accomplish and the people taking this quiz will be less likely...
  5. Thread: Data Report Issue

    by Hack
    Replies
    1
    Views
    1,339

    Re: Data Report Issue

    What is the error message and what line of code is throwing it?
  6. Replies
    4
    Views
    1,430

    Re: how to break For...next Statement loop

    On what line do you get the error, and under what conditions?
  7. Replies
    1
    Views
    77,335

    Re: Replaceable Parameters In Views

    I think the answer to my question is "No" but there may be some viable alternatives.

    I will post whatever I find that comes close to working.
  8. Replies
    1
    Views
    77,335

    Replaceable Parameters In Views

    I'm wondering if there is a way to use replaceable filters, or parameters, in SharePoint views.

    For example, I have a document libary with a column called "Expiration Date"

    Part of my job is to...
  9. Replies
    10
    Views
    2,117

    Re: How to Zip a Folder

    That is the link I always give out.
  10. Replies
    5
    Views
    1,990

    Re: VB 2008 Tutorials?

    I wonder what the sky looks like in their world.

    In my world, everyone uses VB

    http://www.google.com/search?hl=en&q=vb.net+tutorials
  11. Replies
    2
    Views
    7,447

    Re: HBA Information using WMI

    What is HBA information?
  12. Replies
    6
    Views
    15,368

    Re: how to draw a hexagon?

    :confused: Why VB6 code in response to a question posted in the C# section?
  13. Replies
    6
    Views
    3,496

    Re: Help with database

    Here is a good start.
  14. Replies
    1
    Views
    762

    Re: Installation setup

    What installer do you plan on using?
  15. Replies
    7
    Views
    1,462

    Re: Reuse form

    How about
    Dim frm As Form

    Set frm = New Form2

    frm.Show
  16. Re: Application-defined or object defined error in Excel VBA from VB6

    lngLast could actually be an integer, but I never use integers. I always use longs.

    lblEstImpAmt is a number amount which is the result of a calculation. It will typically be in the hundreds...
  17. Re: Application-defined or object defined error in Excel VBA from VB6

    I am using this in others Subs just fine. The spreadsheet is being populated by a recordset. Each time the query is run, a different number of records will be returned, so, I will never know how...
  18. Re: Application-defined or object defined error in Excel VBA from VB6

    The line on which the error occurs is highlighted in yellow. Just scroll down a mite. :)
  19. Application-defined or object defined error in Excel VBA from VB6

    I am getting an "Runtime error 1004 Application-defined or object defined error" on the highlighted line when I run this sub
    Private Sub PrintIssues()
    Dim i As Long

    Set objExcel = New...
  20. Thread: VB6 vs VB.NET

    by Hack
    Replies
    27
    Views
    9,596

    Re: VB6 vs VB.NET

    I'd love to get into .NET but as a commerical developer, I'm stuck with VB6 because all of the products we make and sell are written in VB6, and non of our customers has, as yet, expressed any desire...
  21. Thread: Date Format ?

    by Hack
    Replies
    2
    Views
    1,665

    Re: Date Format ?

    Welcome to CodeGuru. :wave:


    How did you do it in PL/SQL?
  22. Replies
    2
    Views
    1,387

    Re: upgrade VB6 to VB.Net w/Access

    The easiest and least painful solution is to rename your fields and put underscores where there are now spaces.

    I just tested this on an Access database and you will not lose any data.
  23. Replies
    3
    Views
    1,180

    Re: Adding arrays between forms

    Another possibility, and one that I've used on many occasion, is to employ the use of the ParamArray keyword.

    This can be very handy when dealing with controls that are NOT in a control array.
  24. Replies
    7
    Views
    1,235

    Re: Check for existing file before saving

    Try this
    Private Sub cmdSave_Click()
    Dim vbResponse As VbMsgBoxResult
    With CommonDialog1
    .CancelError = False
    .InitDir = "d:\"
    .Filter = "Text Files (*.txt)|*.txt|"
    .ShowSave
    End With
    If...
  25. Replies
    11
    Views
    2,406

    Re: List folders in outlook

    Very cool! :thumb:
Results 1 to 25 of 76
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured