No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
use after split [CODE=VB.NET] For i as Integer = 0 To subString.Count - 1 searchSource.SelectParameters.Item("ContentText" + i).DefaultValue = subString(i) Next [/CODE]
What kind of data are you looking to retrieve?
Judith, You can either do it the way mentioned above if the function you have created has the same signature as the CellBeginEdit Event Handler, or, another easy way to do it would be to call the function at the end of the pre-existing event handler as shown... [code=C#] private …
Can you expand on what you are trying to figure out?
If I am understanding you correctly, you only want to load the form if the command line arguments contain "options". If this is the case, then your best bet is going to be to take your command line arguments check out of Form1 completely and instead put it in the …
sdhawan, if you are trying to access a file on the desktop, then the error lies in your code. Your current file location is pointing directly at the root of the C drive, not the desktop. If the file is in fact in the root of C, then there is …
The reason the label isn't holding the text could be due to multiple reasons. First, in order to access the label object itself, you cannot simply refer to it by name. This is because it is a child object oh the DetailsView object. To access it properly, you would need …
The End.
CFusion