Search:

Type: Posts; User: mitkram

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    2,185

    VS 2008 Re: How to create reply options on comments?

    I got your idea now but I'm really new about Ajax technology and not proficient with this yet. Can you give me any sample or links perhaps about using async ajax that will support using the gridview....
  2. Replies
    7
    Views
    2,185

    VS 2008 Re: How to create reply options on comments?

    I'm using nested gridview for saving and displaying comments and replies on my webforms. Reason why I used nested gridview for my comment section page is because I have reply option and I want to...
  3. Replies
    7
    Views
    2,185

    VS 2008 Re: How to create reply options on comments?

    Alright, what I'm looking for is a reply option on my comment page section. For example if I display all my comments in the listview or repeater control below of each comments should have the reply...
  4. Replies
    7
    Views
    2,185

    VS 2008 How to create reply options on comments?

    I have tried creating a comment section page using data controls like listview and repeater control to display comments and I was wondering how to add reply options on it. I want to create a comment...
  5. Jquery more less link code to handle displaying saved link from database?

    Hello all!

    I have a jquery code used to show more or less link for the comments displayed from

    my database. I noticed that this jquery code can't display the link properly that is queried
    ...
  6. VS 2008 How to reset the datapager numeric pager field?

    I'm using datapager in my listview control and I want my datapager
    to always set to default as numeric pager field equals to 1 everytime
    I change the items of the dropdownlist as its pagesize where...
  7. How to enlarge an image by just clicking the listview row?

    Hi everyone!

    I'm using asp.net and I need help in modifying my codes in javascript where I used to display and enlarge image after clicking the listview row. I have tried using image button in the...
  8. VS 2008 Getting the row values of the listview by just simply clicking...

    Hi everyone!

    Is there anybody can give me the exact code on how to get the row values
    of the listview when it is clicked. I don't want to put my listview control
    with buttons like update, or...
  9. How to set border to div element for text formatting?

    Hi, I'm working a comment section page where it allows the user to leave a comment. I need assistance in my layout for displaying the comments into the repeater control. I used to put the comments...
  10. VS 2008 Re: Unable to display image file from my database into the image control using generi

    What do you mean by put some breakpoints on my handler?and how to do that within my codes?Can u please walkthrough with this.
    Thanks.
  11. VS 2008 Unable to display image file from my database into the image control using generic ha

    Hi everyone!,I need help in displaying my image file stored from my database into the
    image control. I've had read some articles and watch video tutorial which there were perfectly
    working and I...
  12. Replies
    2
    Views
    920

    VS 2008 How to close all types of web browser?

    Hello!

    Im using visual web developer express edition and Im a new user of this tool. Im just trying to close a browser when the user clicks a button. The code below has two discripancies. First,...
  13. VS 2008 [RESOLVED] How to refresh or reload the asp.net webpage?

    Hello!

    I'm using Visual Web Developer 2008 Express Edition and I need your assistance since I'm new to it. I want to refresh or reload a webpage everytime after the event was handled. To expound...
  14. Replies
    5
    Views
    3,366

    Re: Exporting Listview content to excel?

    I modified my code and seems like everything is fine except for the last part which is to save the data as an excel file
    oBook.SaveAs(SaveFileDialog1.InitialDirectory.ToString() +...
  15. Replies
    5
    Views
    3,366

    Re: Exporting Listview content to excel?

    Hi Honeybee!

    I modified the code above using this below but seems errors got increased. I modified this portion of the code: Where did I go wrong with codes? Thanks for walking me this through.
    ...
  16. Replies
    5
    Views
    3,366

    Exporting Listview content to excel?

    Hello!

    I've been trying to export the content data of my listview control into an excel application using c#. I've already done this before using vb.net and I tried to convert my code to c# but it...
  17. Re: How to use the Like operator of T-SQL command query?

    Thank you so much for you responses. I appreciate your effort but I got it on my own using stored procedure. I just missed the syntax '%' in my stored procedure. Here's your reference:


    ALTER...
  18. Re: How to use the Like operator of T-SQL command query?

    I appreciate your preferences and your experience with t-sql but how do you resolve my issue using the 'like' operator same as what I did in LINQ if you say that t-sql is better than linq. You got to...
  19. Re: How to use the Like operator of T-SQL command query?

    Alright, take note that I'm using the text_change event handler so that it acts like a search engine when the user types in the keywords in the combobox and displays the queried data on the drop-down...
  20. Re: How to use the Like operator of T-SQL command query?

    Thanks I already visited that site before I get into this forum that is the format on that site I based by code which I wander why it won't retrieve a record.
  21. Re: How to use the Like operator of T-SQL command query?

    Ampersant '&' is not applicable in C# you will get an error. I tried both but still not able to retrieve data like what I did in LINQ using startswith() and contains() method.
  22. Re: How to use the Like operator of T-SQL command query?

    Hello!



    Thanks for your reply but I already tried that before and I tried it again and still it's giving me same result no records are retrieved since it won't show in the drop-down list...
  23. [RESOLVED] How to use the Like operator of T-SQL command query?

    Hello!

    I've been using LINQ for database query operations but I want to try also the T-SQL command query using the 'Like' operator which I believe same as the combination of startswith() and...
  24. How to get the records from the listview control and insert it into your database usi

    Hello!

    I'm new to C# and I'm trying to learn it. I used most of my work using vb.net. I have some issues in c# which I can't figure out. I want to get the records being displayed from the listview...
  25. VS 2008 Re: What is the proper Update, and Delete code for SQL Express in VB 2008 Express Ed.

    G'Day mate!

    Thank you very much! I never knew how simple it was but never realized that rule in the first place which makes my head aches a little bit. I got it now. You've been so informative...
  26. VS 2008 [RESOLVED] What is the proper Update, and Delete code for SQL Express in VB 2008 Express Ed.?

    Good Day!

    I'm just using the default SQL Server Express in my vb 2008 express edition as my database server for my database operation. When I tried to update the records on my table I got a...
  27. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I'd like to confirm from you if this is the right connection string.
    Dim myConnection As New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename="|DataDirectory|\windblow.mdf";Integrated...
  28. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    ExecuteNonQuery got the same error result.
  29. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    This is my new code now but still got an error.

    Dim myConnection As New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\windblow.mdf;Integrated Security=True;User...
  30. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    Can you review the code for me pls?
  31. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I changed my connection string using that string you gave me but it throws an exception on this line ra = myCommand.ExecuteReader.RecordsAffected saying Incorrect syntax near 'Number'.
  32. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    That was the connection string from its properties. How do I change the file path to use the Data Directory?
  33. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I already did that. Look at my post #5.
  34. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I'm using the SQL Server Express which is pre-installed along with visual basic 2008 express ed. Yes, I added this database in my project and I did not create it in the Management Studio.
  35. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I tried to use this connection string but still says unable to open the database.

    Dim myConnection As New SqlConnection("Data Source =.\SQLExpress;Initial Catalog=windblow;Integrated...
  36. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I just changed and add another database named 'windblow' as you noticed that the database name was changed from strongwind to windblow on the given connection string. Why still saying an error that...
  37. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    I tried to attach it in the SQL Server Express using this connection string "Server =.\SQLExpress; AttachDbFilename =C:\Users\Mark Tim\Documents\Visual Studio 2008\Projects\Basic SQL Database...
  38. VS 2008 Re: Having trouble connecting to SQL Server 2005 in vb.net?

    There's a lot of string connections in there and don't know which is the exact one. Any suggestions pls.
  39. VS 2008 Having trouble connecting to SQL Server 2005 in vb.net?

    Hello MSDN Community!

    I've been doing a self studies on visual basic and I thought I've learned a lot but still I realized that I still have
    something more to learn. I want to learn the basic...
  40. Replies
    1
    Views
    447

    VS 2008 [RESOLVED] Adjusting toolstripbar

    Can we adjust the size of a toolstripbar? I docked my toolstripbar on top of the form and been trying to resize cause I see it a little bit shorter and want to adjust its height and can't be...
Results 1 to 40 of 76
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width