Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
L

lune12

@lune12
About
Posts
79
Topics
36
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • executing rake from C# app
    L lune12

    Process p = new Process();
    p.StartInfo.FileName = Path.Combine(my_dir, "rake.exe");
    p.StartInfo.Arguments = my_expected_args;
    p.StartInfo.UseShellExecute = false;
    p.start();

    I Also tried the following :

    Directory.SetCurrentDirectory(my_dir);
    Process p = new Process();
    p.StartInfo.FileName = "rake.exe";
    p.StartInfo.Arguments = my_expected_args;
    p.StartInfo.UseShellExecute = false;
    p.start();

    C# csharp c++ help

  • executing rake from C# app
    L lune12

    Thanks, I tried to do as you said but still getting the same error. what can be the problem?

    C# csharp c++ help

  • executing rake from C# app
    L lune12

    Hi, I have a rakefile that compile a C++ code. now I have a C# app that change something in the C++ code and I want to recompile it automatically. I did:

    Process p = new Process();
    p.StartInfo.FileName = "rake";
    p.StartInfo.Arguments = my_expected_args;
    p.StartInfo.WorkingDirectory = my_dir;
    p.StartInfo.UseShellExecute = false;
    p.start();

    I'm getting error: The system canot find the file specified. Let say that if I open a cmd prompt and do: > cd my_dir > rake my_expected_args this is fine. Thanks for any solution

    C# csharp c++ help

  • Synchronize RichTextBox scrolling
    L lune12

    Yes thank you, found it also. was seeking for an another way. but this way is working good also

    C# question

  • Synchronize RichTextBox scrolling
    L lune12

    Hi, I have two multiline RichTextBoxes, no wrap (horizontal/vertical scrollbars) Is there a way I can sync the scrolling so when I scroll one, the other one scrolls? Thanks

    C# question

  • convert types from IronPython to C#
    L lune12

    Thanks

    C# question csharp python tools tutorial

  • convert types from IronPython to C#
    L lune12

    Hi, I have a C# code that include a python script one of my python function return a Tuple, let say:

    def Example():
    a = 3
    b = 4
    return a, b

    now I want to call the Example function from my C# code, but this function return a tuple. How do I handle this? Thanks

    C# question csharp python tools tutorial

  • python and C#
    L lune12

    Thanks it helps. (tried it with a simple script) my question now is: I have a python script that import module IntelHex. when executing the script itself it works properly. when calling it frm my C# application, I got an exception "No module named intelHex" Do you have a clue how can I solve this? Thanks,

    C# csharp python tools question

  • python and C#
    L lune12

    do you know how can I turn the python script into a dll. Or should I forward the question to the phyton forum?

    C# csharp python tools question

  • python and C#
    L lune12

    no I don't know, can you explain please

    C# csharp python tools question

  • python and C#
    L lune12

    Thanks. and if I want to call a single function from the script, is there a way?

    C# csharp python tools question

  • Intel-Hex Format
    L lune12

    Thanks. I don't really undestand your answer. I don't have the offset, I need to find it. more than that, I need to compare address vs. address not the entire file. this is why I need to parse it.

    C# question

  • python and C#
    L lune12

    I have a script in python. I would like to call it from a winform in C#, is it possible? and how? Thanks

    C# csharp python tools question

  • Intel-Hex Format
    L lune12

    Hi All, Is there a dll that deal with Intel-Hex ( http://en.wikipedia.org/wiki/Intel_HEX[^] ) file format? I have 2 hex file (in intel-hex format) and I need to compare them. the output must be the addresses where data differs. Do you know if such a thing already exists? Thanks

    C# question

  • inheritance question
    L lune12

    Hi, I need to update a code that was written a long time ago, and have some problem. my question is as follow. I have a Base class with function f1 that do something. the Derived class ovveride function f1 and do other thing. now I need to add to the derived class a function f2 that do exactly what Base::f1() is doing. and I dont want to duplicate the code (of course) is it OK to do:

    void Derived::f2()
    {
    Base::f1();
    }

    or is there a better way to call the f1 from the base class? Many thanks,

    C / C++ / MFC question oop help announcement learning

  • web service
    L lune12

    Many Thanks!

    Web Development database help sysadmin

  • web service
    L lune12

    What should I change? I am new in this field. can you explain or point to a relevant article. thank you for your help

    Web Development database help sysadmin

  • web service
    L lune12

    I don't understand what do you mean by "allowed to examine or alter the configuration" what are you suggesting me to do?

    Web Development database help sysadmin

  • web service
    L lune12

    Thanks for your response, I just found this also, when adding to my application that use the web service the following, it works

    myservice.Credentials = System.Net.CredentialCache.DefaultCredentials;

    But::: I'm developing the web service, can't I change there something so the application will work without this adds?

    Web Development database help sysadmin

  • web service
    L lune12

    using the URL where the webservice is located. Is there something to configure in the IIS?

    Web Development database help sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups