I am still confused.
Text box is in the Footer of datagrid. I can find the control using
If e.Item.ItemType = ListItemType.Footer Then
Dim tb As TextBox
tb = CType(e.Item.FindControl("newUPC"), TextBox)
End If
But I need to focus this text field only when the page reload. Where should...
I know that too.
But the text box in datagird has different id than their actual name
for newUPC the name may be look like
dgrdOrder__ctl2_newUPC. I mean how to find out the control first
Hi,
I may not be able to send the exe file but however I find one piece of information.
The application directory contains a file name
pcmaster.inf
The contents of this file is
[FoxPro 2.0]
MDX1=L:\MyApplicationFolder\PCMASTER.CDX
Is this mean that the cdx file will be in a different...
I don't know if we have the code or not as Append is doing from a menu option. Somehow I found an old CDX file and I throw this file in the directory and then it uploaded the record fine. There was no duplication but still I get the Index is not found error. But as the record loaded ok, I did...
Hi,
I have compiled code which appends the data from a csv file to foxpro table. After the append finish it gives an error message saying "Index tag is not found" Table Name is pcmaster.dbf and I have not found any cdx file there. I have used foxpro 10 years ago and have not much knowlege now...
In our company exchange server I have created an email type form in our Organizational library. This form contains serveral predefined text box and check boxes. I need to get the count of emails generated for that form and also the create date.
I know the Message Class which is...
Hi,
Is there a way to extract exchange data using SQL Server?
I have designed an outlook form in Organizatinal library. I want to get the list of all emails using this form with date sent.
Thanks
Shafiq
Here is the code
Sub DownloadImage(ByVal sender As Object, ByVal e As CommandEventArgs)
Dim ImgURL As String
If e.CommandName = "Download" Then
ImgURL = e.CommandArgument
Response.Redirect(ImgURL)
End If
End Sub
I assign the imgURL...
Hi,
On my aspx page (MyPage.aspx), I am issuing the following commnad
Response.Redirect(ImgURL) ' Where ImgURL is the Absolute Path of the Image
On the image page, if I right click on the image to save it it will try to save it with MyPage.aspx instead of the Image name.
How can I force...
Server: Msg 145, Level 15, State 1, Line 1
ORDER BY items must appear in the select list if SELECT DISTINCT is specified.
And my problem is that I just need to show only one column which is MonthName
Hi,
If I ran the following query it gives me the month name in Alapabetical order like
SELECT Distinct useMonthName FROM dbo.Summary
Apr
Feb
Jan
Jul
I have a column name useYear and useMonth (1,2,3). I still want to use distinct MonthName but want my results to be sorted by useMonth (1,2,3)...
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.