Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How can I call a method that is written in textfield when a button is pressed.
You'll have to include a compiler or interpreter for whatever language you're writing in the textfield, call that on the input, passing it whatever data from the rest of your program is relevant, and then run the output of the compilation process. Overall, it's a non-trivial task.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
In the below image, there is an h1 tag. Text says, your policy number is ******. Here, Every-time when i run a new test-case, policy number will change. To get that policy number in testng output. What i need to use the code. I mean how can i getText()
You can fetch the element by its xpath and then get the text from it.
You can do it like:
driver.findElement(By.xpath("//div[#class='columns large-8']//h1[#class='fontFamily-1']")).getText()
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
When I run my Visual Basic program it opens the fourth form, not the first. How can I Make it run from the first form?
You need to set the project's 'Startup form'.
See this article for explicit details:
https://msdn.microsoft.com/en-us/library/aa984318%28v=vs.71%29.aspx?f=255&MSPPError=-2147217396
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I made a simple if condition and if it returns YES then I want to pass between two UIViewControllers, and I can't find the way to do that
without using a UIButton.
How can I do that?
I think the method you're looking for is performSegueWithIdentifier:sender:.
Don't forget to give your segue an identifier in the storyboard.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Ok so I would like to know the difference with Public Subs and just normal Subs. Can normal subs be accessed by another program.
It's not whether they can be accessed by other programs, but whether they can be accessed from other types (Classes/Modules) within the same program.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to hide a control on document save i,e file->save.But no luck.can any body help
Try putting your code in document close event. It should probably work.