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 strongm 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. clowns119

    Graphic Objects

    how can I create a structore for a polygon?
  2. clowns119

    how to change polygon colors

    Hi all i drew a polygon to a form. It it possible to change the color of the polygon using the mouse down event, if so how? heres my polygon code, their will be 50 diffrent polygons I want to change the colors of each one individually on mouse down event Private Sub MainFormLoad(sender As...
  3. clowns119

    how to do onevent

    Hi all I have a web form and the text in it is being pulled in from another web page using xmlhttpd I want to make an alert box pop up whenever teh text changes. Is this possible? I tried calling onchange from the <form> but it did not work. I think I need to loop through the form maybe but I...
  4. clowns119

    only draw text in first box

    if I do a if statement do I have to have 24 diffrent else if's? or can I do a for statement for my points of the drawstring so the drawstring will appear on top on SZL1VAL?
  5. clowns119

    Which processor to program for on Pocket PC

    Hi, I may be wrong but why can't you just do this /QRarch{4|5}[T] Which should compile for all three target architectures
  6. clowns119

    only draw text in first box

    i tried if x=((SZL1val+12) mod 24) then g.DrawString(SZLWXTXT1, New Font("Veranda",7,FontStyle.BOLD),Brushes.Black,New RectangleF(20, 55, 35, 25)) and it did not work
  7. clowns119

    only draw text in first box

    Ok, but what do I put as my g.drawstring rectanglef coords to make them go over the first box only.
  8. clowns119

    only draw text in first box

    Hi all I have a loop that draws rectangles and I want to draw text only on the first box in the loop. How can I do this, here is my code. It draws the text in each box but I only want it to be in the first box, please help! thanks For x = ((SZL1val+12) mod 24) To ((SZL2val+12) mod 24) ...
  9. clowns119

    link two buttons

    I figured it out, I was setting the definition of the button as publick not the onclick class. Once I switched that it worked like a champ, Thanks for your help!!
  10. clowns119

    Read second line of text file

    How would I read the second or third line down on a text file I know I can use readline to read a file line by line but I can not figure out how to get it to read a specific line
  11. clowns119

    link two buttons

    C:\mission Tracking\MEF\MainForm.vb(220) : error BC30545: Property access must assign to the property or use its value. that is the error I get
  12. clowns119

    link two buttons

    I tried it below and it said that my button was notr declared on form1 I have it declared as public shared I am not sure what I Aa m doing wrong Private Sub UpdaterClick(sender As System.Object, e As System.EventArgs) Handles Updater.Click SZLDLG.SZLCLICK(sender,e)
  13. clowns119

    link two buttons

    Hi I am having a small problom that is driving me a little crazy!! I have 3 forms 2 forms have dubmit buttons on them and when I click a button on my main form I want the events form both those buttons to occur, how can I do this. Please help!
  14. clowns119

    update from password protected database

    I am using access 2003, would I just replace the Opendatabase code with transferdatabase? Set oAcc = New Access.Application Set db = oAcc.DBEngine.OpenDatabase(TMP, _ False, False, ";PWD=doooo")
  15. clowns119

    update from password protected database

    Hi all, I am working on a project and the database i have set up pulls data from another access database. I am using the docmd.transferdatabase command and it is working great, however the database i am pulling from is password protected. I know the passowrd and I want it to be automatically...

Part and Inventory Search

Back
Top