Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by livezone

  1. livezone

    Set focus to textbox in a DataGrid

    Hi, I used the solution from this article. http://aspnet.4guysfromrolla.com/articles/090902-1.2.aspx Thanks
  2. livezone

    Set focus to textbox in a DataGrid

    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...
  3. livezone

    Set focus to textbox in a DataGrid

    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
  4. livezone

    Set focus to textbox in a DataGrid

    Hi, How can I set focus to a text box inside the datagrid. Text box name is "newUPC". Thanks Shafiq
  5. livezone

    Index tag is not found

    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...
  6. livezone

    Index tag is not found

    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...
  7. livezone

    Index tag is not found

    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...
  8. livezone

    Extract from MS Exchange

    Hi xp_readmail reads a mail message from the Microsoft® SQL Server™ mail inbox. But I want to read from a Public folder in Excahnge Thanks Shafiq
  9. livezone

    Extract from MS Exchange

    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...
  10. livezone

    Extract from MS Exchange

    Is there a way to query using select statement as you do with other linked servers? Thanks Shafiq
  11. livezone

    Extract from MS Exchange

    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
  12. livezone

    Download with Image Name

    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...
  13. livezone

    Download with Image Name

    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...
  14. livezone

    Distinct with Orderby

    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
  15. livezone

    Distinct with Orderby

    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)...

Part and Inventory Search

Back
Top