Недавний контент zeus

  1. Z

    .NET open source - Can we get ZP for mac?

    Hello Admins/devs, With .NET turning to open source, will we get a ZP for mac?
  2. Z

    Exception has been thrown by the target of an invocation.

    Since you are declaring it as uri you have to specify the protocol i.e http:// or https:// change the variable value to http://google.co.uk ..this could be the issue,give it a try.
  3. Z

    [Advice] - Solution to desktop alerts?

    open "write to file" filepath : c:/batch.bat write: START http://yoururlhere START sound.mp3 save the file and open it . It will open the URL in browser and play the sound.
  4. Z

    [Advice] - Solution to desktop alerts?

    Write batch file to open URL,play sound. execute the bat file.
  5. Z

    How to convert unicode special characters to html?

    http://stackoverflow.com/questions/11363589/converting-html-utf-8-charset-to-iso-8859-1-via-c-sharp as specified in the answer, set the TransferEncoding and SendChunked property.
  6. Z

    Can One Zenno Project call another zenno project?

    Add GAC Reference to the project and select the system.xml
  7. Z

    Activate/Desactivate a computer

    It happens immediately. Login in to the userarea and deactivate the computer.
  8. Z

    Reverse a regex to find the external urls

    I am not sure if I understand correctly. You have a list of url's and you want to extract all external url's? If so then duplicate list - list processing - delete elements - contains 'domain.com'
  9. Z

    How to use C# code to do URLencode to "hello, world" in zp?

    Reference System.Web in GAC Reference and use HttpUtility.UrlEncode to encode. You can also try HttpServerUtility.UrlEncode
  10. Z

    How does input settings work when running zennoposter?

    Right click the template in zennoposter and select settings.
  11. Z

    Some help with action designer please

    did you try regenerating the profile? probably that's why you get January every time during debug. to regenerate a new profile either restart the project or click on "human" and click regenerate.
  12. Z

    Sorting list based upon years?

    In list processing there is an option "delete". It allows you to delete lines that don't have specific words. It should work. Or you can use the regex option in that too.
  13. Z

    Regex replace in list processing

    I solved this using c# but it would be nice to have it built-in: var contentlist = project.Lists["Content"]; var contentfinal = project.Lists["contentfinal"]; var done = "done"; lock(SyncObjects.ListSyncer) { foreach(var content in contentlist) { var output =...
  14. Z

    Regex replace in list processing

    I will explain it with an example. we have a list with 2 items : [0] = <tab>content<tab>content1</tab>Rand</tab>Precious stuff1 [1] = <tab>some stuff<tab>random</tab>unwanted<tab>Precious stuff2 suppose I have a list with these two content stored. How do I extract only the important part...
  15. Z

    Regex replace in list processing

    What I mean is to replace seperate elements in a list by regex or by text.