Search:

Type: Posts; User: ttsdinesh

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: Need to print data inside Frame control

    Thank u Mr.akhileshbc, Mr.westconn1 and Mr.Hack. I used

    Private Sub Command1_Click()
    Form1.PrintForm
    End Sub
    and solved my problem. Thanks for ur efforts. :wave:
  2. Re: Need to print data inside Frame control

    Mr.Hack, i have changed my mind:(. Now its enough to print the form itself. Help me with code to print the entire form.
  3. Re: Need to print data inside Frame control

    Is there anyway to print only a portion of the form? If so its easy to find the co-ordinates of the Frame and print the entire form within that co-ordinate.
  4. Re: Need to print data inside Frame control

    I want to print only the text boxes. The text boxes are inside a Frame. Atleast if i print the whole frame control, along with the text boxes,its enough.
  5. Re: Need to print data inside Frame control

    Mr.Hack. Thank u for ur help. My 200 text boxes are in the form of 20 x 10 matric. When i use ur code the data in the text boxes are printed one below the other. But i need to print the data in the...
  6. [RESOLVED] Need to print data inside Frame control

    I am designing an application in which i added 200 text boxes into a frame control. On clicking a button, all the values in the text boxes must be printed in a paper by a printer connected to the...
  7. Replies
    7
    Views
    2,963

    Re: Sending PDU message

    Thank u guys. Instead of waiting for modem i froze my program for 500 ms as done below:
    MSComm1.Output = "AT+CMGF=0" & Chr$(13)
    Sleep 500
    MSComm1.Output = "AT+CMGS=48" & Chr$(13)
    ...
  8. Replies
    7
    Views
    2,963

    Re: Sending PDU message

    PDU_DATA is the actual SMS in PDU format. How to make my program wait for "Ok" signal. Do i need to use "Mscomm1.Input" or i have to use "Sleep" ?
  9. Replies
    7
    Views
    2,963

    [RESOLVED] Sending PDU message

    I am doing a code to send SMS in PDU format. The actual code in terminal is:


    at+cmgf=0
    OK
    at+cmgs=48
    > 0011000A8189492114320000A72754747A0E4ACF416110BD3CA783DAE5F93C7C2EBB401B54B12E...
  10. Thread: Send email

    by ttsdinesh
    Replies
    2
    Views
    901

    Re: Send email

    Thank u Mr.Hack. It works.
  11. Thread: Send email

    by ttsdinesh
    Replies
    2
    Views
    901

    Send email

    I am developing a program to send emails in VB6.0. I download lots of program from internet and checked. Most of the program shows "first run STARTTLS" error. Can anybody provide me a code which...
  12. Replies
    3
    Views
    703

    Re: CPU load of a process

    Ofcourse Mr.jmcilhinney, i need to perform the job similar to "task manager". How to use API and WMI?:confused:
  13. Replies
    3
    Views
    703

    CPU load of a process

    I need to find the CPU load of particular process, say for example, firefox.exe. Somebody please help me. Thanks in advance..:confused:
  14. Replies
    4
    Views
    698

    Re: Reading data from COM port

    It is working dude. Thanks lot to CDRIVE.
  15. Replies
    2
    Views
    3,462

    Re: Plain text to PDU.

    Thank u Mr.RhinoBull
  16. Replies
    4
    Views
    698

    [RESOLVED] Reading data from COM port

    Private Sub Command1_Click()
    'look for the setting of your GSM Modem/GSM Phone
    With MSComm1
    .CommPort = 5
    .Settings = "9600,n,8,1"
    .Handshaking = comRTS
    ...
  17. Replies
    2
    Views
    3,462

    Plain text to PDU.

    Can anybody give the algorithm or code to convert text into PDU format(format used in SMS)? Thanks in advance.
  18. Replies
    5
    Views
    598

    Re: Using AT command

    Mr.CDRIVE, its working exactly.. Thanks a lot....:wave::);)
  19. Replies
    5
    Views
    598

    Re: Using AT command

    Thank u CDRIVE. Let me check it out.:)
  20. Replies
    5
    Views
    598

    [RESOLVED] Using AT command

    I want to transfer "ATD 9630254687" to my mobile phone. Can anybody help me with code? Thanks in advance.
  21. Replies
    2
    Views
    547

    VS 2005 Re: Get CPU load in java, using .net

    I am well aware that these both languages are different. But we can create .dll file in .net or VB that access the CPU load. In Java using JNI, we can access that dll file and print the result. But i...
  22. Replies
    2
    Views
    547

    VS 2005 Get CPU load in java, using .net

    I coded a program in java. It follows as:

    class memtest
    {
    public static void main(String[] args)
    {
    double d,e;
    for(d=0;d<100000000;d++)
    {
    e=0;
  23. Replies
    0
    Views
    412

    Get CPU load in java, using VB

    I coded a program in java. It follows as:

    class memtest
    {
    public static void main(String[] args)
    {
    double d,e;
    for(d=0;d<100000000;d++)
    {
    e=0;
  24. Replies
    6
    Views
    2,961

    Re: .net + MSAccess

    U have mentioned the code to read the database. how to write data into database,then?
  25. Replies
    6
    Views
    2,961

    Re: .net + MSAccess

    Mr.Runwithscissors, thank u. i just now tried your tip and its working. i will be back if i need more clarifications.
  26. Thread: network

    by ttsdinesh
    Replies
    2
    Views
    3,776

    VS 2005 Re: network

    Thank u Royal. let me try and get u back
  27. Thread: network

    by ttsdinesh
    Replies
    2
    Views
    3,776

    VS 2005 network

    As winsock, in the case of VB, what is the control or package available for networking in .net?
  28. Replies
    6
    Views
    2,961

    .net + MSAccess

    Can anybody provide me a simple code to connect .net and MSAccess? also provide me the details of where to find ADODB control.
  29. Replies
    1
    Views
    424

    VS 2005 Re: Controlling system processors.

    Nobody knows how to control system process a??? :-)
  30. Replies
    1
    Views
    591

    VS 2005 Dynamic picture loading

    How to load a picture to the form dynamically? also how to load a picture to the picturebox dynamically?
  31. Replies
    1
    Views
    424

    VS 2005 Controlling system processors.

    I want to control all the processes of my system. for instance, whenever i start a new process, my application has to ask me whether to allow it or not. I should have control to either pause, resume...
  32. Thread: All API

    by ttsdinesh
    Replies
    8
    Views
    5,421

    VS 2005 Re: All API

    Mr.jmcilhinney i want to shut down my system, restart, animate the window, animate my own form, and so on. what API should i use?
  33. Thread: All API

    by ttsdinesh
    Replies
    8
    Views
    5,421

    VS 2005 Re: All API

    ok half. i wil look for that. thank u
  34. Thread: All API

    by ttsdinesh
    Replies
    8
    Views
    5,421

    VS 2005 Re: All API

    jin29 neci....!! i am a beginer to vb.net. i struggle in using class and accessing the methods. So can u show me any zip file, so that i directly get an example? i can manipulate that myself
  35. Thread: All API

    by ttsdinesh
    Replies
    8
    Views
    5,421

    VS 2005 All API

    Can anybody show the page where i can get all the APIs used in vb.net? Also i need a program to put my Vb.net program in the startup.
  36. Thread: Start up

    by ttsdinesh
    Replies
    4
    Views
    568

    VS 2005 Re: Start up

    let me try it and will be back
  37. Thread: Start up

    by ttsdinesh
    Replies
    4
    Views
    568

    VS 2005 Re: Start up

    but it will be my comfort if i have a sample program.... can anybody?
  38. Replies
    2
    Views
    472

    VS 2005 Re: Display all files

    ok jmcilhinney. i will search try and will be back
  39. Replies
    2
    Views
    472

    VS 2005 Display all files

    Can anybody show me the code to search all the files in the system? i also need to search it drive-wise.
  40. Thread: Start up

    by ttsdinesh
    Replies
    4
    Views
    568

    VS 2005 Start up

    Can anybody show the codes to add my .net (.exe) file to the startup by adding to registry? i also need to remove it from startup when i need it.
Results 1 to 40 of 52
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width