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

Search:

Type: Posts; User: ifdef

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Thread: File Path in XML

    by ifdef
    Replies
    30
    Views
    5,345

    Re: File Path in XML

    Agreed
  2. Replies
    0
    Views
    1,091

    User auth issue with IsInRole()

    I have a http listener app that is getting requests from a client app. Im trying to use AD user names and groups to control access to the app. When I originally built this proof of concept it worked...
  3. Thread: File Path in XML

    by ifdef
    Replies
    30
    Views
    5,345

    Re: File Path in XML

    Did cjard's answer solve your question shers?
  4. Thread: config file

    by ifdef
    Replies
    6
    Views
    1,049

    Re: config file

    app.config is a .net thing. They are XML files that store your settings for the application.

    See:
    http://msdn.microsoft.com/en-us/library/ms184658(VS.80).aspx
    http://www.ajaxline.com/node/258
    ...
  5. Replies
    0
    Views
    835

    Windows Form .dll location Affinity

    I have am accessing a control from a web page with the following code.


    <object id="theControl" name="theControl" classid="MyControl.dll#MyControlNameSpace.ControlName" width="50" height="100">...
  6. Replies
    1
    Views
    2,110

    Re: Hex reading problems

    Open the file as binary


    f = open('filename', 'rwb')
    lostString = string # Lost because we are searching for it ;) but seriously this is a list of hex e.g. 0xAB
    count = 0
    while count !=...
  7. Replies
    2
    Views
    4,597

    Buying myself a new mouse for sudo Christmas.

    I am looking to replace a Dell Bluetooth mouse i have because of latency issues and problems with precise tracking small movements when the mouse is at a standstill.

    One of the features i like...
  8. Re: Question Windows Form Controll in IE, Request for System.Net.WebPermission Failed

    For my testing I am using localhost, and though not explicitly considered in my local intranet i added it to the "trusted sites".
  9. Question Windows Form Controll in IE, Request for System.Net.WebPermission Failed

    I have a Windows Form Control that am using to show users pictures on a secure server, e.g. log on required. The control that I have built runs fine in the Control Debugger but fails when I try to...
  10. Re: Can't Pass Data From IE to a User Control

    I was able to find someone's code on line that i was able to use on my system and the issue was based in COM visibility. The way i solved it was by adding the add COM visibility in the project...
  11. Re: Can't Pass Data From IE to a User Control

    I added the statement with no additional results. Could you please proved a complete example. Just a control with a text box that gets updated from JavaScript in the page.

    Also i added this script...
  12. Re: Can't Pass Data From IE to a User Control

    Explorer supports using windows controls as objects in the browser. The control is just a dll and the hooks for access to the browser are public properties. I have seen multiple examples where the...
  13. [RESOLVED] Can't Pass Data From IE to a User Control

    I have a controll that i have built for testing. It will open up in IE and will run the simple code it has inside it. However i am not able to pass it any data. Im using VS 2008 C# and IE 7.
    ...
  14. Replies
    1
    Views
    5,889

    Re: python script as pre-build event

    In your build event try explicitly calling the python interpreter.

    "C:\python30\python.exe" "MyDir\myScript.py"
  15. Replies
    3
    Views
    5,743

    Re: Add text to WinForm title bar

    Do you mean?

    Form1.ActiveForm.Text = "Fish";

    You have to referr to the spesific instance of the form object that you have created, in this case form1 and then select the active form's text.
  16. Replies
    3
    Views
    1,082

    Re: Remote Authentication

    Is there a specific place you would suggest looking in WCF. I could use the web server component of .net? I don't want to install IIS.

    If I were to change the assumption and have the client be...
  17. Replies
    3
    Views
    1,082

    [RESOLVED] Remote Authentication

    I'm thinking about designing a client server system where user credentials are use to control access to information on the server. I would like to use windows security to do this. I would like the...
  18. Replies
    3
    Views
    4,122

    Re: Cross Thread Function Calls

    Absolutely Awesome! Not only dose that code solve my problem but it shows how to use delegates for this purpose.

    Thanks,
  19. Replies
    3
    Views
    4,122

    [RESOLVED] Cross Thread Function Calls

    I have a function being executed by a timer. When I tried to make that function up date a label got an error about cross thread calls. Looking into this i found a solution from microsoft:...
  20. Replies
    3
    Views
    4,683

    Re: Creating an ActiveX control with C#

    Thanks for the information. However i think the bottom of your post was lost, could you repost the link?
  21. Thread: Hide error

    by ifdef
    Replies
    7
    Views
    1,506

    Re: Hide error

    I don't know if there are any tools in Visual Studio to debug Javascript. Besides the "script" that Internet Explorer uses is actually "JScript", Microsoft sat in on the JavaScript standardization...
  22. Replies
    0
    Views
    4,758

    Iron Python & Iron Python Studio

    Is anyone using Iron Python or Iron Python Studio?
    If so, what for?
    What do you think about it and what do you suggest other use it for?
  23. Thread: Python Forum

    by ifdef
    Replies
    6
    Views
    2,297

    Re: Python Forum

    I think the problem is that python can be an intuitive language and the docs that exist for it are very good. What ever I couldn't from the pydocs I got from Dive Into Python.

    Still it would be...
  24. Replies
    1
    Views
    1,521

    Re: Communicating with data over the internet

    What i would suggest for what you are looking to do is urllib and urllib2. Both i believe are included in the standard python install. I have used them to download a local online magazine so i could...
  25. Thread: C# dll

    by ifdef
    Replies
    6
    Views
    2,676

    Re: C# dll

    First, in the future please use code tags to show your code, the image you posted was distorted on my system and others probably had issues with it as well.

    If you are just looking to access the...
Results 1 to 25 of 52
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured