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

Search:

Type: Posts; User: creatorul

Page 1 of 18 1 2 3 4

Search: Search took 0.08 seconds; generated 20 minute(s) ago.

  1. Replies
    4
    Views
    1,476

    Re: Regex Syntax

    You can escape your string with Regex.Escape but I don't think that's your only problem. If you are just surrounding the current selection with <span> tag why don't you just replace your current...
  2. Replies
    4
    Views
    1,199

    Re: XmlTextReader and Writer

    That is an XPath expression that selects all the Authors nodes in the document.
    http://www.w3schools.com/xpath/xpath_syntax.asp
  3. Replies
    4
    Views
    1,199

    Re: XmlTextReader and Writer

    You can not do that (the deletion) with XmlTextWriter. Use the DOM approach for that:
    http://www.devsource.com/article2/0,1895,1934067,00.asp
  4. Replies
    1
    Views
    676

    Re: adding GraphicsPath in an ArrayList?

    Same as with the other objects


    GraphicsPath g = new GraphicsPath();
    ArrayList a = new ArrayList();
    a.Add(g);
  5. Replies
    3
    Views
    3,206

    Re: TabControl Tooltip

    Setting the autodelay does not work ?


    this.toolTip1.AutomaticDelay = 1000; //nr o f milliseconds
  6. Replies
    2
    Views
    6,045

    Re: Resizing polygon

    AFAIK there is no way; even drawing on a panel that will enlarge with form enlarging will not resize it . You have to compute it .
  7. Thread: Delegates

    by creatorul
    Replies
    2
    Views
    738

    Re: Delegates

    Perfectly legal. You can see the Delegate like a blueprint ( or like a class ) . First you declare it and then you instantiate it. You don't need to declare it in a class.


    namespace...
  8. Replies
    3
    Views
    900

    Re: Run word application

    If you want just to open Ms Word and not interact with you can use the simple process class:


    Process notePad = new Process();
    notePad.StartInfo.FileName = "notepad.exe"; ...
  9. Replies
    1
    Views
    755

    Re: is it possible ?!

    You can use the dataSet to save the content to a xml file:


    ds.WriteXml(@"C:\Data.xml");
  10. Replies
    1
    Views
    5,019

    Re: Web Start for C#

    ClickOnce
  11. Thread: Closing Form

    by creatorul
    Replies
    3
    Views
    1,015

    Re: Closing Form

    From first form:


    private void button1_Click_1(object sender, EventArgs e)
    {
    Form2 frm = new Form2();
    this.Visible=false;
    frm.Show();
    ...
  12. Replies
    6
    Views
    1,166

    Re: text from program ---> web www

    In my previous post I gave you a solution for completing the fields of a website without the need of a browser.
    You want to interact with Internet Explorer ? You want to develop some auto-complete...
  13. Re: Windows api allowing direct communication with a scanner device

    What about twain ?

    An example here also.
  14. Replies
    6
    Views
    1,166

    Re: text from program ---> web www

    I am a little confused about your question. I assume you want to build a registering software that will communicate with a website.

    HttpWebRequest and HttpWebResponse are the classes to work...
  15. Replies
    4
    Views
    1,623

    Re: Capture console output in real-time. Help!

    See if Process.StandardOutput helps you:
    http://msdn2.microsoft.com/en-us/library/system.diagnostics.process.standardoutput.aspx
  16. Replies
    4
    Views
    2,480

    Re: combo box in Grid view

    http://msdn2.microsoft.com/en-us/library/system.windows.forms.datagridviewcomboboxcolumn.aspx
  17. Replies
    5
    Views
    3,484

    Re: Remote Install Software

    One possible choice would be to transfer the setup files needed for a certain software and run the installer in background ( if the installer package supports command line ) with Process class. For...
  18. Replies
    5
    Views
    3,484

    Re: Remote Install Software

    You want to make an application that will install these softwares remotely. Correct me if I'm wrong.
    You can do this .NET remoting by developing 2 apps: one for the server that will be the remote...
  19. Re: Loading a Windows control from an ActiveX

    Exposing .NET controls as ActiveX
  20. Replies
    11
    Views
    2,782

    Re: Pass string to c# program from C dll

    Does the C code compile ? I see that you return something but the method signature says something else ...and try with StringBuilder.
  21. Replies
    1
    Views
    934

    Re: databindings of winform in ADO.Net

    First you should know to form some simple sql queries,then you should know how to use ADO.NET to send the queries to the database. After those two you can learn what is with this data binding and how...
  22. Re: Fast Possibiliy to Display e.g. last 1000 lines of text

    I can find an alternative for the moment but if you are going with collections use the generic ones because are faster.
  23. Replies
    8
    Views
    1,603

    Re: To destroy modeless form

    this.Close() works for the current window, the current context and you can use it when you have a modal dialog because you can not close it from the other dialogs. With form.Close() he ment closing...
  24. Replies
    4
    Views
    1,046

    Re: multi-project solution

    If you have a class library ( dll assembly ) you have to add Reference to that assembly and add a using statement.
    Example
  25. Replies
    1
    Views
    1,113

    Re: Developing IE Toolbar

    HowTo
Results 1 to 25 of 441
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured