Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: BaDi
  • Order by date
  1. BaDi

    Overflow Error

    Public LocalVar1 As String Public LocalVar2 As String about the SECTION_B thing : This had to be SECTION_A. Type-mistake. Thanx for you help! I hope you can find the cause!
  2. BaDi

    Overflow Error

    -------------------------------------------- Code: Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpString As Any, ByVal lpFileName As String) As Long Declare...
  3. BaDi

    Overflow Error

    Hi! When I start my application, the application reads a few string values from a .ini file into variables. But when the first variable is set and the application wants to fill the next one it says: runtime error 6: "overflow" I can't find the cause of this. Can anybody help? Thanx...
  4. BaDi

    Moving the mouse

    Hi! Here comes my next question!:) I have a button A When I press it, I want to make the button move to button B, click it and then move it to button C and click that one. How do I do this? Thanx in advance!
  5. BaDi

    Changing component properties in module.

    Thanx! That was very helpfull! Now I would like to put the color vbRed in a constant value that will be used through the entire module.. so that I can easily change the value at one place only. How do I put this value in a const.. "vbRed" doesnt work.. Thanx in advance!
  6. BaDi

    Changing component properties in module.

    Hi! I have a timer that makes my components Flash: inititalisation: Private sub Button1_click() Flash_ID = 1 Flash_Timer.Enabled = True Flash_Timer.Interval = Flash_Interval End sub Private Sub Flash_Timer_Timer() MakeFlash (Flash_ID) End Sub MakeFlash is a sub that is...
  7. BaDi

    Checking string on characters

    Hi! I have a string and I would like to check if the string contains a specific word so I can filter the string out if it contains the specific word. Thanx in advance!
  8. BaDi

    Calling a function in a C project

    Thanx! But is it possible that if I have a huge project full of headers and source files that I just open that specific file with that specific function which I need in that huge project and add this: LIBRARY dlltest DESCRIPTION DLL TEST EXPORTS MyMul @1 at the end of the...
  9. BaDi

    Calling a function in a C project

    I am interested! Thanx in advance!
  10. BaDi

    Calling a function in a C project

    Hi! Can someone please tell me how to call a function in a C-project. I know that I have to declare a function like: Declare Function Test Lib "testlib" Alias "TestFunction" (ByVal teststring As String) As string But how do fill this in.. I read something about using ANSI...
  11. BaDi

    Making Button's flashing

    By button has the collor Button Face What is this in VB Language? Something like VbButtonFace or VbGray? Thanx in advance!
  12. BaDi

    Making Button's flashing

    Hi! Does anybody know how I can make specific button's flash by pushing a command - button? Thanx in Advance!
  13. BaDi

    Changing the selected Tab on run-time.

    Hi! I have a tabstrip. And now I want to change the selected tab on run-time by clicking a command button. So that you see that the selected Tab is different. How can I do this? Thanx in advance!
  14. BaDi

    Window not available in Windows

    The handle of my app's window is not avialable for other program's in Windows. Is there a superiour handle I need to use? Is this a familiar problem? Another app needs this windowID for parent/child window purpose. Thanx in advance!
  15. BaDi

    Having VB resizing an external window.

    Hi! Does anybody know how can I change the width property of an random window (not a by VB created window)? Thanx in advance!
  16. BaDi

    Hi! How do I make a window clien

    Thanx! But now, when I do this the external window doesn't really behave like a child window should do. It does minimize when I minimize my form.. only a fraction later. And when I maximize my form again, the external window maximizes first and then my form is placed on top. Also: the external...
  17. BaDi

    Hi! How do I make a window clien

    Ok, this is with child windows created in VB as well. But if I have a window of another app. eg. MSWord I would like to make this window Client of my app's window.
  18. BaDi

    Hi! How do I make a window clien

    Yeah, making the window a child-window. So it wil minimize with my app.'s window.. and stuff like that. Any idea?
  19. BaDi

    Hi! How do I make a window clien

    Hi! How do I make a window client of my application's window? Thanx in advance!
  20. BaDi

    Summing the first bytes of a file

    Thanx for your help! But.. I have tried a couple of ways to open this file for binary read. And then place the bytes into the array.. but it doesn't realy work. Could you please give me an example of how to implement this? Thanx in advance!

Part and Inventory Search

Back
Top