Software Development Network Logo
  • Windows Forms
  • VS Team System
  • Visual FoxPro
  • Windows Vista
  • Visual C++
  • Smart Devicet
  • IE Development
  • Game Technologies
  • .NET Development
  • Audio and Video
  • Visual Basic
  • Visual Studio
  • SQL Server
  • SharePoint Products
  • Visual C#

Software Development Network >> Pekuja's Q&A profile

Pekuja

Member List

Markus Gallagher
figuerres
XycsoscyX
Dennis Mark Thorsen
Tibor Biro
johnb01
Harshil_Patel_5326c0
Edward1
Allah Is Here
Brian Kramer
enric vives
maqk
Vinodonly
Mike Barry
ataparia
BobInIndy
dotHuman
gatekeeper6838
Kimbe
Chris An
Only Title

Pekuja's Q&A profile

  • .NET Development Creating A Helper Thread

    Hello. I'm developing a VS Package that adds 'API level' profiling and debugging. Currently, my API level debugger exists as a stand alone application that implements API call stepping, disable/enable various API calls, and gathering of API call statistics. I interact with threads via a helper thread just like the one that the CLR debugger uses. The helper thread itself runs when the debugged process loads the API dll which is infact a wrapper around the real API dll. Can I designate a thread to be a 'helper thread' and keep it running while all other threads are suspended Target debug applications will be written in C++, however, I hope to find a language independent solution for the VS Package itself. Will ICorDebug help Any other s ...Show All

  • .NET Development COM class factory for component

    I'm using a dll that uses WSE 3.0. I installed it locally, everything works fine. I went to upload it to the test server, and got the error that asked me to install it. I had the IT guy install it but now I get he following error in my web-app: Retrieving the COM class factory for component with CLSID {698BFD43-76AA-4D13-98FE-5BE9FF5E05B8} failed due to the following error: 80040154. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: Retrieving the COM class factory for component with CLSID {698BFD ...Show All

  • Smart Device Development application handle and menu problem

    Hello, i m newbie i have develop an application. problem is that when my application is running and some phone call occur than after completion of phone call it return to my application but all the screen is white how i know that handle is given to me and i will redraw the application content actually i want focus on my application after phone call. similarily one more thing i have made menus when i click on menus and not select any menu item then it will draw white background on menu portion how i recover it or redraw my loss screen how i know that user didnt select any thing help me ASAP if u have any resourse send me i will be thankful to u Thanks in advance Regards Salman hel ...Show All

  • Visual Studio Express Editions c-mon guys..help me out

    I asked for help in my other thread.. button help needed... big problem.... I had a couple of replies...but I am still stuck....can you help please thaks for the replies guys.... but saving the urls is fine for me...as I can save the urls that I want......ie...google.com... but if someone else was to use my browser....I want them to be able to assign the buttons to their preferences... actually I messed up....because I have 10 menu items named site1 to site10......... the idea was to save your favorite sites to the menu items......but my favotite sites are not your favorite sites.... see the problem I need a way to save the menu items to the documents folder....so that the user can change them....... I ...Show All

  • Visual Studio LoadSaveReportException - I've tried all the suggestions!

    I had a set of reports, written in crystal with VS.NET and wrapped in a VB.Net web application, that worked FINE for MONTHS! Now all of a sudden, for no apparent reason, I'm getting this loadsavereportexception coming up on every report on my server. As suggested in all the other emails, I have tried: 1) Setting the permissions on the c:\temp directory to wide open. 2) Setting the permissions on the c:\winnt\temp directory to wide open. 3) Changing the userName property in the machine.config to "system". None of this did any good. I'm at the end of my rope here and completely lost. The only thing I have done that I can think might have affected this is that I installed a web page written in VS.NET 2005 (I'm ...Show All

  • Software Development for Windows Vista pesky DLM file

    I've inadvertantly downloaded the 5536 build vista as a DLM file when i'd obviously would prefer it in .iso format. When i click on the file i get the manditory "windows cannot read this file, shall we look it up on the net instead " and the programs it comes up with are of no use to me what so ever! is there any good program that reads this format i've been told it's a download manager file, but how do i get that and if it's a standard download then y doesn't windows bring it up when it consults the internet or should i cut my losses and wait for 5600 renaming my .dlm did not result in an image that daemon tools could handle. checking the box did nothing either - it just keeps saying &qu ...Show All

  • Visual Basic Device driver creation tutorial. Anyone please?

    Hi,  Does anyone know of a tutorial that would detail how i could create a device driver file in WinXP or Vista by using Visual Studio Pro 2005 please Basically i have a mouse with 5 buttons, left right, middle and 2 others. The other 3 buttons do not fire the middle or X-button events in VB.Net so how can i read the mouse port input to see what's going on etcetera to enable a driver to be created please By the way my mouse is an Airmouse with the middle button having a 4 way ( joystick like ) wobble on it for left-right and up-down scrolling.   The default AirMouse driver does not work with Win XP.   Regards, S_DS   Ah exactly the type of thread i wanted. Ok some copy protections instal ...Show All

  • Visual C++ calling managed function from unmanaged

    i have class unmanaged_class { void jim() { // How can i call ManagedClass.bob() } }; public ref class ManagedClass { void bob() { } }; i think the idea is to use callbacks and delegates some how... Calling the ref class member function is not the challenge – its figuring out how you want to reference the class in the first place. You can create the ref class as a local and call it as follows (assuming you made the bob member public): class unmanaged_class { void jim() { ManagedClass local; local.bob(); } }; What most people overlook is that methods of native classes are still compiled as managed code by default. If you wish to store ManagedClas ...Show All

  • Visual Studio Express Editions Distance between 2 points

    Hi All, How can I find the distance in terms of pixel or any other value between 2 points i.e. Point1(x, y) and Point 2(x,y) Tks in advance Cheers "the pythorean theorem" I've never heard it called that before. Lawrex - have a look here if you don't know what it is. http://en.wikipedia.org/wiki/Pythagorean_theorem ...Show All

  • Visual Studio Express Editions datagridview problem

    hi all.... i have a datagridview which contain a combo box........and i want to bind the available data from database to the combo box..........and when user select on the data in the combo box, its information will be show ... now i facing problem in binding the data from database to the datagridview's combo box.... so, anyone have an idea regarding this problem thanks To achieve this, first add another binding source to your form for your Combobox Items table (eg Type) . Then for the combobox column in you datagridview set its type to combo box. Then set its datasource to the Type binding source, displaymember=typename, valuemember=typeID This will set up the combobox items but this is ...Show All

  • SharePoint Products and Technologies How are you gnerating application definitions?

    Hello All, I am just cusrious to know how are you guys generating your application definitions in BDC by hand or using one of the tools out there to auto generate that scary XML file I am unable to find a tool which gives me the ability to include stored procedures in my app def instead of pure tables or views Any help would be appreciated. Thanks a lot I agree with you all that there should be a better facility for managing the BDC MetaData.. But we have to understand this is the first release of the BDC in concept and we shouldn't expet it to have all of the bells and whistles that a "mature" product has :-) This gives the partner market a way to buidl these tools and for Microsoft ...Show All

  • Internet Explorer Development IE 7 opening to Run Once page with error on it.

    I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. I tried running IE7 with out add-ons. The run once page did not come up to open at all. The browser did not go to anything except a page that said that the add-ons were disabled. ...Show All

  • Audio and Video Development Can we use MS Jscript for HD-DVD advance Player?

    I’m working on developing HD-DVD Advance player. Now I encounter a problem about how to impletion Jscript analyze when we develope software player for HD-DVD advance content. We find Spidemonkey JS Engine can satisfy this requirement. But I want to use MS Jscript, so I hope you can help me. Thank u! Thank u, Peter Torr! Can you give me some example about how to use Jscript ...Show All

  • Visual Studio Express Editions Change picture in picture box

    I have a picturebox and I want to change the picture, how do I do that The pictures are in the resources folder, but I cant manage to change it. Picturebox1.Image = "mypicture.jpg" doesnt seem to work. in addition, you could also load the stream from the resource (embedded) and give that to the picturebox. Of course its case sensitive: Dim theStream as System.IO.Stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(Application.ProductName & ".fileName.ext") Me.thePictureBox.Image = Image.FromStream(theStream) this will get the stream containing the resource from the embedded resource. It is case sensitive so be sure that the filename is correctly entered. This is ano ...Show All

  • Visual Studio Tools for Office Obtaining a selected range from a Word document

    How can I obtain a selection from a Word document as a Document.Range The intention is to use this range for changing the formating and text etc. The Selection object is accessed over the Application object. Assuming you've assiged the Word.Application to the variable wdApp: Word.Range rng = wdApp.Selection.Range; ...Show All

©2008 Software Development Network