CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: sweet_babylhyn

Page 1 of 8 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    0
    Views
    770

    ITemplate issue

    I created the columns of the grid dynamically where the user can input the value on the textbox. My problem is when I get the value the of every textbox in the grid, i can't find the control but I...
  2. Replies
    0
    Views
    466

    break issue

    I have a gridview which dynamically create ItemTemplate on run time. My problem is I cannot insert break point in every row. Its only working if I have two rows but when more than 2, the textbox...
  3. Replies
    0
    Views
    5,233

    Freeze excel column and rows

    hello guys, I have a problem in freezing the rows and column at the same time. It is working if I freeze the column and rows one at a time but when I freeze them both, only the column will freeze.
    ...
  4. Replies
    4
    Views
    1,719

    Re: Rounding off number

    thanks dannystommen and talikag, for the idea. It works already
  5. Replies
    4
    Views
    1,719

    Rounding off number

    Hello guys,

    How can I get the round off number disregarding the next number specify in length of decimal places in math.round. Example, I want to round off 1.499 to 1.49 not 1.5.

    My program...
  6. Replies
    3
    Views
    5,453

    Invalid relational operator

    Hello guys, I'm using oracle and I got this error "ORA-00920: invalid relational operator"
    in my IF Condition even I'd changed SUBSTR(a.matnr,7,1) = '1' into a.matnr != '1'.

    SELECT...
  7. Replies
    2
    Views
    2,370

    Insert formula in excel

    It is possible to insert formula in excel?

    example =SUM(G14,G32,G40,G48)

    I searched already in google but I cant any sample code. BTW, I'm using MS - Excel 2003.

    Thanks for the help
  8. Stored procedure will export to excel

    Hello guys, can stored procedure can export the data into template on an excel?
    How can I do this?

    Thanks for the help....
  9. Replies
    0
    Views
    4,496

    Export Zedgraph into Excel and Pdf

    It is possible to save the Zedgraph into excel and pdf in Asp.Net. i think it is possible only in win forms not on web. thanks guys
  10. Replies
    2
    Views
    743

    Re: Update the listbox

    Thanks. That's what I'm looking for. I used this in vb.net but I can't remember the syntax.
  11. Replies
    6
    Views
    2,359

    Re: disable the desktop

    Thanks guys. But i find in the net the winLock.dll. Maybe this would the answer to my question.
  12. Replies
    2
    Views
    743

    Update the listbox

    I have a listbox and it add an item when I click the button. My problem is, it doesn't show the item that was added until the process is not yet finish. What I want is that every time I insert...
  13. Replies
    6
    Views
    2,359

    Re: disable the desktop

    How about the icons and folders in desktop? And how about the applications that were open before opening the application. It should be disabled and not to be terminated.
  14. Replies
    6
    Views
    2,359

    disable the desktop

    I tried searching different site asking how to disable the desktop but unluckily they ask me why I would like to do this and not giving hint or idea at all. I hope someone will help me. I'd...
  15. Error in sorting datagridview's columns

    I have a datagridview and all its columns are set to Double Datatype. The problem is when I changed the value of cell and try to sort the column, it shows me an error "Object must be of type Double."...
  16. Re: Hide the true value of datagridview cell

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.DataGridView1.Rows.Add(123.22222, 33333.3221)
    End Sub

    Private Sub...
  17. Hide the true value of datagridview cell

    I just want to ask guys if there is a property of datagridview that will automatically formats the value of each cell but it will go back into original value before the user edits its data. This is...
  18. Replies
    3
    Views
    1,644

    Re: Pop-up alert do not show

    I see it now, there's no problem on my pop-up alert. If I remove the code below, it shows the pop-up alert and the same time my datagridview refresh already. But how can I do this, before it download...
  19. Replies
    3
    Views
    1,644

    Re: Pop-up alert do not show

    Nope, UpdatPanel works only on 3.5. I used only 2.0. What do you think is the problem?
    My Datagridview doesn't refresh also.
  20. Replies
    3
    Views
    1,644

    Pop-up alert do not show

    Hello guys, I'm here again. After a few searched on google, I came out an idea on how to used pop up alert and I'm stuck again...



    Protected Sub btnXML_Click(ByVal sender As Object, ByVal e...
  21. Re: move cursor in selected rows in datagridview

    Me.Datagrid.CurrentCell = me.Datagrid.Rows(i).Cells(1)

    it works fine.... thanks
  22. Re: move cursor in selected rows in datagridview

    Thanks guys, It works perfectly... How about when I search for a record that is placed in the bottom of the datagrid, it will automatically move there so that the user will not scroll the datagrid...
  23. [RESOLVED] move cursor in selected rows in datagridview

    how can i move the cursor of the datagridview on the selected rows on datagridview.

    i used this code and it highlight the rows which matches to txtSearch but the cursor did not move in the...
  24. Replies
    1
    Views
    919

    Re: XML deserialize

    anyone?
  25. Replies
    1
    Views
    919

    XML deserialize

    Hello guys, I have another problem here.... I created a class for the deserialization of my xml.



    Option Explicit On
    Option Strict On
    Imports System.Xml.Serialization

    <Serializable(),...
Results 1 to 25 of 195
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured