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 gkittelson 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: *

  1. a1sifat

    Set caption "Checking" & wait until checking is completed.

    I am building a VFP application which will see whether an ADB(Android Debug Bridge) connection has been established or not. If an ADB connection is established then the thisform.label3.caption will be "Connected" else "Not Connected". Now the application can catch the connection and...
  2. a1sifat

    Array value as label caption

    How do i use array value as a label caption? TIA thisform.label3.Caption= MyArray(2)
  3. a1sifat

    VFP app to check if a USB device is connected or not

    @Mike Yes, the USB device is a Samsung Mobile. If you can provide me some codes for that then that will be really helpful. I looked at the sample application suggested by @Olaf which is closer to what i want to achieve, only problem is that i want my app to detect if the Samsung mobile is...
  4. a1sifat

    VFP app to check if a USB device is connected or not

    I want to create a VFP app that will check if a specific USB device is connected or not. I have one form and two labels. If that specific USB device is connected then it will change the label caption to "Connected" else "Not Connected". I know this can be done by using C# language but i want to...
  5. a1sifat

    Shell execute command that requires textbox value

    @Olaf Working like a charm! Thanks for your help. [thumbsup2] Btw what is the merit of using CHRTRAN instead of STRTRAN?
  6. a1sifat

    Shell execute command that requires textbox value

    @Mike i have figured out the problem, the problem was actually in the textboxes. I did not set the maximum length of those textboxes as a result those variables were carrying values with too much white spaces. Due to those white spaces adb was not responding correctly. So now i decided to use...
  7. a1sifat

    Shell execute command that requires textbox value

    This is the error message which i get after clicking the command button.
  8. a1sifat

    Shell execute command that requires textbox value

    @Mike this is a very basic mobile recharge application. When user inputs customers mobile number, recharge amount and pin and hits the command button then the command button should shell execute this command adb shell am start -a android.intent.action.CALL -d tel:*999*12345678901*50*2568#...
  9. a1sifat

    Shell execute command that requires textbox value

    Hi Mike, thanks for your reply. I edited the post. Please take a look at this updated code. Thanks
  10. a1sifat

    Shell execute command that requires textbox value

    Thanks Olaf, i edited the post.
  11. a1sifat

    Shell execute command that requires textbox value

    I'm developing a simple vfp application which has 3 textboxes(mobile_number, amount, pin) and 1 command button. Command button is to execute a Shell execute command which requires the value of those three textboxes. As an example, if the user inputs 12345678901 in mobile_number textbox, 50 in...

Part and Inventory Search

Back
Top