Search:

Type: Posts; User: IHappenToBe'

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. VB6 + Mschart: HELP. Titles not easy to red / how to change resolution?

    Hi there.
    Please look at these pictures.
    The data titles are very difficult to read.
    Maybe I can change the resolution of mschart or something?

    123101123103123105
  2. Re: [RESOLVED] [vb6] How to insert a tabspace in Word Object?

    Apparently, the tabspace were right, they were succesfully passed from the textbox to the Word Object. The tabspaces didn't match my previously-set tabs in Word because I was setting them inside the...
  3. [RESOLVED] [vb6] How to insert a tabspace in Word Object?

    Hi.

    I have a textbox that I filled like this:

    TextBox = "1" & vbtab & "2" & vbNewLine _
    & "3333" & vbtab & "4"
    (I previoulsy fixed the tabs positions, but that doesn't matter...
  4. Re: VB6 + WebBrowser + GoogleMaps: It tries to download the image

    Wow, Olaf... I'm speechless! Your control is so simple and powerful!
    I've been trying to use dinamic maps with VB6 for the last whole year and I just couldn't make it work, and I've found A LOT of...
  5. [RESOLVED] VB6 + WebBrowser + GoogleMaps: It tries to download the image

    In most of computers (mine included), a WebBrowser where I execute:

    WebBrowser1.Navigate "http://maps.googleapis.com/maps/api/staticmap?&size=125x125&center=" & AdressAndSomeOtherParameters
    ...
  6. Replies
    71
    Views
    94,677

    Re: Resizing form and textboxes ...

    I know it's a very old post, but since it's not marked as resolved, and last entry was 2012, and my question is usefull: here I go.
    I continued this post here:...
  7. [VB6] Experiments with Resizing and Screen Resolutions (Help needed)

    Hello.

    I've been searching for help on this topic and I found and read entirely this helpful thread: http://www.vbforums.com/showthread.php?138280-Resizing-form-and-textboxes/page2.
    In answer...
  8. Re: [VB6] Unbinded ADO: One connection or one connection per recordset?

    Great! Thank you so much, si_the_greek
  9. [RESOLVED] [VB6] Unbinded ADO: One connection or one connection per recordset?

    Please, help me with this doubt:
    Which one would you recommend?

    Option A: (one connection)

    Dim cnn As New ADODB.Connection
    Dim rst1 As New ADODB.Recordset
    Dim rst2 As New ADODB.Recordset...
  10. Re: VB6: Heavy form's controls load slowly and chaoticly

    By the way:
    1) setting Form.Autoredraw to True or False does nothing.
    2) I don't post the code because it's humongous
    3) I reduced the unwanted effect by:
    a) refreshing the form in some points...
  11. VB6: Heavy form's controls load slowly and chaoticly

    My problem ocurrs both in Windows XP and Seven, both throught VB6 and compiled, both in slow and fast computers.

    In my software, when it has "heavy" forms (with much much controls), they are...
  12. Re: SQL: Add programtically field to query?

    Ok, thank you very much! I didn't know the word was "VIEW", I looked it as "query" and couldn't find anything.
    Resolved.
  13. Re: SQL: Add programtically field to query?

    Perhaps we're talking about different things? Let's start fresh.
    Instead of creating queries using SQL, I created querys directly in MS Access, so it's much easier to open them in VB6. (See image)...
  14. Re: SQL: Add programtically field to query?

    I also tried:
    ALTER TABLE query ADD table.field
    ALTER TABLE query ADD table_field
    ALTER TABLE query ADD table field
    ALTER TABLE query ADD field table

    always raises Run-time error 2147217900,...
  15. Re: SQL: Add programtically field to query?

    Yes, like techgnome said, I thought it's the easier way to call a SQL command.

    So far, I'm having to use teamviewer to access my clients computer, I send an empty database, I open the empty...
  16. Re: SQL: Add programtically field to query?

    Answers:

    then you need to drop the existing query and re-create it => Ok, I don't mind how it's done, as long as it's possible.

    you can't just add fields to a query? => Trought MS Access it's...
  17. [RESOLVED] SQL: Add programtically field to query?

    Hi. I've investigated a lot and couldn't find an answer.

    I'm using VB6, but I think it's irrelevant, since I'm looking an SQL instruction.
    For tables, I use:

    rs.open "ALTER TABLE table_name...
  18. Re: [RESOLVED] [vb6]. I can ADD field, but can't MODIFY field.

    SOLVED. I began trying random commands until I wrote:
    Adodc1.Recordset.Open "ALTER TABLE conceptos ALTER COLUMN test text(240)", , adOpenDynamic, adLockOptimistic

    and it worked! :)
  19. [RESOLVED] [vb6]. I can ADD field, but can't MODIFY field.

    If I do:

    Adodc1.Recordset.Open "ALTER TABLE conceptos ADD test text(250)", , adOpenDynamic, adLockOptimistic
    it creates the field perfectly. But If I do:


    Adodc1.Recordset.Open "ALTER TABLE...
  20. Re: How to prevent VB6 from hanging while refreshing remote database?

    :D Thank you, Doogle! That was EXACTLY what I needed. It doesn't hang anymore.
    Thank you very very much
  21. Re: How to prevent VB6 from hanging while refreshing remote database?

    Well, I've found this: http://www.codeproject.com/Articles/5503/Asynchronous-processing-Basics-and-a-walkthrough-w
    about making asynchronous processes in VB6. I'll explore that.
  22. Re: How to prevent VB6 from hanging while refreshing remote database?

    I'm using VB6, that's not VB6.
  23. Re: How to prevent VB6 from hanging while refreshing remote database?

    Well, I'm not proud of it, but it's not a teenagers chat, it's like a really slow chat, more like messages, so it's ok.
    And I searched and tried a lot to make a proper chat using me as Server, the...
  24. Re: How to prevent VB6 from hanging while refreshing remote database?

    Ok, I'll try. I've never created an Active EXE, but I'll try.


    It doesn't matter. 1 or 100, it's the same delay. About 1 second. I've try using code, it's the same thing... well, more delay,...
  25. [RESOLVED] How to prevent VB6 from hanging while refreshing remote database?

    Hi everyone.

    I have this big all-right program, and I want to add to it an ADODC that reads from a remote database (throught a DSN with ODBC) every 5 seconds for read for messages from me or other...
  26. How to recognize if my app was executed as Administrator?

    Hi.
    When I run my software (exe) in Win7, I need the user to execute it as Administrator.
    So I need my software to recognize if it was started as Administrador, so if it was not, it ask the user to...
  27. Re: Remote SQL sintaxis different from local one?

    Sorry. I resolved it. I don't know, I re-opened visual basic and it worked fine... VB6 has its flaws too...
  28. [RESOLVED] Remote SQL sintaxis different from local one?

    Hi.
    I've always used AdoDC for accesing local database with no trouble at all.
    Now I'm accesing a remote database in a server, using ODBC connector. It works fine as long as I don't use SQL...
  29. Re: [VB6] Font and positioning problems on Win 7

    Waw, thank you! The real solution seems to be hard, (and all that code is in VB.net, I think). But at least, for now, I can bypass the problem by asking them to set the DPI to 100%. :)
  30. [RESOLVED] [VB6] Font and positioning problems on Win 7

    Hi!

    First of all, I'll start saying: my vb6 aplications run almost perfectly on Win7.

    But... Out of 40 PC running my software, 20 of them are running perfectly in Win XP, 17 of them are running...
  31. Replies
    10
    Views
    21,135

    Re: [RESOLVED] [VB6] upload file to Dropbox

    Because I wanted my software, which is in many other PC, to add a file to my Dropbox account instead of uploading it to a server.
  32. Replies
    10
    Views
    21,135

    Re: [RESOLVED] [VB6] upload file to Dropbox

    Now I get why I was having so much trouble.
    For a moment I thought it was brilliant to replace my ftp server with Dropbox... now I see it was a poor illusion. I'm going back to ftp server.

    Thank...
  33. Replies
    10
    Views
    21,135

    Re: [VB6] upload file to Dropbox

    I mean, it's very easy to GET from ftp and http.
    I also can PUT to ftp very easy... It should be easy as well to PUT to http!

    PS: I don't need to use Inet, I can use any way to upload to https
  34. Replies
    10
    Views
    21,135

    [RESOLVED] [VB6] upload file to Dropbox

    Hi.

    How can I upload a file to my Dropbox public folder (https)?

    I can download perfectly with Inet and this function:

    Public Sub DownloadFile(strURL As String, strDestination As String)
    ...
  35. VB6. How to know if a Form is visible without loading it

    Hello!

    I have this project with many forms, opening, hiding, unloading, etc...
    I want to add a cautionary process that watch if no form is showing, so it makes the main form show.

    How do I do...
  36. Re: VB6 + Word: How can I avoid margin warning messages?

    Unbelievable, talk about a shot in the dark!! Here is what I stumbled across on MSDN site when looking for anything related to this problem, works like a champ! ..........Thanks for the responses

    ...
  37. [RESOLVED] VB6 + Word: How can I avoid margin warning messages?

    Hello!

    I have a software already running in several enterprises.
    The thing is, when I send MIcrosoft Word to print, sometimes (depending on the client's printer) sometimes Words raises a warning...
  38. Re: [RESOLVED] HELP, this is killing me! Language issue? VB6's fault?

    Great! Thank you all so much. I love the fact that people can count with real people for solving their problems, inmediatly and for free.
    John Lennon would be proud :D
    I'll "pay it foreward", so...
  39. Re: HELP, this is killing me! Language issue? VB6's fault?

    Ooohhhhhh!!! That's it, Welshman!!
    Control was inside a Tab control which was inside a hidden frame (in addition, the tab control was showing a different tab)

    So the control was't willing to...
  40. [RESOLVED] HELP, this is killing me! Language issue? VB6's fault?

    I can't believe this.
    I had this huge error and I couldn't find the cause. Then I went step by step and I found the cause of problems is this:


    Debug.Print TextContr(10).Visible 'It says: False...
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width