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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: josie2007
  • Content: Threads
  • Order by date
  1. josie2007

    How to use query string

    I am passing two values using query string like this first value = name second value = 6/12/2007 do I have to put this value within single quotaion? thanks for the help.
  2. josie2007

    Definition

    How do you define the following two methods in a lay man's terminology...without being more tech. :) ClientScript.RegisterClientScriptBlock ClientScript.GetPostBackEventReference
  3. josie2007

    Memory coruption

    I am getting memory coruption on the w3wp.exe. error message and can someone let me know what is and what casued for this to happen? thanks
  4. josie2007

    How to use compare validator

    I would like to use compare validator to compare the values for two dropdown controls. the field that I would like to use is not DataValueField or DataTextField
  5. josie2007

    How to disable paging in gridview using a check box

    Is it possible to add a checkbox where users have a choice to disable or enable the gridview's paging function.
  6. josie2007

    ItemDataBound and gridview

    I believ there is an event called ItemDataBound for datagrid and I am just wondering what is the equivalent event for gridview
  7. josie2007

    how outputCache works

    <%@ OutputCache Duration="60" VaryByParam="ddLetting; ddLetting;txtDescription" %> After I add this line of code my paging does not work. I just get stuck until the expiration date to go to the next page. How can I fix this? thanks
  8. josie2007

    authentication mode

    <authentication mode="Windows"/> Do I need this in my web.config file I am not doing any authentication. here is my web.config file and could you correct me if you see unnecessary file there. thanks \Windows\Microsoft.Net\Framework\v2.x\Config --> <configuration...
  9. josie2007

    How to clear cache

    I am putting mydata set in cache and I would like to clear it when I change the selection from the dropdown.right now even if I select different value it won't change. I have to close the application and open it again Sub BindLetData() Dim Source As DataView Source =...
  10. josie2007

    Formatting

    My date field is formatted like this {0:MMMM dd, yyyy} and the result looks like this April 27, 2007.Is it possible to format and get the out put like this April 27th 2007 instead.How can I format it to get that. thanks
  11. josie2007

    Create a TableAdapter

    I am trying to create a table adapter using the configuraion wizard and I am trying to select the existing prodedures but it is grayed out and also to create a new procedure also is disabled...any help would be appreciated.
  12. josie2007

    How custom paging works

    This is my first attempt to work with objectdatasource control. I have a huge number of records to be displayed in the gird view and in order for the result to be displayed fast I am using a procedure where it takes startrowindex and maximumrow in order to display a selected records and so...
  13. josie2007

    Not binding with dropdown control

    For some reason the result from my query is not binding with the dropdown control..any hint would be appreciated Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then lettingDate() End If End Sub...
  14. josie2007

    E-mail distribution list

    Hi all, How can I create an apps where I can send e-mail using the e-mail address I have on my database. this e-mail will be send out to all of them at the same time. Like creating a group e-mail. thanks
  15. josie2007

    TextBox mode

    Hi, I just set the property for text box TextMode to Multiline and I am just wondering if there is a way to remove the vertical scrolling? thanks
  16. josie2007

    passing paramter value to sql statement

    I am passing the paramter value to my sql statement and below is the code I used to pass the value to sql statement. p.contid is a character field.Oracle is the db. thanks ... .Append(" AND P.contid = :ContractNumber ") ... Dim cmdItemDetail As OracleCommand = New OracleCommand()...
  17. josie2007

    Enable Sorting and Paging callback

    I set enablesorting and paging callback property of gridview to true and enable pagint to true.when I try to go to a different page my gridview just disappear on me. any clue? thanks
  18. josie2007

    how can I move the file to a different folder

    how can I move the file that I copied over from the server to a different folder before I apply any formatting to it. I would like to add some extension to it just to differentiate and not to overwrite form the previous one copied over to this folder. this is the file copied from the server...
  19. josie2007

    How to create an EXE file from my VB.net code

    I remember in vb6 you just go to file and create an exe file and you execute it from wherever you want.how can I do this in vb.net
  20. josie2007

    executing exe in vb.net

    The program just does not execute...but when I go run the exe manually it works fine. any clue? Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click System.Diagnostics.Process.Start("C:\Expedite\Gen.exe") End Sub

Part and Inventory Search

Back
Top