Search:

Type: Posts; User: Coool

Page 1 of 9 1 2 3 4

Search: Search took 0.02 seconds.

  1. VS 2008 Re: Setup Project Change SourcePath of Content Files

    I have already created custom action project to copy files from source directory to installation directory. but it's causing problem when I repair application. I am not getting [SOURCEDIR] variable...
  2. VS 2008 Setup Project Change SourcePath of Content Files

    Hi all,

    Is it possible to change source path of content files in setup project? I need to copy some of files located in source directory to installation directory while installation.

    Thanks in...
  3. Replies
    3
    Views
    1,030

    VS 2010 Re: AutoScroll issue with ListBox

    Oh.. this issue is driving me nuts... Please help me... The scroll issue happens only when ListBox selected index changes for the first time.
  4. Replies
    4
    Views
    774

    VS 2008 Re: Parsing HTML for title/picture and numbers

    Here is the easiest way..

    http://htmlagilitypack.codeplex.com/
  5. Replies
    3
    Views
    1,030

    VS 2010 Re: AutoScroll issue with ListBox

    Of course, I have tried but didn't find any AutoScroll properties of ListBox.
  6. Replies
    3
    Views
    1,030

    VS 2010 AutoScroll issue with ListBox

    Hi all,

    I have template designer form with scroll bar and maximized mode in MID form. Now, when I click on any of the item of ListBox placed at the the middle of the form, form automatically...
  7. Replies
    7
    Views
    1,149

    VS 2010 Re: Regular Expressions?

    I would rather prefer you to use HtmlAgilityPack. It has many cool feature to parse html an xml way.

    http://htmlagilitypack.codeplex.com/
  8. Replies
    3
    Views
    567

    VS 2010 Re: Windows Application Books

    Thanks man. I also found that Petzolds had written book for Windows Programming with C# also. So, should I purchase book of C or C#. Honestly, I would never going to use C for programming.
  9. Replies
    3
    Views
    567

    VS 2010 Windows Application Books

    Hi all,

    It has been nearly 4 years since I have started developing with .NET - mostly with ASP.NET and SQL Server. I rarely got any time to work with Desktop application but now I want to get...
  10. VS 2010 Re: Detect Shift + Arrow key in form keydown event in BLANK form

    Hi jmcilhinney,

    Very nice blog regarding key events. But it didn't solved the problem in blank form. Surely, it worked when I dropped textbox in form. Anyway, I solved the issue with...
  11. VS 2010 Detect Shift + Arrow key in form keydown event in BLANK form

    Hi guys,

    Due to some weird requirement, I need to detect shift + arrow key in blank form. But it's not working. I also tried overriding IsInputKey method but it only detects single key press (like...
  12. VS 2010 Is it possible to add textbox dynamically in Crystal Report Section

    Hi all,

    I have created receipt layout designer that saves dynamically added field position and size in database and on the bases of that I need to create report with fields located at saved...
  13. VS 2010 Re: How to find installation directory of other application installed

    No, it's not working! :-(

    After spending some time on internet I also found that TARGETDIR cannot be changed using installer class. ...
  14. VS 2010 Re: How to find installation directory of other application installed

    Thanks jmcilhinney. I would try your suggestion and reply if I find any problem. :-)
  15. VS 2010 Re: How to find installation directory of other application installed

    Ok, I have created setup project that add installation directory location in registry but now I'm stuck in creating setup project of plugin module that automatically deploy dll in main application...
  16. VS 2010 Re: How to find installation directory of other application installed

    @MarMan,

    Oh.. How stupid I am not to think of using registry. Thank you very much. I will get back if I find any issue or want any suggestion.
  17. VS 2010 Re: How to find installation directory of other application installed

    Ok let me explain in details.

    I am creating plugin based application which detects dll located at installation directory and add menu(which open form from dll) in main application accordingly. So,...
  18. Replies
    5
    Views
    1,234

    VS 2010 Re: Can I delete top 1?

    The following would work even if you don't specify any column and using SQL 2005 or higher.

    delete top (" & variable & ") from table where ID = something

    Note that I have removed * and added...
  19. VS 2010 How to find installation directory of other application installed

    Hi All,

    I have started working on the module based application (plugin based architecture) and client want setup of module that can be run later and added automatically in main application. So,...
  20. Replies
    4
    Views
    479

    Re: [2005] girdview problem

    Well this is because every time you add bind gridview with the new value. So obviously it will override existing rows. Try to get existing row using DataView.. However, I m not sure about it.
  21. Replies
    2
    Views
    466

    Re: to call a table dynamically

    Mariyana, you can define onclick attribute of Image when u create table dynamically with your array.
    e.g. if you are doing serverside postback then make use of ...
  22. Replies
    6
    Views
    1,045

    Re: CSS Problem : Streaching Divs

    ya i know that the code is complex as it is developed for testing perpose only. Anyway, if Merri find nothing wrong then it's ok. Btw, i can't spend my time for mousewheel.

    Thanks for your support
  23. Replies
    6
    Views
    1,045

    Re: CSS Problem : Streaching Divs

    Happy New Year. :) :) :)

    Sorry for last reply. I think u r right. I am hereby attaching some modified code of dw scroller. I need the inner dragbar to be streached automatically.

    In...
  24. Replies
    6
    Views
    1,045

    CSS Problem : Streaching Divs

    Hi all,

    I m very much new to CSS. So, if my question is silly then please forgive me.

    I come across on problem with my design structure of div.

    I have one main div. The height of this div...
  25. Replies
    0
    Views
    476

    [2005] ASP.NET : Strange Hexadecimal Entry

    Hi all,

    I am binding datagrid dynamically. As i mentioned in bold letter i am binding ImageUrl of ImageButton, which have a value either '../images/b-active1.gif' or '../images/b-Inactive1.gif'
    ...
  26. Replies
    6
    Views
    809

    Re: Pop up with AJAX enable page

    Sorry, my bad.

    Page.ClientScript.RegisterStartupScript(Me.GetType, "scriptAlert", "alert('test');", True)
  27. Replies
    6
    Views
    934

    Re: [2005] File Upload & Postback

    Sorry for late reply,

    Yes mendhak, i understood. May be bowser itself using some pattern matching. I noticed that if my fileupload path contains min. one slash at any place then it do postback,...
  28. Re: Acessing an ArrayList on the masterpage from a UserControl

    Which UserControl? do u mean Content Page of the master page or something else?

    If UserControl is Content Page then,
    ---------------------------------
    First thing is ArrayList is not an Control....
  29. Replies
    6
    Views
    809

    Re: Pop up with AJAX enable page

    Page.Clientscript.RegisterStartupScript(me,"scriptAlert","alert('test');",True);

    Look at the last parameter.
  30. Replies
    6
    Views
    5,417

    Re: Messagebox in c#.net (web) by javascript

    My bad, i wrote VB.NET Code.
  31. Replies
    6
    Views
    5,417

    Re: Messagebox in c#.net (web) by javascript

    In VS 2003
    Page.RegisterStartupScript("msg", "<script type='text/javascript'>alert('Error');</script>")

    In VS 2005
    ClientScript.RegisterStartupScript(Me.GetType, "msg", "alert('Error');", True)
  32. Re: Read Only text boxes and Tab index?

    javascript
  33. Replies
    3
    Views
    11,484

    Re: How to modify data in datatable in c#.net

    why don't u use the query like

    select ROW_NUMBER() OVER (order by getdate()), * from Passenger
  34. Replies
    2
    Views
    582

    Re: [2005] gridview width

    <RowStyle wrap="True" Width="200" ></ItemStyle>
    <HeaderStyle wrap="True" Width="200"></HeaderStyle>

    However, mind onething that if string will be continous without space then use any function to...
  35. Replies
    6
    Views
    934

    Re: [2005] File Upload & Postback

    Well, I am using pure Javascript to validate control not required field validator.

    And suppose if it's an design problem then what make it not to do post back when only a path is incorrect. Bec'z...
  36. Replies
    9
    Views
    857

    Re: [2005] pass javascript to asp.net

    well u have to pass the Listbox selectedItem as as string for argument.
  37. Replies
    6
    Views
    934

    [RESOLVED] [2005] File Upload & Postback

    Hi all,

    I m having one strange problem with my page.

    I am using simple Html button of type submit for postback.(I have checked my page doesn't have any javascript error as well as...
  38. Re: is there a easy way to check if cookies are disabled?

    This may help you..

    http://www.primaryobjects.com/CMS/Article54.aspx
  39. Replies
    3
    Views
    643

    Re: [02/03] Regex Problem : URGENT

    anyway, i solved it.
  40. Replies
    3
    Views
    643

    Re: [02/03] Regex Problem : URGENT

    Sorry, I have already tried it.. it gives
    in XYZ</td> </tr><tr id='abc' style='....'><td> in ABC</td>

    before the last </tr> value.. how can i find the value before the first occurance of </tr>
    ...
Results 1 to 40 of 337
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width