Search

You searched for the word(s): userid:716956

Matching Posts

  • Re: SOS -- Debugger not working!

    Hi, I was having the same problem but in my case, I was using IE8, so if you are using IE8 then this link may just help: http://dpotter.net/Technical/2009/05/upgrading-to-ie8-breaks-debugging-with-visual-studio-2005/ Hope that helps.
    Posted to Getting Started (Forum) by mmmisa83 on 9/17/2009
  • Re: Breakpoint not work

    Hi, I was having the same problem but in my case, I was using IE8, so if you are using IE8 then this link may just help: http://dpotter.net/Technical/2009/05/upgrading-to-ie8-breaks-debugging-with-visual-studio-2005/ It worked for me. Hope that helps.
    Posted to Visual Studio 2005 (Forum) by mmmisa83 on 9/17/2009
  • How to programmatically delete row in excel?

    Hi, I found out there are ways to Select, Insert, and Update Excel file by using OLEDB. But the limitation is that we can not delete a record. My idea is to delete row (instead of record). The question is how to programmatically delete row in excel, by id selected? For example, I have the following Excel records: id total(RM) 1 1000 2 3000 3 2500 4 4200 I want to delete the row where id = 3. I can grab the id, but have no idea how to delete the row which contains the id 3. Please help. TIA.
    Posted to Visual Basic .NET (Forum) by mmmisa83 on 7/8/2009
  • Re: Problem Calling Function A In Funtion A

    Thanks anders__f for replying. But I dont think that would solve the problem, it instead will cause infinite looping because "Return RandomizeNo(totalLot)" keeps calling the function. This function returns intLot, if the value of intLot is not 5. Otherwise the function will be called. Any other suggestion? Thanks again.
    Posted to Visual Basic .NET (Forum) by mmmisa83 on 7/5/2009
  • Re: Problem Calling Function A In Funtion A

    Ah, I think you are right. Your first reply suggests to change line 16 to Return RandomizeNo(totalLot) but what I did was changing line 19 with the suggested code. That's why it caused infinite looping LOL. Yes, both snippets below work. If randomizeAgain = True Then Return RandomizeNo(totalLot) End If Return intLot If randomizeAgain = True Then Return RandomizeNo(totalLot) Else Return intLot End If Actually I modified/simplified the function a bit to make it easier for readers to see the function
    Posted to Visual Basic .NET (Forum) by mmmisa83 on 7/5/2009
  • How to keep programmatically added controls after postback?

    Hi, I create a listbox control in runtime and at the same time add items to the listbox. Since this listbox is created in runtime, the moment the page reloads/posts back, the added control and its items are cleared. The question is how to keep the control and those items after postback? Any help/suggestion would be greatly appreciated. TIA.
    Posted to Web Forms (Forum) by mmmisa83 on 4/21/2009
  • Re: Assigning Value to Programmatically Added Textbox(es)

    Thanks. Paul's codes work. Other replies also help. Thanks again.
    Posted to Web Forms (Forum) by mmmisa83 on 4/20/2009
  • Assigning Value to Programmatically Added Textbox(es)

    Hi, I have this problem: This program adds a number of textboxes (depends on intTotal given by user): For i = 0 To intTotal - 1 Dim newTextBox As New TextBox newTextBox.ID = "txtDetail" & (i + 1).ToString form1.Controls.Add(newTextBox) Next The above code works fine. But when it comes to assigning a value to each textbox in other function, I have no idea. Here is what I want to do: If intTotal = 1 txtDetail1 = "1" If intTotal = 2 txtDetail1 = "1" txtDetail2 = "2"
    Posted to Web Forms (Forum) by mmmisa83 on 4/15/2009
  • GridView Rows.Count Returns 0 When There Are Rows Visible

    Hi, I have this gridview displaying a number of rows of data (from database) on page load. The problem happens when I want to process the data. I make an if condition of if (gvReturnPackage.Rows.Count > 0) { ..... } but the program won't go into the if clause as the Count property returns 0 (but the gridview actually displays those data) in debug mode. Why does this happen? Please help. Thank You.
    Posted to Data Presentation Controls (Forum) by mmmisa83 on 5/26/2008
    Filed under: gridview returns 0
  • Re: Required Field Validator Control Problem

    Thanks for the helpful information. But I am using Microsoft Visual Studio 2003 which I believe the V alidationGroup feature is not included. Is there any other way? Thank You.
    Posted to Web Forms (Forum) by mmmisa83 on 4/3/2007
Page 1 of 2 (11 items) 1 2 Next >