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,
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...
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 =...
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...
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...
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 = " +...
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...
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,
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...
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)))...
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...
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 " the select statment includes reserved word or an argument name that is misspelled or missing"
if any one can...
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
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...
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
:>
Hi there,
i have some code:
dbs.querydefs.Delete "QryAddRegChild"
Set qdf = dbs.createquerydef("QryAddRegChild", 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...
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,
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...
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,
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.