Search results for query: *

  1. M

    Cannot get ID from Combobox Value to Insert into Db

    I apologize for being so vague: Here is the code that calls the DB and populates the combo box. cmd = New OleDb.OleDbCommand("select * from Event", cn) ==> EVENT has RaceID and RaceType Try UnitIDReader = cmd.ExecuteReader If UnitIDReader.HasRows...
  2. M

    Cannot get ID from Combobox Value to Insert into Db

    :)I am using VB.NET express and MS Access. 1. I have a Table named EVENTthat contains: 1. RaceID (1..14) 2. RaceName (50 yard, 100 yard, etc) I populate my cboRace with the Raceame information. User can select the RaceName from the list and then submit it. OnSubmit, I am trying to update...
  3. M

    Help Searching and replacing part of text file

    Hi Kulrom I am still stuck on the issue and I am a lot closer to my Goal, but I cannot get there..If you have time and patience, please help me. I have attached my stle file. In it , I have all my Websites stylesheet params/values. The linesI need to change have */ Martin */; remarked...
  4. M

    Hot can I keep CHECKBOX checked while going from form to form

    Hi JuggaloBrotha Thanks for the help, unfortunately my checked checkboxes are still not persisting between FORM changes.
  5. M

    Hot can I keep CHECKBOX checked while going from form to form

    Hi Paszt Thanks for the response. I can still not get it to work. On Form 1 is a button. click code - dim f2 as form2 f2.show On Form 2 is a checkbox and button. (select checkbox) click code - dim f1 as form1 f1.show When I click again on Form1 button, form2...
  6. M

    Writing Default Button.backcolor color to File

    Hi I have a form with a few objects, mostly buttons.. The buttons have different color backgrounds and foregrounds, depending on which color I choos. question: How can I write the "default" (on form load) colors of button backgrounds and foregrounds to a file?Thanks
  7. M

    Hot can I keep CHECKBOX checked while going from form to form

    I have 2 forms (Form 1 and Form 2) In Form 2, I have a few checkboxes. I check them all. I click on a button that will hide Form 2 and LoadForm 1 Then in Form 1, I click on a button to load Form 2. The checkboxes are empty.... How can I persist checkbox checked while clicking among forms?
  8. M

    Help Searching and replacing part of text file

    Still ned help Hi Kulrom Last thing I promise. I am still learning so I need the last piece of code. How can I build an array that will return only the names of the class #levelTwoNav #levelOneNav #levelabc #levela If you can help me out on that one, I can figure the rest out. Thanks
  9. M

    Help Searching and replacing part of text file

    Writing to CSS...blues ! Hi KulromThanks for the reply. I am still having trouble with it.I have attached a jpg which has a pic of a website whic I will be able to change background and/or text, What ever i change will be saved into an existing CSS file and when the user refreshes the page...
  10. M

    Help Searching and replacing part of text file

    Hi Kulrom Thanks for the code help. I really appreciate it. Our software has a css stylesheet already created and used by our software. I am trying to let our customers/service dept use my VB program to change colors, fonts, etc What I have done is the following. One of the choices of my...
  11. M

    Help Searching and replacing part of text file

    Hi Kulrom Thanks for the reply. What I am doing is the following. I am clicking on an object (Button) and then selecting from ColorDialog a color. The file is a stylesheet, so the button I clicked is a certain object in our software eg text or border, etc So I have now changed the color...
  12. M

    Help Searching and replacing part of text file

    In a file I have the following: #levelTwoNav { height: 20px; background: #177dae; border-top: 3px solid #177dae; /* border-bottom: 1px solid #024F74; */ padding-left: 7px; vertical-align: middle; } #levelOneNav { height: 10px; background: #177dae; border-top: 2px solid #177dae; /*...
  13. M

    HowTo: Add a textfile to a Listview

    I have a textfile that has error logs in it. I am trying to read the file and print the lines in a Listview. My problem is that all the lines are printed in ONE line. I have used the vbclfr and chr(10)+chr(13) and it still is not broken up. Please help. Thanks
  14. M

    ListView - How to update item with changing values

    Thanks It is failing on the line "For each itemX in listview1" Any idea?
  15. M

    ListView - How to update item with changing values

    Hi Do you have an answer for both alternatives?
  16. M

    ListView - How to update item with changing values

    Please help. I have a Listview Direct Size ============= c:\test 1000 Size changes constantly. How do I "update" the item under size (with current value)? Thanks
  17. M

    NEWBIE -> Updating listview item on event change

    PLEASE HELP!!!!!! Updating listview item on event change Refresh did not work. What I am doing is the following. I select 3 directories to watch. I then click on a button to start the watchdog. In the button code, I populate the Listview with the directory.path and directory size. like...
  18. M

    HowTo - Do Action at a specified or selected time

    Hi Please could someone help me. If I want to do an action at 5:00 PM daily (or selectable), how do i do that programmatically? Thank you.
  19. M

    HowTo - Do Action at a specified or selected time

    Hi Please could someone help me. If I want to do an action at 5:00 PM daily (or selectable), how do i do that programmatically? Thank you.
Back
Top