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 bkrike 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: *

  • Users: greymonkey
  • Content: Threads
  • Order by date
  1. 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,
  2. 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...
  3. 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 =...
  4. 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...
  5. 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...
  6. 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 = " +...
  7. 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...
  8. 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,
  9. 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,
  10. 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...
  11. 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)))...
  12. 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...
  13. 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...
  14. 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
  15. greymonkey

    Page Footer

    Hi there, I have a group in my report which can run over several pages and i want a footer on the last page in that group. is there any what of setting the page footer to only be shown when the group footer is on the page or is there a way of setting the group footer to show from the bottom of...
  16. greymonkey

    Background colour in a continuous form

    Hi there, I have a subform which is showing the records in continuous forms. i am trying to get the background colour to alternate between records so you get a sort of stripy efect. all my efforts so far just change the background colour for every record. any ideas. cheers, GrayMonkey :>
  17. greymonkey

    Qurey Delete/Create

    Hi there, i have some code: dbs.querydefs.Delete &quot;QryAddRegChild&quot; Set qdf = dbs.createquerydef(&quot;QryAddRegChild&quot;, SQLstring) To delete the query and then create it again using a modified sql string. (SQLstring) the trouble i am having is when the query doesn’t exist when...
  18. greymonkey

    Combining two internet connections

    hi there, i have two seperate broadband connections and i am looking for a way to combing the two to create one even faster connection. dose anyone have any idears, cheers,
  19. greymonkey

    Append Query Problem

    hi there, i have an append query: INSERT INTO TblDayChildLink ( ChildRef, [Date], Book1, Book2, Book3 ) SELECT QryAddRegChild.ChildRefNum, #9/29/2003# AS Expr1, TblChildInfo.MonBreakBook AS Expr2, TblChildInfo.MonAfterBook AS Expr3, TblChildInfo.MonOtherInfo AS Expr4 FROM QryAddRegChild...
  20. greymonkey

    Getting a string from a multi select list box.

    I have a multi select list box listing client’s names and I need to get the selected names into the criteria for a query. If you have any ideas or sample code which would sort this problem it would help me a lot. Cheers,

Part and Inventory Search

Back
Top