Forum: VB.NET Jul 14th, 2009 |
| Replies: 11 Views: 1,038 Sonia -
Thank you so much for your help!
This is what I was looking for... works great.
Thanks!
ypdev |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,038 I have four labels which is three commas..
Now, how to put the values? can you paste an example please? |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,038 Yes... string can be 1,2,3 or 33,567,89 or aa,bb,4 and so on... |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,038 Thanks Sonia.. couple of questions:
1. I need to assign it to four lables, you just send it to MsgBox which is one single string... I don't need it like that.
2. I getting an error when trying... |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,038 Yes, basically the GetStr is a function which generate a string like:
1,34,579,77356
Then I split it and assign it to labels:
1
34
579 |
Forum: VB.NET Jul 12th, 2009 |
| Replies: 11 Views: 1,038 Hi All,
In the below code I take a string and split it, then assign it to a "Label" object.
On my computer it works great but when I "Publish web site" I recieve the .NET error messages "Object... |
Forum: JavaScript / DHTML / AJAX Jul 5th, 2009 |
| Replies: 1 Views: 980 Hi,
I am trying to validate textbox inside gridview footer template as the following:
<script language="javascript" type="text/javascript">
function validate(obj)
{
if... |
Forum: VB.NET Jul 5th, 2009 |
| Replies: 3 Views: 1,881 For those who needs the same solution:
I found a VB function that "convert" 'response.redirect' to popup window...
Public Sub Redirect(ByVal url As String, ByVal target As String, ByVal... |
Forum: VB.NET Jun 11th, 2009 |
| Replies: 3 Views: 1,881 I understand but when I redirect the query response to anotherpage.aspx instead of "popup" (window.open) it works fine and the string is as I typed it.
I am trying to understand what is the diff.... |
Forum: VB.NET Jun 10th, 2009 |
| Replies: 3 Views: 1,881 Hi,
I am trying to pass query string from one page to popup window as follow:
Dim popupScript As String = "window.open('cFinder.aspx?cName=" & c_TextBox.Text & "','',... |
Forum: JavaScript / DHTML / AJAX Feb 7th, 2009 |
| Replies: 9 Views: 3,092 Thank you so much 'Fungus1487' - it is working properly now! |
Forum: JavaScript / DHTML / AJAX Jan 31st, 2009 |
| Replies: 9 Views: 3,092 I changed the JS per your suggestion, but now the confirm window prompt for each control. let's say if I have 30 controls - the confirm window prompt 30 times...
Here is the complete JS I am... |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2009 |
| Replies: 9 Views: 3,092 Good start... if the user select first or second control, the confirm window prompt once.
If the user select the third control or other controls (not 1 or 2), the confirm window prompt twice before... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 9 Views: 3,092 Finally I found something very similar to what I am looking for, but
now I need your help to disable loop.
Basically I need to validate only once, if the user click OK
then I don't want the js... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 9 Views: 3,092 Thanks for your help but your example is more relevant for text field.
The control I am using is 'RadioButtonList' which in my case has more than one 'input' controls that assigned to differente ID.... |
Forum: JavaScript / DHTML / AJAX Jan 18th, 2009 |
| Replies: 9 Views: 3,092 Hi,
I am trying to validate RadioButtonList (ASP.NET) using the following js function but for some reason it does not working properly. I can't get the ID of the control as I would be..
Can you... |
Forum: VB.NET Aug 20th, 2008 |
| Replies: 0 Views: 786 Hi All -
I would like to update extensionAttributeX of a user account based on Excel sheet.
Any idea how to use the SELECT command with INNER JOIN option or other technique ?
Thanks... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 2 Views: 1,386 Great, that is what I was looking for....
Thanks a lot. |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 2 Views: 1,386 Hi,
Does anyone know how to change the date format on the calendar components?
The default is MM/DD/YYYY and I would like to change it to DD/MM/YYYY
Thanks... |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 4 Views: 6,793 Ok, I found the final solution... here is the code...
Protected Sub SaveOrder_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles SaveOrder.Click
Dim str As String... |
Forum: VB.NET Jul 17th, 2008 |
| Replies: 4 Views: 6,793 Thanks Jx_Man but it is the same what I am doing today, I need to get the data from selected rows only to a string each time.
For example I have a list of people and the user selects 3 of the... |
Forum: VB.NET Jul 15th, 2008 |
| Replies: 4 Views: 6,793 Hi Guys,
I've got a code that basically storing data from several controls, one of the control is GridView. when I "Submit" I get all rows from GridView and I need only the selected rows..
I've... |