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

Search:

Type: Posts; User: suhaib

Page 1 of 8 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    930

    Re: Printing GIF file on a printer

    Guys, nothing yet ? :(
    Actually, this is a little urgent :cry:
  2. Replies
    1
    Views
    930

    Printing GIF file on a printer

    Hi guys

    Somebody please tell me how do I print a gif file onto a printer through vb.net.
    Looks like there isn't a straight simple method to do so :(


    Thanks

    Suhaib
  3. Replies
    0
    Views
    617

    Kickstarting Windows Service

    Hi guys

    This question is probably very naive, but anyway I need to knw :(

    Here it goes...

    I created a windows service in C# scheduled to do something at a specific interval. I used the...
  4. Re: Variable uses an Automation type not supported in JScript

    Fine.
    Here is the code snippet. I get error in the second line

    var CScan = new ActiveXObject("SCANW.SLibEx");
    var ret = CScan.InitLibrary('<license_key>');

    Just to reiterate - I am able to...
  5. Variable uses an Automation type not supported in JScript

    I am creating an instance of a third party dll at client side using javascript. So far every thing works well. Even the properties and methods of this object showup when I keyin the object name...
  6. Replies
    1
    Views
    14,128

    Automation server can't create object

    Hi guys

    I tried creating something as follows -

    var objFSO = new ActiveXObject("Scripting.FileSystemObject");

    and I got the error

    Microsoft JScript runtime error: Automation server can't...
  7. Replies
    3
    Views
    1,210

    Re: ViewState and ViewState object

    Thanks for replying
    So, in that case can ViewState and Session be used interchangeably ??
    Or, are there any considerations ??

    Regards

    Suhaib
  8. Replies
    3
    Views
    1,210

    ViewState and ViewState object

    Hi guys

    I fully understand what ViewState does to maintain the values1 of controls in a web form. What I would like to know is the purpose of the Session-like usage as follows -
    ...
  9. Replies
    0
    Views
    502

    Embedding image in a mail

    Hi guys

    I wish to know how to embed (not attach) an image into a mail in CDONTS.
    Please help.

    Regards

    Suhaib
  10. Replies
    1
    Views
    830

    Embed image in Email

    Hi guys

    I wish to know how to embed (not attach) an image into an email and it through CDONTS.

    Thanks in advance

    Regards

    Suhaib
  11. Replies
    0
    Views
    807

    Capturing incoming messages

    Hi guys

    Is there a way to capture the incoming messages coming through NET SEND ??
    Please help.

    Regards

    Suhaib
  12. Thread: Trim() blues

    by suhaib
    Replies
    4
    Views
    787

    Re: Trim() blues

    Thanks pinky
    I shall try that and get back to you.
  13. Thread: Trim() blues

    by suhaib
    Replies
    4
    Views
    787

    Trim() blues

    Hi guys
    I am faced with an unusual error.
    I am getting error "Can't find project or library" for Trim()
    Alternatively I thought I would use a combination of LTrim and RTrim, but that failed too -...
  14. Replies
    8
    Views
    1,069

    Re: Obtaining a Connecting Client's IP Address

    try either of this

    x=Request.ServerVariables["REMOTE_ADDR"]

    or

    x=Request.ServerVariables["REMOTE_HOST"]
  15. Replies
    2
    Views
    832

    Re: Converting a string into an integer array

    ...1=0... is the culprit
    I guess you wanted to write i=0. right ?
  16. Replies
    4
    Views
    915

    Question mark in Debug point

    Hi guys

    Debug point in my code shows a question mark and execution does not halt where expected. I have looked for solutions in various places, but no luck yet.

    Here are some of the settings in...
  17. Re: Greying elements in listbox of checkbox style

    thank you guys
  18. Greying elements in listbox of checkbox style

    Hi Guys

    I am pursuing something which I dont even know is possible - just help me out please.

    I have a listbox control whose style is set to Checkbox.
    I am populating this listbox with about...
  19. Replies
    2
    Views
    1,022

    Re: Adding application to Windows Context Menu

    Thanks for your reply WizBang

    In the meantime I *did* poke around in the registry, and also found a way around to my problem. BUT, my application appears in the context menu only when i...
  20. Replies
    2
    Views
    1,022

    Adding application to Windows Context Menu

    Hi guys

    How do i programatically add an application to the Windows Context Menu (so that it appears upon right-clicking files)

    Regards

    Suhaib
  21. Very basic question. Help needed. Most urgent.

    Hi Guys

    I am pretty pretty new here. I have been suddenly assigned the job of maitaining a "functional" project originally developed in PHP/MySQL. So, I am required to first learn the language...
  22. Replies
    4
    Views
    1,435

    Why do we need DllImport ?

    Hi Guys

    Besides for reasons which drive us into making API calls, why else would one need to use DllImport ? How different is this from adding a reference to a Library - creating instance of it...
  23. Re: String to Char conversion involving Unicode characters

    string sString1 = "AAA [U] BBB";
    string sReplace = "\u0625";
    sString1 = sString1.Replace("[U]", sReplace);

    Smart work that was Darwen :)
    I wonder why it never occured to me.
    I kept trying a...
  24. Replies
    0
    Views
    733

    Unicode characters in Resource files ?

    Hi guys]

    When I tried running the command RESGEN on a text file containing unicode characters ("\u0xxx") it gives me a "Unsupported character" error.
    How do I overcome this ? Please help.
    ...
  25. String to Char conversion involving Unicode characters

    Hi Guys

    Suppose I construct a string (mind you - not hardcode) and that string is made up of a series of unicode character representations like "\u0625\u062D... " and so on.
    If I display this...
Results 1 to 25 of 181
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured