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

Search:

Type: Posts; User: radicallycritic

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    896

    Help with web programming

    Hi,

    I am currently trying to create a desktop application that will control a web-page. my problem is, how do i make a persistent connection? every time i issue a request (ie....
  2. Replies
    3
    Views
    2,346

    Re: How to Hide/Show an application?

    Thanks ashukasama! Works perfectly fine :)
  3. Replies
    3
    Views
    2,346

    How to Hide/Show an application?

    Hello Gurus!

    I am running an external program with the following:



    ProcessStartInfo psi = new ProcessStartInfo(ExeToRun);
    Process proc = new Process.Start(psi);
  4. Replies
    10
    Views
    1,174

    Re: object event help!

    hello again.

    here's a clearer example:

    i have a form1 and with two object, text1 and text2

    how will i know from form1 that text1 raises an event without assigning any predefined handlers...
  5. Replies
    10
    Views
    1,174

    Re: object event help!

    hello Shuja Ali

    i know that. but that is not my target.

    my target is to get obtain those event during runtime. without of course
    doing it in design time :)
  6. Replies
    10
    Views
    1,174

    Re: object event help!

    hello there Shuja Ali,

    here's a clearer picture (i hope)

    i have a control(form/usercontrol, etc) which has lots of object (textbox,combobox, radiobutton, etc)...

    now my problem is, how will...
  7. Replies
    10
    Views
    1,174

    Re: object event help!

    hello Shuja Ali,

    added to what i posted, i want to know or get the object from a control where the specific event occured during runtime.

    i hope you guyz can help me here.

    big thanks!
  8. Replies
    10
    Views
    1,174

    object event help!

    hello guru

    how to dynamically know that an specific object event occurred during runtime?


    thanks!
  9. Replies
    1
    Views
    788

    Help with data types

    My problem is how will i be able to use a variable that will have 2 varying types.

    scenario:



    //myvar should be a varrying datatype
    if(strType == "INT")
    // myvar should be of data type...
  10. Replies
    1
    Views
    822

    Help on GroupBox/Panel

    How do you enumerate all the objects inside a groupbox?

    this seems to not work:



    foreach(Control ctl in myGroupBox){
    .
    .
    .
  11. Replies
    2
    Views
    707

    Re: Help on casting

    Sir,

    Thanks!

    Convert.ChangeType() is really helpful!
  12. Replies
    2
    Views
    707

    Help on casting

    guyz,

    im new to c#

    i just want to ask how will i cast a particular object same with the type of another object?

    scenario:

    Object obj = new Object();
  13. Replies
    3
    Views
    921

    Method as string input param

    Guyz,

    how to call a method programmatically during runtime?

    for example, i have a method:



    void MethodHandler(String MethodName, String MethodParam){
    //HOW TO EXECUTE the Method????
  14. Replies
    8
    Views
    1,532

    Re: Help in richtextbox

    i did this guyz.. but i want to focus the cursor at the bottom of the richtextbox.. still, its flickering..
  15. Replies
    8
    Views
    1,532

    Re: Help in richtextbox

    when i say flickering.. the object is like blinking since bulk of data is being added to the richtextbox... the log text are coming from the device and is printed in the richtextbox... any views on...
  16. Replies
    8
    Views
    1,532

    Re: Help in richtextbox

    talikag

    i did that but my problem is that the richtextbox is flickering and very annoying and affects data processing



    myRichTextBox.Text =...
  17. Replies
    8
    Views
    1,532

    Help in richtextbox

    Hello gurus,

    How will i remove the topmost line in a richtextbox???

    example:

    Line 1
    Line 2
    Line 3
    Line 4
  18. Replies
    1
    Views
    897

    Re: Help with BinaryReader

    i did this guyz. and works pretty fine



    while(br.BaseStream.Position <= br.BaseStream.Length)
    {
    Byte[] b = new Byte[1024];
    b = br.ReadBytes(1024);
    }
  19. Replies
    1
    Views
    897

    Help with BinaryReader

    using this how would i read the binary file byte by byte..

    Currently im using:

    Byte[] b = br.ReadBytes(100);

    but my problem is that 100 is dictated. how will i do this in such a way that i...
  20. Replies
    1
    Views
    707

    Help on stopping a function

    Guyz how do i stop the processing of a function when i press abort?

    Scenario:

    Main form calls a function in a dll.

    dll process the function like:
  21. Replies
    2
    Views
    887

    Help on determing return key

    How do you check enter/return key in a text file?



    StreamReader srFile = new StreamReader(strFilePath);

    String strByteData = "";


    if...
  22. Replies
    3
    Views
    848

    Help on arrays

    Guyz,

    Please help me.

    i created an array of characters shown below:

    char[] chArray = new char[5];

    assign values to it.
  23. Replies
    4
    Views
    950

    Re: Help with RichTextBox

    The log becomes bigger and bigger since im displaying data logs here. so when the log is big, it slows down my application.

    my temporary solution for this is to limit the log size on that...
  24. Replies
    4
    Views
    950

    Re: Help with RichTextBox

    rt.appendText(text_data);


    is this faster? and uses less memory. thanks guru
  25. Replies
    4
    Views
    950

    Re: Help with RichTextBox

    Guyz,

    is this a good solution?



    rt.SelectionStart = rt.Text.Length;
    Clipboard.Clear();
    Clipboard.SetText("xxx");
    rt.Paste();
Results 1 to 25 of 43
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured