Search:

Type: Posts; User: Lightning

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    226

    Re: WPF: Binding to IEnumerator?

    You could put all record in an (invisible) listview and bind the FlowDocumentPageViewer to the selectedItem property
  2. Re: How do you print receipts from cash register machines?

    you should contact the vender of the cash registers , they have the specs you need
  3. Re: Anybody know if TFS 2012 is actually out yet?

    It's out, only for Windows 8
  4. Re: Does anyone know if there's a freely available control like this?

    You can create this easily. 2 buttons and one scrollview (the scrollview works fine in touch). Since you know how many buttons are in the collection, you know how much you must scoll if the user...
  5. Re: Post client certificate from IE and validate the certificate on the IIS/Web serve

    The certificate is send from the client to the server with every request. You can check in the accourind event
  6. Re: " InvalidArgument=Value of '0' is not valid for 'index'" When Selecting 2nd Item

    Is the item still selected on the line with SubItems[2]
  7. Replies
    1
    Views
    459

    Re: WebEx Recording to text

    You can't convert a HD-audio/video session to a textfile...
  8. Re: httpwebrequest + response .. Get And Post

    What is your question?
  9. Replies
    3
    Views
    1,004

    Re: PollingDuplex doesn't work in IIS Express

    You could try to adjust the .config so the full error message is revealed, that might help
  10. Replies
    1
    Views
    1,529

    Re: An Unhandled Exception has occurred!!!

    Looks like you have an altered default template for "new project". You could try to re-install VS2010. Or you could post the full XAML and the full Errormessage (both copy-past)
  11. Replies
    1
    Views
    527

    Re: WCF Service library over the web

    Could you post the full errormessage from the textbox on the right?
  12. VS 2008 Re: WCF service library not working over the web.

    What is the full errormessage in the textbox on the right part of the screen?
  13. Re: How to change Javascript to work with IE

    You could debug the scripts, in IE using F12. Then you can see where the problem is and you can google that or ask here again.
  14. Re: Can anyone help make my scripts IE friendly? (JavaScript)

    You could debug the scripts, in IE using F12. Then you can see where the problem is and you can google that or ask here again.
  15. Re: How to Get Inspect Element Content using C#

    The image must be in the source, how else does the browser know what to display? It could be that that source of the image is set by javascript, but still is in the source.
  16. Replies
    4
    Views
    175

    VS 2008 Re: regex for scraping

    That would be:
    /\d+\?
  17. Replies
    3
    Views
    345

    Re: Populating DatagridView

    According to the msdn (http://msdn.microsoft.com/en-us/library/wdzcaz7k.aspx) documentation you should use the constructor with 2 string, columnName and headerText. So it could be:



    public...
  18. Thread: Authenticode

    by Lightning
    Replies
    7
    Views
    1,457

    Re: Authenticode

    For WP7, with a quite similar marketplace, the file is signed by MS itself.
  19. Replies
    4
    Views
    1,412

    Re: sms application

    What platform, WP7? or...
  20. Re: I can't understand what I'm missing on (base) constructor on C#

    I think it is quite simple and you are on the right track. You should change this line:

    public cCarteira(double sC) : base()

    to

    public cCarteira(double sC) : base(sC)
  21. Re: WCF endpoint address Communication Exception

    Have you tried setting the base address of the service to 127.0.0.1 and not the externalIP?
  22. Replies
    4
    Views
    623

    Re: Windows phone C#

    WP8 is backward compatible, so all apps created for WP7 will run on WP8, so you can create apps for WP8 using VS2010
  23. Replies
    4
    Views
    623

    Re: Windows phone C#

    WP8 is backward compatible, so all apps created for WP7 will run on WP8, so you can create apps for WP8 using VS2010
  24. Replies
    5
    Views
    959

    Re: What to charge for a mobile app?

    If you don't get paid per hour (which is what I prefer, changing specs can take plenty of time) you can guess how much time it will cost you to build. But an other method is the see how much money...
  25. Replies
    2
    Views
    429

    Re: Win CE with Web Service

    What error do you get when you try to consume the service?
    Can the device resolve the IP of the computer that hosts the service?
  26. Replies
    1
    Views
    305

    VS 2008 Re: HTTP Authorization Question .net 3.5

    You can use fiddler to view the requests and responses
  27. Replies
    4
    Views
    513

    VS 2010 Re: Can't force VS2010 to publish bad code

    If the code doesn't compile, the website won't work. You probably miss some reference. What error do you get?
  28. Replies
    2
    Views
    473

    VS 2008 Re: Receive Post Request .NET 3.5

    You could best create a WCF service or a webmethode. Try bing.com for some info
  29. Replies
    1
    Views
    420

    VS 2010 Re: Retrieving Textbox text server side.

    Why can't you use Me.txbHello.Text? That works just fine.
    If you use this in a databound control (datarepeater or so) you can you item.FindControl("txbHello")
  30. Replies
    6
    Views
    797

    VS 2010 Re: asp:menu and AJAX Updatepanel

    I think you need the <script> tag around then script
  31. VS 2008 Re: Checkbox Status not reflecting from Listview

    You should post some relevant code, and say what the problem is....
  32. Replies
    1
    Views
    322

    Re: running service from command line

    Just create a new console app that hosts the service
  33. VS 2010 Re: Working with Master page from the content page.

    Quote.Attributes["Class"] = "Show";
  34. Replies
    1
    Views
    279

    VS 2005 Re: Sending a list to a web service

    The person who created that webservice has probably created the specs, if you follow those specs, the other side can handle your data
  35. Replies
    6
    Views
    797

    VS 2010 Re: asp:menu and AJAX Updatepanel

    You should check the generated HTML. You should examine the javascript function and find the one that is responseble for the dynamichover, that function you need to "re-re
  36. Re: I hosted my ASP.NET website and now I get errors, help

    Crystal Report has a runtime, that is a set of assemblies which can be put in the /bin directory. That should solve the problem
  37. Replies
    6
    Views
    797

    VS 2010 Re: asp:menu and AJAX Updatepanel

    I have seen something vaguely like this, but quite different, but the solution might be similar. When using a jQuery plugin to create a nice dropdownlist it works fine, but when placed inside an...
  38. Replies
    1
    Views
    340

    Re: Point in the right direction...

    You could use a DataRepeater in combination with a datapager
  39. Replies
    6
    Views
    301

    Re: displaying elapsed time?

    You should set a start datetime, the use a timer to fire every 100ms (or so). In the tick-event you substract the startdate time from the current date time and you update the label
  40. Re: Getting the Favicon of a website

    The url of the favicon isn't always www.host.com/favicon.ico. You should get the default page (index.html) from the host and something like:

    <link href="images/foo.ico" rel="shortcut icon" />
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4