Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

MAP Tiger

@MAP Tiger
About
Posts
62
Topics
29
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to get actual IP address of the computer?
    M MAP Tiger

    Hi Thanks for the reply. Can you please give me an example of how to discover NAT for the exact computer, I was thinking of a way to make the program work exactly as yahoo or msn messengers does i.e. sending a message to other computer or sending a file etc. I will be very thankful for your help. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# question csharp sysadmin asp-net

  • How to get actual IP address of the computer?
    M MAP Tiger

    Hi I have successfully applied the networking logic using TCP and UDP protocols both while on internal LAN scenario. Now how can I connect to the computer on network i.e. send a text message to another computer on the internet. The target computer has the local ip address of 10.10.20.200 which is assigned from a local LAN server which is connected to the internet (you can think of a router too) now I dont know how to access that computer where a server is residing which will receive the message sent from the client. Hope I was clear to illustrate the scenario and my question. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# question csharp sysadmin asp-net

  • How to cast an object using its handle?
    M MAP Tiger

    Hi OK fine, so the final solution seems to be working with SendMessages and P/Invoke calls. Would you be able to help me in converting the following C++ project to C# http://www.codeproject.com/KB/atl/IEStatusBarPane.aspx?msg=2840047#xx2840047xx[^] Regards,

    C# csharp tutorial asp-net json

  • How to cast an object using its handle?
    M MAP Tiger

    Hi Thanks for the reply. Actually I already considered that but that seems very complicated as I am willing to create another control and append it to the control whose handle is known to me. i.e. add label control into statusbar control of IE. I hope you have a solution to this. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# csharp tutorial asp-net json

  • How to cast an object using its handle?
    M MAP Tiger

    Hi Thanks for the reply. Yes, it is an HWND. To make it more clearer, the handle is of a IE's statusbar32 object, for which I know only the handle, now I want to manipulate its objects and add/remove other Microsoft Common Controls so I was thinking of a way to cast that object to comctl's statusbarclass and then manipulate it instead of throwing Messages and creating pane window etc. using API calls as I am not very good in that. Hope I was clearer to specify my scenario and you would have the solution to it. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# csharp tutorial asp-net json

  • How to cast an object using its handle?
    M MAP Tiger

    Hi Is there any possibility that I could cast an object through its handle. For example, I have to do an estimation of objects and finally I get the handle of that object through GetWindow API call, now I know its type but how to retrieve that object and cast it for that specific type? I am implementing it using a dll file. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# csharp tutorial asp-net json

  • Manipulating with IE's status bar (adding link label)
    M MAP Tiger

    Hi I just found an implementation of the same in C++ so if anyone of you can help me translate that to C# then I will be very much thankful to you. http://www.codeproject.com/KB/atl/IEStatusBarPane.aspx Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# csharp tutorial asp-net

  • Manipulating with IE's status bar (adding link label)
    M MAP Tiger

    Hi I want to add a link label in Internet Explorer's status bar, can anybody guide me that how to add an object in status bar. I have already worked with adding button in toolbar pages but they are about adding the buttons on toolbar not status bar and nowhere I found a little clue that could initiate me for this. I would be very much thankful if anyone could guide me so that I may conform with my assignment. Regards,

    Mujtaba Panjwani Tiger Softwares Software Designer and Developer VB.NET, C#, ASP.NET, VFP

    C# csharp tutorial asp-net

  • Cross threading in class library
    M MAP Tiger

    Hi Thanks for the reply. I actually needed it in class library which will be basically hosted as a BHO to IE. Moreover, I have solved the problem and mentioning that here so may be useful for any other person.

    SongName = "Artist: " + myTrack.Artist & " - Name: " + myTrack.Name
    Dim myThread As New Thread(ChangeText)
    myThread.Start()

    SongName is defined on class level and ChangeText procedure do the work needed with SongName Now the other question needs attention which is about invoking javascript function if someone can do help. Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic help csharp asp-net tutorial

  • Cross threading in class library
    M MAP Tiger

    Hi Thanks for the reply. I actually needed it in class library which will be basically hosted as a BHO to IE. Moreover, I have solved the problem and mentioning that here so may be useful for any other person.

            SongName = "Artist: " + myTrack.Artist + " - Name: " + myTrack.Name;
            Thread myThread = new Thread(ChangeText);
            myThread.Start();
    

    SongName is defined on class level and ChangeText procedure do the work needed with SongName Now the other question needs attention which is about invoking javascript function if someone can do help. Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    C# help tutorial

  • How to execute javascript function from BHO
    M MAP Tiger

    Hi I would also like to mention that as I am working with BHO so I have the access to WebBrowser object and Document object. I think the solution has to be within these objects but dont know how... Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    C# csharp javascript help tutorial

  • Cross threading in class library
    M MAP Tiger

    Hi Again thanks for the reply. But dear it is not upto me to stop this behaviour of cross threading. As I mentioned that I am working with iTunes library. So when I try to grab an event of e.g. PlayEvent on windows forms then it cannot run anything until I disable the Check for illegal cross threading calls. I hope that I am much clearer now so that you can help me out for this. By the way cross posting is just that some dont come on VB.NET boards and some dont come on C# board and I am in hurry to get it fixed. I hope you dont mind it now. :) Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic help csharp asp-net tutorial

  • How to execute javascript function from BHO
    M MAP Tiger

    Hi Thanks for the reply. If you could read clearly what I said in my question which clearly states that I am running it from BHO (Browser Helper Object) which of course means that the javascript function is already injected in the code but when that specific page is loaded in the browser then the BHO has to invoke that specific javascript function. Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    C# csharp javascript help tutorial

  • How to execute javascript function from BHO
    M MAP Tiger

    Hi I have developed a toolbar which needs to invoke a javascript function based on some criteria on specific web page. To be simple, I want to know how to invoke javascript from BHO(using C#). I have done everything already but just this one needs help. Thanks in anticipation Mujtaba Panjwani

    C# csharp javascript help tutorial

  • Cross threading in class library
    M MAP Tiger

    Hi I am working with iTunes library. I am supposed to implement it into a class library. The problem is that to respond to events associated to iTunesApp I had to disable CheckForIllegalCrossThreadCalls but however in class library, this property isnt supported. Now, I am stuck in between and not able to figure out the solution. Please help me that how to enable Cross thread operations or how to call the event safely without compromising cross thread restriction. I would be very thankful for your kind response. Thanks MAP Tiger

    C# help tutorial

  • Cross threading in class library
    M MAP Tiger

    Hi I am working with iTunes library. I am supposed to implement it into a class library. The problem is that to respond to events associated to iTunesApp I had to disable CheckForIllegalCrossThreadCalls but however in class library, this property isnt supported. Now, I am stuck in between and not able to figure out the solution. Please help me that how to enable Cross thread operations or how to call the event safely without compromising cross thread restriction. I would be very thankful for your kind response. Thanks

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic help csharp asp-net tutorial

  • Crystal Report 9 not run in anthor computer
    M MAP Tiger

    Hi You will have to install Crystal Reports runtime version. https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm[^] Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic com help

  • How to execute javascript function from BHO
    M MAP Tiger

    Hi I have developed a toolbar which needs to invoke a javascript function based on some criteria on specific web page. To be simple, I want to know how to invoke javascript from BHO(using VB.NET). I have done everything already but just this one needs help. Thanks in anticipation Mujtaba Panjwani

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic csharp javascript asp-net help

  • How can I use a VB.NET function in a crystal reports "Details" section?
    M MAP Tiger

    Hi I am relatively new to Reporting in VB.NET. Actually I am asked to retrieve a report which would basically contain some items with extensive calculations which I already constructed for on-screen display, now while creating crystal reports I didnt find the way to refer to that function so that on each retrieval of the database value, report will pass it to a function of VB.NET and then the function will return the value to display in the report i.e.

    Private Function CAmt(ByVal Amt as integer) as String
    Select Case Amt
    Case 1
    Return "One"
    Case 2
    Return "Two"
    Case Else
    Return amt.tostring
    End Select
    End Function

    Hope you got what I mean to say. Please help me asap. Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic question csharp asp-net database

  • How to deploy web services?
    M MAP Tiger

    Hi Thanks for the reply. It is Parser Error. Details are below: Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not create type 'WebService1.Service1' Line 1: <%@ WebService Language="VB" CodeBehind="Service1.asmx.vb" Class="Webservice1.Service1" %> This is the error I am getting when I tried to access the service from web. Regards,

    MAP Tiger Tiger Softwares Software Designer and Developer VB.NET, ASP.NET, VFP

    Visual Basic csharp asp-net wcf sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups