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

Search:

Type: Posts; User: priyamtheone

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: How to set broadcast receiver attributes programmatically in android studio?

    Studying further revealed the fact that there isn't any Java code counterpart for those two XML attributes. If you register the BroadcastReceiver it is enabled. If you unregister it, it is disabled....
  2. Re: How to make intellisense quick info for javascript and CSS files to appear in VS

    @VictorN: Tried to attach the images to my post in the first place, but they didn't appear. Hence, provided with their links. Hope you can view the images by clicking the links.
  3. How to make intellisense quick info for javascript and CSS files to appear in VS 2017

    In Microsoft Visual Studio Professional 2017, when I edit a JavaScript or CSS file, the Intellisense Quick Info for Members, Objects and other keywords don't appear. However, when I open the same...
  4. How to set broadcast receiver attributes programmatically in android studio?

    I'm broadcasting an intent in my app and receiving it with a broadcast receiver. I can handle the broadcasting and receiving. No problem with that. However, I want to register the receiver completely...
  5. Re: Productivity Power Tools 2017/2019 extension stops copy operation in Visual Studi

    Delving deep into the issue brings across the fact that a sub-component of the Productivity Power Tool extension, named Copy As Html, is breaking the copy/cut operation. Disabling/uninstalling the...
  6. Productivity Power Tools 2017/2019 extension stops copy operation in Visual Studio.

    I'm using Visual Studio 2017. After installing Productivity Power Tools 2017/2019 extension, I can't use the copy operation. The first time I try to copy a line or block of code after installing the...
  7. Re: What is the counterpart of this C pointer programme in C#?

    While it's true that references and pointers are deemed dangerous and not part of managed coding in C#, more reading on the topic reveals that we can still work with concepts like address-of and...
  8. Re: What is the counterpart of this C pointer programme in C#?

    Something simple and trivial for you may be something essential and important for someone else, especially someone who's trying to get a fundamental knowledge on the topic. You can't move on to the...
  9. Re: What is the counterpart of this C pointer programme in C#?

    Posting a question in multiple forums enhances the scope of getting answers from more repliers, especially those who are not on other forums.
  10. What is the counterpart of this C pointer programme in C#?

    I'd like to know how the following programme on pointer written in C can be written in C#, especially how to use the keywords in the C programme like &i and *p in C#. Please clarify.



    #include...
  11. How to invoke multiple Javascript validation functions on ASP.net button click?

    Basic workflow of the page

    Image of Payment page:
    https://1drv.ms/u/s!Ava3iL9se3C3gTF_XJ_RiBBsWDHs

    I have a payment page that has a name textbox (txtName), a PIN textbox (txtPin) and two...
  12. Re: Toolstripbutton not validating textbox.

    While clicking any toolstrip button just validate the entire for before calling any method. This way it'll fire the textbox validating event.



    If (this.Validate)
    {
    // Call your method.
    }
  13. Detecting mouse button down & up events on the system menu of form.

    How do I detect left mouse button down and up events on the 'Close' option of the system menu that appears when the mouse is clicked on the top left corner of a form?
  14. Is disposing a local brush variable necessary?

    MSDN recommends disposing any variable of type System.Drawing.Brush before its last reference is released. Otherwise, the resources it is using will not be freed until the garbage collector calls the...
  15. Elements of a toolstrip witin an usercontrol get deleted when copying/pasting it.

    I have an usercontrol that contains a toolstrip. The toolstrip is exposed through the usercontrol by a readonly property 'HostStrip' with DesignerSerializationVisibility.Content attribute. In this...
  16. WmiSetBrightness method not supported (.Net 4.0, Winforms, Windows 7).

    I'm trying to adjust the brightness (not the gamma ramp values) of the monitor using WmiSetBrightness method but the system throws a ManagementException during runtime saying 'Not supported'. I have...
  17. Re: Problem in painting custom panel control (.Net Framework 4.0).

    According to the attachment you posted, just add Me.Invalidate() to the RPanel_Resize event handler of UserControl1. Hope that sorts it out.
  18. Re: Problem in ToolStripProgressBar painting (VS.Net 2010, WinForms).

    They are not the same post posted twice. First one is the problem; second one, the workaround to deal with it. Posted it so that someone else can be helped.
  19. Re: Problem in ToolStripProgressBar painting (VS.Net 2010, WinForms).

    It seems to be a bug. One way to remedy it is to handle SystemEvents.UserPreferenceChanged for e.Category=VisualStyle and change the progressbar.Style to something and back again.
  20. Re: Problem in inherited form (VS.Net 2010, WinForms).

    The naming of forms is done by the design IDE. It is not part of the Form Class. The IDE sets the name of a form to its text by default when it is created from the 'Add New Item' dialog box. But it's...
  21. Re: Problem in inherited form (VS.Net 2010, WinForms).

    When I add an inherited form to my project from MyForm through the 'Add New Item' dialog box, I enter the name of the form that I want to add in the 'Name' TextBox of the 'Add New Item' dialog box...
  22. Problem in inherited form (VS.Net 2010, WinForms).

    I built a ClassLibrary where I have created my custom form component (let's say MyForm) that inherits from the Form class. I added the ClassLibrary to my actual WinForms project. Now when I add an...
  23. Problem in ToolStripProgressBar painting (VS.Net 2010, WinForms).

    Ensure ApplyVisualStyles is enabled in your system. Place a ToolStripProgressBar on a toolstrip, run your application and minimize the form. Now change the theme of your computer to Windows Classic...
  24. Problem in creating numeric textbox (.Net 4.0 - Winforms).

    Hi,
    I'm trying to create my own numeric textbox that will handle decimal as well as whole number values. The concept is, unlike the regular textbox, this one will accept a value of 'Double' data...
  25. Detecting X button click of a window in winforms.

    How can I detect the click event of the close (X) button at the top right corner of the control box of a form/window? Please note, I don't want to know about CloseReason, FormClosing, FormClosed or...
Results 1 to 25 of 92
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured