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

Search:

Type: Posts; User: nabeelisnabeel

Page 1 of 10 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: windows 7 virtual store issue during uninstallation

    still in search for answers
  2. Replies
    5
    Views
    1,063

    Re: autoo updater help

    Yes, according to Microsoft,



    Links:
    http://msdn.microsoft.com/en-us/library/142dbbz4%28v=VS.90%29.aspx
    and
    http://msdn.microsoft.com/en-us/library/e2444w33%28v=VS.90%29.aspx

    I don't have...
  3. Replies
    5
    Views
    1,063

    Re: autoo updater help

    Arjay and Hannes, thanks for your replies.

    Can I make an installer with ClickOnce which updates my software to newer version without uninstalling the older version.

    Limitation: assume my...
  4. Replies
    5
    Views
    1,063

    autoo updater help

    I have a confusion related to ClickOnce application development.

    I have a windows forms applications. what if I only replace the MyApp.exe and related DLL files in the program directory instead...
  5. windows 7 virtual store issue during uninstallation

    I have noticed that when we uninstall a software in Windows 7, it does not remove its virtual store directory in App Data for current user. This thing is causing me trouble. is there any way to force...
  6. Replies
    4
    Views
    9,777

    Re: TabIndex on DataGridView Cell

    One way is that you try to capture KeyDown event on DataGridView and then manipulate the CurrentCell using Hannes idea. The other way might be to override 'ProcessCmdKey' method on grid.
  7. Replies
    1
    Views
    2,897

    Re: Dynamically resizing of text box

    in DataBound event

    find the text box in Grid Row by


    TextBox box = e.FindControl("txtNote") as TextBox;

    and set its new values by
  8. Re: Finding a source in a complex project in VS2008

    Using windows explorer search feature from the root directory of your solution.
  9. Replies
    6
    Views
    3,040

    Re: C# Windows Forms deployment issues

    ezmobee !

    Your problem is related to the connection string of your Access database and it doesn't have anything to do with your EXE files. Do you want your EXE files on every client to connect...
  10. Replies
    9
    Views
    2,435

    Re: Whats wrong with system.diagnostics

    No.
  11. Replies
    1
    Views
    1,206

    Re: Resolve Client machine Name

    try

    Request.ServerVariables["SERVER_NAME"].ToString()

    http://forums.asp.net/t/821809.aspx?PageIndex=2
  12. Replies
    4
    Views
    1,688

    Re: FireFox issue!!

    change it to

    document.getElementById('txtCommissionBalance').value = valuefinal.toFixed(2);
  13. Replies
    90
    Views
    12,653

    Re: Looking to develope skills

    This guy here has the same problem as of you..

    http://www.codeguru.com/forum/showthread.php?t=490415
  14. Replies
    90
    Views
    12,653

    Re: Looking to develope skills

    Dragster93 !

    To be a good programmer you should have a good grip on algorithms. Do you know what an algorithm is !

    Secondly, after reading all the replies I have come to the conclusion that...
  15. Replies
    6
    Views
    14,411

    Re: onCommand vs onClick for Buttons

    That is exactly the same thing I am thinking about right now.
  16. Replies
    6
    Views
    14,411

    Re: onCommand vs onClick for Buttons

    does it have any practical significance.

    if we have some buttons inside a GridView and every button has some CommandArguement. how can we use them. should we implement a Command event for every...
  17. Replies
    6
    Views
    14,411

    Re: onCommand vs onClick for Buttons

    Actually I read it earlier but could not get the concept of 'BubbleEvent' clearly. Can you explain it.
  18. Replies
    6
    Views
    14,411

    onCommand vs onClick for Buttons

    I am wondering why there is onCommand and onClick both events for ASP:Button controls. What special purpose do they serve.
  19. Replies
    3
    Views
    1,031

    Re: Download here an e-book c#

    book name ?
  20. Re: How to set the read-only property of a directory and its content programmatically

    How bitwise OR operator will accomplish the given task, can you explain a bit
  21. Replies
    22
    Views
    2,922

    Re: static variables

    Is the guy'z problem sharing and accessing data between two different processes?

    I don't think so. He has declared and initialized two separate instances of his class and every instance will have...
  22. Replies
    12
    Views
    6,642

    Re: Coder Wanted

    Windows Forms + ASP.NET
    is not it strange ?
  23. Re: Questions about casting object types...

    Questions 2:

    Consider the following statement:



    Employee emp = Obj;
    Am I correct in thinking that the above statement would cause an invalid casting exception error given this attempted...
  24. Re: Questions about casting object types...

    Question 1:
    Am I correct in thinking that the the Obj reference variable cannot see the implementation details of the Employee object, only those defined by Object?

    Yes you are are correct. Obj...
  25. Replies
    1
    Views
    673

    Re: another theread Q

    Your 'Thread' concepts seem weak. First solidify them before implementing them.

    P.S.
    'Thread.Join()' Blocks the calling thread until a thread terminates....
Results 1 to 25 of 227
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured