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. greymonkey

    Different Line Font/Colors in ListView box

    Thanks, Works a treat.
  2. greymonkey

    Different Line Font/Colors in ListView box

    Hi All, I have a listview box with 3 coloums in which I am populating the data through a for loop. Is there a way of changing the font or back color of each line? Thanks,
  3. greymonkey

    Retrieving Time Zone Info from the Registry

    impersonation seems to work if you know an Administrator user id and password but as this will be used on a wide range of workstations and each one has a different Administrators password I cant find away of getting it to work. Any other ideas how to retrive a list of all Time Zones? Thanks,
  4. greymonkey

    Retrieving Time Zone Info from the Registry

    Hi there, Does any one know a way of retrieving information from the HKEY_LOCAL_MACHINE part of the Registry if you don’t have Admin Rights. I am trying to get a list of Time Zones and the time offsets from UTC time. I currently have the code: Dim regKey As RegistryKey Const...
  5. greymonkey

    Geting text from a frame in a web browser

    Hi, I have a webbrowser object in my vb app which loads a page which has several frames in it. I am trying to get the text from one frame so I can search it but I cant seem to get it. So far I have: Dim temp as String temp =...
  6. greymonkey

    Clicking a button on a web page

    Hi, I have a button on a form on a webpage which I am loading up using the webBrowser component in VB.net 2005. The page has a form on which I am able to fill in using: WebBrowser1.Document.GetElementById("Name").InnerText = "My Name" but I cant get the clicking the submit button to work. I...
  7. greymonkey

    Using a string for an object name

    Works a treat. Cheers,
  8. greymonkey

    Using a string for an object name

    Hi There, I have a group of RadioButtons and a for loop which run through them checking if they are selected. for i = 1 to numOfButtons tempName = "RadioButton" & i if tempname.checked then do somthing end if next The trouble I am having is that the tempName.checked is not being reconised...
  9. greymonkey

    Populating textboxes

    Hi, I have a couple of combo boxes pulling data from an Access Database. The second combo is running off a DataView which filters the results: Dim tempTable As DataTable = DataSet_Ticket1.Tables(0) Dim tempDataView As DataView = New DataView(tempTable, "TicketGroupRef = " +...
  10. greymonkey

    Need to access multiple tables

    All sorted - Left out the AleDataAdapter.Fill() command on the form_load for the second data set. Cheers.
  11. greymonkey

    Need to access multiple tables

    Hi, I have a MsAccess DB with two tables in (Table A, Table B) and I am trying to have two drop down boxes in my vb.net application showing the date from each table. I have got as far as setting up the connection with the database and setting the OleDbDataAdapter and the DataSet. this all...
  12. greymonkey

    Uploading word doc and inserting text into database

    These PHP functions seem will grab text out of the document fine: fopen() fread() fright() file_get_contents the problem is that they also get all the other characters the doc files have in for the formating. Any ideas for filtering them out. The other option I was looking at is if you use...
  13. greymonkey

    Uploading word doc and inserting text into database

    Hi All, I need to read the text from an uploaded text document and input this into a field on my sql server. I have to code: $story_text = file_get_contents($upfile); which read the document ok but it also includes all of the strange asci codes. Any Suggestions? Thanks,
  14. greymonkey

    The ctr+alt+del Splash Screen on start up

    Hi All, Dose any one know of a way to change the ctr+alt+del logo that comes up when you go to log into a computer. Thanks,
  15. greymonkey

    Problem with list box on a subform

    Hi all, I have a main form with staff details on it and then a sub form with the days off the staff have. I want to have a list box showing all the days off that member of staff has had and then on click go to that record. BUT I can only get the list box to display all days off for all...
  16. greymonkey

    Slight twist on old problem - age from dob

    Hi all, I have this function working out the age from the date of birth and all is working fine. Function Age(Birthdate As Date, Enddate As Date) As Integer Age = DateDiff("yyyy", Birthdate, Enddate) + _ (Enddate < DateSerial(Year(Enddate), Month(Birthdate), Day(Birthdate)))...
  17. greymonkey

    Updating pictures at runtime

    Hi all, I have a tab control with several pages in it. On one of these pages I have a yes/no tick box and I want to display an icon in the page tab next to the page name. You can do it in design mode by changing the picture property of the form but I can’t work out the code to do it at run...
  18. greymonkey

    SQL in Access VB code

    Cheers, works fine. it is always the simple things that you miss after hours of staring at a screen. :>
  19. greymonkey

    SQL in Access VB code

    Hi there, i have this sql code which works fine in a query in access but when I copy it into the vb code to make a query on a button click it comes up with an error saying &quot; the select statment includes reserved word or an argument name that is misspelled or missing&quot; if any one can...
  20. greymonkey

    Multiply time by currency

    Hi there, I have a running sum in the report totalling up the hours and a field with a currency value (hourly pay) The trouble I am having is multiplying the hours by the pay. Any ideas

Part and Inventory Search

Back
Top