|
|
Not if he's trying to interact with a webpage in a winforms app.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I assume you mean you have this code in a webbrowser control and want to automate clicking it ? If it's a specific page, why do you need to automate it ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I want to click this button Follow twitter in webbrowser
|
|
|
|
|
You just repeated your question.
You'll have to explain what / why you want to do.
There are to many unknowns.
The web browser is incorporated into your prog? (I'm guessing no)
The page is one you wrote? (I'm guessing no)
...
|
|
|
|
|
Tom Deketelaere wrote: There are to many unknowns.
Send for Dick Cheney!
Panic, Chaos, Destruction.
My work here is done.
|
|
|
|
|
I don't mind that English is not your first language, but when I ask for more info, I am telling you that what you told me is not enough for me to help. Don't repeat it, I can read. Actually try to answer the questions I asked, or I just cannot help.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I need to design my own control by combining panel and richtextbox control in vb.net. I hav googled to find abt combining two custom controls but found nothing relevant. Can anyone plz tell me how to start this?
|
|
|
|
|
add --> New item --> user control
What do you mean with combining two controls??
|
|
|
|
|
I want richtextbox to behave like a container so that i can add childcontrols to it.
|
|
|
|
|
just make a usercontrol
put the richtextbox and all the other controls on it
then you have your custom control
|
|
|
|
|
Sorry for late reply. I will try that.
|
|
|
|
|
hi every body.
I want to ralate two datatables in a dataset then call a quary on that.
please help me how to do that.
i can wrote a realation like this:
ds.Relations.Add(ds.Tables("firstFile").Columns(cmbPercode1.SelectedItem.ToString), _
ds.Tables("SecondFile").Columns(cmbPercode2.SelectedItem.ToString))
please help me . thanks so much.
|
|
|
|
|
Have you *tried* to do a standard SQL SELECT query against the data using the relevant JOIN between on the columns in the two tables?
|
|
|
|
|
I need free dropdown checklist control to b used in .Net 2003.
|
|
|
|
|
I am using VS.net 2005. I hv created reports using 2005 and crystal reportviewer for displaying reports. Report displays fine but it displays very slowly. I mean to say, for a normal rpt where there is no calc also it takes 3 to 4 mins to display. Whereas the display rate is fast as compared to client machine.
Any specific reason about it?
Solution will be highly appreciated.
Thanx
Shailesh
|
|
|
|
|
Does this always happen when opening a report or only the first time?
Reason for asking is that the first time you open a CR the runtime gets loaded and this takes some time (although 3min is very long), after that it should go fast.
Another reason might be your connection.
|
|
|
|
|
Is there a way to use data that is created from a combination of the current DataGridView cell and a math function carried out by vb, to enter the new adhoc data into the cell and refresh the datagridview to reflect this new data combination?
|
|
|
|
|
Most DGV are populated by binding them to an underlying list (List<t> or data table/view) you could add an extra column to the list and populate that column with the results of your function.
How are you populating your DGV.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Thank you. In fact that is just what I ended up doing, on the fly so to speak.
Larry
|
|
|
|
|
hi all
pls help
I haved used a VLOOKUP to select the field i require, however i need to select all fields that appear in this column and put them in a table. VLOOKUP will only selects the first cell in the column where this data appears. How can i get it to loop round all of them?
veon
|
|
|
|
|
Use the following code as a starting point ...
totalrows = ActiveSheet.UsedRange.Rows.Count
For i = 1 To totalrows
MsgBox(Sheets("Sheet1").Cells(i, 6))
Next i
|
|
|
|
|
hi thanks a lot for the help
is there anyway to copy the data in sheet1 to a new spreadsheet. hmm its like using a code to create a new spreadsheet and generate the data from sheet1 to it. but it only generate selected column not all column is it possible to do it in excel 2000
thanks
veon
|
|
|
|
|
You need to modify a little, the code snippet that David Mujica gave you
Something like that:
totalrows = ActiveSheet.UsedRange.Rows.Count
For i = 1 To totalrows
'MsgBox(Sheets("Sheet1").Cells(i, 6))
Sheets("Sheet2").Cells(i, 6)=Sheets("Sheet1").Cells(i, 6)
'or whatever
Next i
Shay Noy
|
|
|
|
|
Here is a code snipet to create a new workbook from VBA.
Dim Wk As Workbook
Set Wk = Workbooks.Add
Application.DisplayAlerts = False
Wk.SaveAs Filename:="C:\Temp\demosheet.xls"
|
|
|
|