Search:

Type: Posts; User: Dalceon

Page 1 of 13 1 2 3 4

Search: Search took 0.24 seconds.

  1. Replies
    2
    Views
    413

    Re: Email Text Limit

    doing some informal testing, windows seems to limit a shellexecution to ~259 characters. to lengthen the message you'll probably need to shorten something else.

    just out of curiosity how long of a...
  2. Re: ListView Confusion, Adding and Deleting Images

    I'm a little confused at to your methodology.
    do you not know what the pictures are going to be in advance?

    are users selecting the images?

    if the pictures aren't dynamic then why not just...
  3. Replies
    3
    Views
    1,092

    Re: WM_SETTEXT to Editbox from webpage??

    Megatron,
    you allude to the fact that there may be another way to do this.
    please enlighten me. I have need to write some info into textboxes on a web page.

    Thanks
  4. Replies
    5
    Views
    415

    Re: Setup HTML on CD

    what I was refering to is the html has something like this in it.

    <a href = "..\win9x\setup.exe"> setup </a>

    if you run your mouse over the link, it shows you something like...
  5. Replies
    5
    Views
    415

    Re: Setup HTML on CD

    THE links are fine.
    if it type in the link that's generated (relative paths) into start run, it works perfectly fine.
  6. Replies
    5
    Views
    415

    Setup HTML on CD

    If I create a simple html page to autorun when the cd is installed, it works fine as long as the files remain on my hard drive, but as soon as I burn the cd, the links don't work anymore.

    My...
  7. Replies
    8
    Views
    858

    simplest way I can think of is to use a tab...

    simplest way I can think of is to use a tab delimted files

    first thing on line could be object name followed by variable settings.

    if your objects don't have names, but but are just in an...
  8. Replies
    5
    Views
    736

    that would work great if I could get the ide to...

    that would work great if I could get the ide to open up to access those features.
  9. Replies
    5
    Views
    736

    Visio 2003 and VB 6

    visio 2003 attempts to add a toolbar to the IDE of vb6, and it causes vb to hang when attempting to open.

    Anyone know which registry key I can poke at it to prevent the add in toolbars from...
  10. If I understand your original question properly...

    If I understand your original question properly you can't close the original form and keep the recordset alive. You can hide the form, but if you destroy it, you will destroy the recordset.

    if...
  11. I finially figured out a way to generate the SQL...

    I finially figured out a way to generate the SQL I needed in code and have it be fast. Any type of in statement seemed to be too slow, but joins worked better. Using the code created by the find...
  12. This works, but it puts me back to my original...

    This works, but it puts me back to my original problem of being very slow.

    converting the regular and and or stuff to joins took one query from taking 34 seconds to run to taking just over 1...
  13. I got this part working, now I have one more...

    I got this part working, now I have one more questions.

    I want to give the user the ability to select records based on them not having a particular record in the multitable.

    for example.
    ...
  14. I'll give this a try. I'll have to see how to...

    I'll give this a try.
    I'll have to see how to implement it in code.
    Thanks.
  15. Convert to Select to Faster Joins (Resolved)

    I'll preface this by saying I'm not sure if its possible.

    basically I have a table that has a 1 to many relationship with a bunch of other tables. I've designed an interface so the enduser can...
  16. Replies
    1
    Views
    450

    Nested Select Statement Really slow

    I have the following SQL statement


    Select distinct * from _qryActivities where action_taken_text = 'Drug Added' or activity_id in ( select activity_id from _qryConsults where subjective =...
  17. Replies
    1
    Views
    363

    Changing Access Database Problem

    I'm an idiot nevermind
  18. Replies
    1
    Views
    495

    Enumerate Active Directory Printers

    Has anyone seen an example of how to list all the printers in an AD structure??
  19. Replies
    0
    Views
    415

    Detect Presence of Scroll Bar

    Is there a way to detect the presence of the vertical scroll bar on an MDI form??

    I have a borderless child form to size and I want to make it small enough so that the scrollbar doesn't show.
    ...
  20. Replies
    8
    Views
    940

    Column Reorder Crashing IDE

    I have a program I work on using two different pc's bothing running windows xp.

    On one machine if I try to drag a listview column header to reorder it, it crashes the vb ide immediatley with no...
  21. Replies
    6
    Views
    420

    I will agree with the bomb. I always use...

    I will agree with the bomb.

    I always use Option Explicit.
    Someone working on your program after you will appreciate it.
  22. Replies
    2
    Views
    465

    Microsoft Access or Code?

    I'm debating on which way to perform a task.

    I'm working on a program that generates a large report.
    the big report is done all in code, no dependency on access.
    Basically the report is a bunch...
  23. Thread: Access or Code

    by Dalceon
    Replies
    1
    Views
    356

    Access or Code

    I'm debating on which way to perform a task.

    I'm working on a program that generates a large report.
    the big report is done all in code, no dependency on access.
    Basically the report is a bunch...
  24. what?? start over again, and post some example...

    what??
    start over again, and post some example code or error messages
  25. Thread: Why error

    by Dalceon
    Replies
    2
    Views
    407

    try this instead. I'm assuming you're using DAO...

    try this instead.
    I'm assuming you're using DAO



    Private Sub Form_Load()
    Set db = OpenDatabase("BIBLIO.MDB")
    Set rs = db.OpenRecordset("Select * from Authors",dbOpenDynaset)
    End Sub
  26. having a hard time understanding what you want. ...

    having a hard time understanding what you want.

    In short what I can figure is you're using some type of join, but you can't update joined recordset.

    Explain more of what it is you're trying to...
  27. Replies
    2
    Views
    435

    did he use your setup program and install all...

    did he use your setup program and install all proper versions of the dll's that you used to create the program??
  28. Replies
    6
    Views
    579

    You should also try to make as many serverside...

    You should also try to make as many serverside stored procedures and views as possible to return the basic data.

    In my experience it speeds up data fetches.
    you should create a view that returns...
  29. Thread: Functions

    by Dalceon
    Replies
    2
    Views
    453

    you could also pass the function 15 by ref...

    you could also pass the function 15 by ref variables and don't return anything

    Private a Function(InputVariable, retInt1, retInt2, retInt3 . . .)

    will save you the trouble of having to parse a...
  30. Replies
    11
    Views
    847

    I'm bit confused as to what you are trying to...

    I'm bit confused as to what you are trying to accomplish.
    show me an example of input and expected output.
  31. Replies
    1
    Views
    402

    you may want to make a version of the program...

    you may want to make a version of the program that writes time values between statements to a log file then compare which lines are actually taking the most time.

    Once you know the lines, you can...
  32. Replies
    5
    Views
    592

    as for what's wrong with this code, this line: ...

    as for what's wrong with this code,
    this line:


    r = Int((Len(Text2.Text)) * Rnd)



    should probably be
  33. Replies
    5
    Views
    592

    what is the point to this code??

    what is the point to this code??
  34. Replies
    6
    Views
    501

    This should do everything you need. I'm really...

    This should do everything you need.
    I'm really getting some use out of this random code.
    the only thing left to do is set your label caption
    One problem with your code is you could end up with...
  35. Replies
    2
    Views
    398

    In the famous words of John from "the Daily show"...

    In the famous words of John from "the Daily show"

    Whaaaaaaaa??
  36. Thread: coding prob

    by Dalceon
    Replies
    3
    Views
    442

    ha ha I know what your problem is. do the math...

    ha ha I know what your problem is.

    do the math on this.


    355355355355355 / 5
    or
    350350356352355 / 5

    do those #'s look familiar??
  37. Thread: VB6 being dumb

    by Dalceon
    Replies
    42
    Views
    2,134

    I personally would take all the data and dump it...

    I personally would take all the data and dump it into a database first, then do the searching. Doing it straight from the textfile is tedious. Once you put it in the database, you can always check...
  38. Thread: random Strings

    by Dalceon
    Replies
    7
    Views
    682

    Try this out: you can test it out by doing...

    Try this out:
    you can test it out by doing something like
    msgbox RandomizeString("Hello")



    Private Function RandomizeString(ByVal TheString As String) As String
    Dim tmpreturn() As Long
    Dim...
  39. Replies
    19
    Views
    1,364

    he he!

    he he!
  40. Replies
    4
    Views
    510

    What's the difference

    What's the difference in doing these.




    Dim x as String

    'or

    Private x as String
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width