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 SkipVought 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. mtek13

    Usinf Multiple forms in C#

    Form frm = new frmPad(); frm.Show()
  2. mtek13

    Usinf Multiple forms in C#

    Well i tried that, no code at all appears on the child form now, and the parent form has timer i disabled it and still same issue.
  3. mtek13

    Usinf Multiple forms in C#

    HI, I am working on a project that has main form that uses the Shellib to Dock to the top of the screen wich is working fine but when i added a new form and now i am trying to open it from a button on the main form it opens it but i am not able to use any control on that new form, it looks like...
  4. mtek13

    Gett9ing input from a serial port

    If you have any program that you know it works it will be helpful to see if my balance has actually problems or its only my coding or configuration
  5. mtek13

    Gett9ing input from a serial port

    Still, it does not work, Sorry.
  6. mtek13

    Gett9ing input from a serial port

    This is actually my code, and i tried different ways and still doesnt work: Private Sub MSComm1_OnComm() Dim Data As String Select Case MSComm1.CommEvent Case comEvSend Data = CStr(MSComm1.Input) End Select Text1 = Data End Sub Private Sub Timer1_Timer() Call MSComm1_OnComm...
  7. mtek13

    Gett9ing input from a serial port

    It still doesnt work, Tha balance i am using displays an error when i am sending strings to it but it does not retrive any bit from it. Mo
  8. mtek13

    Gett9ing input from a serial port

    Hi, I am trying to read the weight from a libra connected to a serial port. If someone knows hoe to do it please reply. Regards Mo
  9. mtek13

    DataReports

    Hi, I am creating a labeling programm that will read a .txt file and then print reports, i am using datareports but the problem i have is that i have to set the datasource, and since i dont have a database i dont know what i am supposed to do to go thru this. If any of you guys has an idea on...
  10. mtek13

    Adding control to an MSFLEXGRID

    Thanks, Do you know how to do it for a list
  11. mtek13

    Adding control to an MSFLEXGRID

    Hi, I have list of items displayed in an MsFlexGrid. But now i want to add a check box and a combo box on each line. I want to know if it is possible? if yes how to do it. ThanX
  12. mtek13

    problem with printing to begining of file

    You opened a file for appending so automatically it will be adding to the end. If you want to add to the top of the file try to read the file first and put it in an array starting from 1, then in position 0 of your array. After that you can output to the file. Mtek13
  13. mtek13

    Focus on load

    function focus(){ form1.name.setfocus } instead of focus put setfocus I tried it it works Mtek13
  14. mtek13

    SQL Statement problem

    Thanks it works
  15. mtek13

    SQL Statement problem

    HI, I am developping a billing program and now i am creating a secuty form in which the administrator of the sytem will be using to enter new users or edit existing users. The problem i am encoutering now is that my SQL statement doesnt work. And i dont know why. The code is the following...
  16. mtek13

    Displaying Html using VB

    Yes a preview button
  17. mtek13

    Set Timer

    To set a timer to run on CMDButton Click Timer1.Enabled = true
  18. mtek13

    Displaying Html using VB

    Hi, I am trying to create a small HTML editor but the problem i dont know wich control i have to use to convert a text to html, means i want to displaythe equivalent of a text entred into a window. Thanx
  19. mtek13

    Dynamic Listing

    Thanks for the help, But the idea is having a dynamic number of lines on each line there is a check box and textbox. Look at it as a webpage that displays a certain number of lines, the number of line is a variable. Thanks
  20. mtek13

    Dynamic Listing

    Hi, I am creating a payroll system and i am supposed to do is to list all transactions not billed yet. The problem i have is i do not know how to list a dynamic list, with a textbox and a checkbox on each line. If you have any idea on how to do it or may be the suitable control that can handle...

Part and Inventory Search

Back
Top