User Profile

Collapse

Profile Sidebar

Collapse
liadmz
liadmz
Last Activity: Jun 9 '15, 01:26 AM
Joined: Jul 31 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Adding and Editing VBAscript without dynamiclly without using MS-Office

    I'm trying to have a script under Linux system that will send every user the same word document (MS-Office) but with a slight change in the script (In this case I'm changing user ID)

    Is there a way to edit the VBA script inside the document without using external script (perl/python etc.)
    See more | Go to post

  • Parsing JSON string with Perl when the elements name are unknown

    Hi,

    I would like to parse JSON string using perl.
    which is very trivial up until the moment the elements name are unknown.

    normally I would use:
    Code:
    my @elem= @{ $decoded->{'elements'} };
    foreach my $el ( @elem) {
      print $el->{"attr"} . "\n";
    }
    How can I do the same assuming I have no knowledge on the elements names (I'm sure there...
    See more | Go to post

  • liadmz
    replied to Web UI For Desktop Application
    Thanks A lot !
    This HTTP listener it the missing peace in the puzzle.

    Thanks!
    See more | Go to post

    Leave a comment:


  • liadmz
    replied to Web UI For Desktop Application
    Hi PsychoCoder,

    Thanks for the reply.

    I'm not sure we are talking about the same thing, I'm looking for a way to provide the user with a web interface (so the app can be controlled remotely).

    Thanks.
    See more | Go to post

    Leave a comment:


  • liadmz
    started a topic Web UI For Desktop Application

    Web UI For Desktop Application

    Hi,

    Does anyone familiar with a Tutorial/Guide for creating a web ui for a desktop application.

    I would like to have the option to control my application via the browser (remotely).

    Thanks,
    Lee
    See more | Go to post

  • C# Website Authentication using user, password and subscription date

    Hi guys,

    I'm trying to automate some process which involves downloading a file from one of our vendors.

    The problem with the traditional authentication is that it allows you to use only user and password, while the vendor's login page request from user, password and subscription date.

    Any ideas how can I download the file programmaticall y

    I tried using the WebClient "POST" to get...
    See more | Go to post

  • liadmz
    started a topic Handling WebClient Async Upload for multiple sites

    Handling WebClient Async Upload for multiple sites

    Hi All,

    I'm trying to create an app that can upload the same file to multiple site at the same time.

    This is my code till now...
    Code:
    private void UploadFile(string _ip, string _file)
    {
    	//Setup the client and Credentials 
    	WebClient wc = new WebClient();
        wc.Credentials = new NetworkCredential("user", "pass");
    
    	//set the Async routines
    ...
    See more | Go to post

  • How can I set WebClient, UploadValues not to wait for the server

    Hi All,

    I'm using WebClient.Uploa dValues function to post the information to my site.

    Code:
    byte[] response = 
                    myWebClient.UploadValues(_URL, "POST", PostInfo);
    The problem start as this function is waiting for the server reply and download a full headers.

    I tried to use is without assigning it to byte array, but without any performance improvement.
    ...
    See more | Go to post

  • liadmz
    started a topic How to retrieve DNS information of domain

    How to retrieve DNS information of domain

    Hi All,

    I'm looking for a way to retrieve the DNS information of a given domain.

    the information I would like to get is:
    Domain's Name server
    Domain's MX Server

    Thanks for the help
    See more | Go to post

  • liadmz
    started a topic Saving a Draw made by the user.

    Saving a Draw made by the user.

    Hi All,

    I have made a small app that allows the user to draw.

    Code:
     
    
    createEmptyMovieClip("terrain", 1);
    terrain.lineStyle(3, 0x000000, 100);
    imdrawing = false;
    
    onMouseDown = function () {
    	if (imdrawing == false) {
    		terrain.moveTo(_xmouse, _ymouse);
    		imdrawing = true;
    	}
    	
    	if (imdrawing == true) {
    		onEnterFrame = function
    ...
    See more | Go to post

  • You got me.. I'm trying to do it, till now with not much of success.

    If anyone know..
    See more | Go to post

    Leave a comment:


  • JavaScript App which allow the user to paint and save

    Hi All,

    I have been trying to make an JavaScript application which allow the user to paint (draw) a small picture.

    When the done the draw will be placed as picture into a Crystal Report (.Net) by pressing a button.


    Cheers
    See more | Go to post

  • How to edit the current message using outlook add on (Ribbon)

    I'm trying to build an Outlook add-on.
    I have build a nice set of buttons inside a new tab in the ribbon, but I don't know how to refer \ access the current message (which the ribbon is at).

    My custom ribbon is active (or visible) when composing a message.
    What I would like to do is that each button in the ribbon will add a predefined text into the message.
    See more | Go to post

  • liadmz
    replied to Failure sending mail
    Hi,

    First - You can send from "localhost" only if you have a smtp server installed on you station. (like FreeSMTP http://www.softstack.com/freesmtp.html).

    Second - In case you are using a remote SMTP server, lets say your ISP server.
    the "From" field is not always customizable.

    Some server are checking this field so the only "From" address is yours.
    from ex':
    if...
    See more | Go to post

    Leave a comment:


  • Try this:
    if (DateTime.Parse (date.Text).Mon th.ToString() == DateTime.Now.Ad dMonths(1).ToSt ring())

    make sure you have validation in the text box that check the input is a valid date.

    Hope this one helps.
    See more | Go to post

    Leave a comment:


  • How to create a table in outlook mail body programmatically

    I'm trying to create an email message which contains a table.
    in the table I have one column that contains a URLs.

    because I don't want the table to be too wide I want to limit the URL column,

    I tried using nowarp tags in the table but with no luck.
    I tried using CSS but it seems like the outlook is removing them.

    my code is:

    have two function that create the HTML code:...
    See more | Go to post
    Last edited by Niheel; May 31 '10, 04:19 PM. Reason: added code details to question

  • How to create an HTML email with limited table width

    Hi All,

    I'm trying to build a HTML table inside an email msg.
    the problem is that the table is too big for the email copy.

    So, what I want to do is, limit the problematic column to a fixed size.
    or to limit the table to a fixed size...

    the problem is - I don't figure out how to...

    I tried using css, <table width=1000> and stuff like that but nothing..

    Help......
    See more | Go to post

  • liadmz
    started a topic Outlook 2007 Programming

    Outlook 2007 Programming

    Hi All,

    I'm trying to Add a few button to the message Ribbon in Outlook 2007.

    Till now I was able to Add a new tab to the Ribbon and add some button, but till now couldn't find a way to access to current msg I want to process.

    meaning, When a User open email message he can see the new tab of buttones I added but, I can't find a way access the message and manipulate it programmatic.

    In generally,...
    See more | Go to post

  • liadmz
    replied to DataGridView Merge Cells
    Hi ALL,

    Thanks for the replay.

    I'm giving up on this one, I will use the distinct keyword (thanks cloud255) and in a new table below the main one I will display the rest of the data.
    See more | Go to post

    Leave a comment:


  • liadmz
    replied to check unread emails?
    Here is a class I'm working on.
    You need to add it to your project and create a new object.

    MailHandler X = new MailHandler();



    Set the POP3 and SMTP setting using:
    X.SetSMTP(txtSM TP_server.Text, txtSMTP_user.Te xt, txtSMTP_pass.Te xt);
    X.SetPOP(txtPOP _server.Text, txtPOP_user.Tex t, txtPOP_pass.Tex t);

    To count the emails on the server use:
    int EmailCount = X.RetrieveMailC ount();...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...