StevenR2's Q&A profile
Visual C++ Smartbridge Alerts
I too am receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Helen McLaughlin Ok, I think I got it solved here. Here's what I found. After searching my system for files with PSAPI.dll in the name, it returned 4 files that were Verizon Online references and one of them had a subheading of SmartBridge. All 4 were an older date than my system/32 PSAPI.dll file. I renamed those 4 as PSAPIOLD.dll. Since each had different subheading names there were no conflicts. I restarted my system and the error message had departed. Hope this helps. Bob S. (viobass) ...Show All
Smart Device Development How to read Bluetooth serial port settings?
Hi All. I want to read the Bluetooth Serial port setting , i.e. Inbound port Number & outbound port number of a PDA using C#. Please help me out. Checkout this post http://www.peterfoot.net/WindowsMobile50BluetoothVirtualSerialPorts.aspx Manav ...Show All
SQL Server An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue
Hi Guys, Can anyone help me with this error An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Communication link failure". An OLE DB record is available. Source ...Show All
Windows Forms transparent label?
Holla Im designing a new user form. How do I create a label with transparent back color There is a field "Transparent" at the properties-dialog wich inserts "Color.transparent", but it doesn't work. The label has the same color like the window. Is there a way to get a real transparent label Thanks knackpunkt83 Figured this out on accident while messing around. Once the label is set to transparent, you have to add the label control to the picture box. pictureBox1.Controls.Add(label1); ...Show All
Visual Studio Tools for Office Add-In -> Works = My Computer, Doesn't work on others
I made an add in for Outlook. After adding a custom install class that I found there: http://weblogs.asp.net/mnissen/articles/427490.aspx It finally worked on my computer when I used the msi to install it (it wasn't working without that class) but now, I tried to deploy it on other computers (Co-Workers machines at the moment), it doesn't work and their configuration doesn't seem to be different than mine and they have the requirements I found here http://weblogs.asp.net/mnissen/articles/427504.aspx under Prerequisites (The CSA should be dealt with by the custom install class). What's weird is that if I install it via a shared folder, all seems to have been installed fine if I look under tools/option ...Show All
Visual Basic Create a class that disables specific controls
Hi guys, I am considering creating a class that disables certain controls on my form when it loads. Opposed to setting each 'enabled' property to false, i think a class that executes when the form does, is the most efficient. Am i right, is this efficient If so, how exactly would i go about coding it Many thanks in anticipation for your help. Kyle Well it depends upon what your overall objective is...If it is to just disable controls on load of a form then you can do that in the designer or you can do it in the load event of the form. kitsch wrote: Opposed to setting each 'enabled' property to false What method would your class use to disable the controls ...Show All
Windows Live Developer Forums clickable polyline/polygon
We can use pushin to create a clickable point to display information, what about clickable polylines and polygons For example, there is a street closed due to pipe line break, or new construction cause 2 miles of interstate highway closed, etc. I want to be able to do similar things with those lines, for example, hover or click on the line, and get information popup window, like those push pins. I know you can not attach events to a line for now, what about future versions I want to know if this can be done in client side, not capture the clicked point and send an AJAX request to a server performing spatial query on that location. Thanks a lot, Yup, that's MUCH better, and that's what I'd like to do. But ...Show All
Software Development for Windows Vista icmp.lib for VS 2005 or new Windows Platform SDK
icmp.lib is included in the VS 2003 platform SDK but not in the 2005 or the March 06 Windows Platform SDK. Where can I get the latest version of this library Is is part of another SDK I'm moving all my code previously built using VS 2003 to VS 2005 and I do not want to keep any of the VS 2003 directories, etc. What do I do in this case Should I keep using the icmp.lib that is in the VS 2003 platform SDK even though I'm using VS 2005 Thanks. Can someone from MS reply to this Having same problem. Just copying the library from VS 2003 does the trick but as noted above it might not be the latest version. Content of the header hasn't changed at all, just the date and time stamp (not th ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How can I pass Cubemap texture into Pixal Shader ?
Q1: How to contruction a samplerCUBE in .fx file 1. I import my static cubemap texture into content pipeline TextureCube mySkybox; 2. In LoadGraphicsContent() mySkybox = content.Load<TextureCube>("Contents\\skybox"); and now everything is ok. The question is how can I contruct a samplerCUBE in myEffect.fx file Q2: How to create a dynamic cubemap Q3: How can I setup VC# express so that I can have HLSL language higt light when I edit *.fx in VC# I am trying to use a glass shader for one of my objects and when I try and load the Cube asset I get a System.InvalidOperation exception with the me ...Show All
Visual Basic Suppressing events such as text change
how do i or can i suppress events such as text changed. cos i want to set text in code and hence so not need it to be validated and stuff Hi, You could use the tag property of the textbox to hold a string value as the default value. E.G. textbox1.tag="myDefaultTextHere" Then validate it and replace it with.>> textbox1.text=textbox1.tag Would that do it for you You could force a default value and in the textbox1_textchanged event say MsgBox("You are not allowed to change this text this way, okay.") textbox1.text=textbox1.tag Regards, S_DS ...Show All
.NET Development Microsoft Excel 2003 interop + COM object releasing
G'day, I recieved an unusual error message from a VB.net 2005 application that automates excel and wanted to confirm the correct way to shut down excel automation components. The user got a new PC the other day and started to get the following error messages. 'Creating an instance of the COM component with CLSID {00020820-0000-0000-c000-000000000046} from the IClassFactory failed due to the following error: 80010105'. So I assume this is an Microsoft Excel 2003 automation error. I reviewed the code and found a cross post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=344206&SiteID=1 suggesting that GC.Collect() should be Marshal.ReleaseCOMObject(objExcelApp). Is that correct for a Microsoft Office PIA component Here ...Show All
.NET Development Executing a method in a given thread context
I'm porting win32 code (non visual component or "user control") to .NET. In win32 code, I was using Windows messages between threads to signal events form a worker thread to another thread. This was done to make sure an event handler was executed in the context of the thread having created an instance of the component class. The [non visual] component class use a hidden window to receive the messages from the worker thread it created. Now I'm porting this code to .NET using C# as language. I'm using the socket class and use the asynchronous operation, for example, Socket.BeginAccept to make the runtime use a thread to wait for incomming connections and call my callback function when a connection is available. From the ca ...Show All
SQL Server I need help with xmla query
Hi, I need to do a xmla query for calling more than one prespective. For example: I have a cube with 4 perspectives, but in the xmla query only need 2 perspectives. Cube: Censo Perspectives: Depto. Pais Principal Privado But i only need Cube: Censo Perspectives: Depto Pais Thanks for the example, now I understand what your are after. :) Unfortunately I don't think you can have more than one CUBE_NAME element in your restriction list. What I believe is happening is that the value is being overwritten and the last one is the one that is used. I think you have 2 options 1) fire off 2 separate Discover requests, one for each perspective 2) do not put any re ...Show All
Windows Search Technologies Internet Explorer 7 issue
Going to Tools, Internet Options, General, Browsing History, Delete and History is greyed out. Why Maybe ur history is set to zero days... There is another button called settings on the right side of "delete", open it and see the no of days under the "history tab" Cheers... ...Show All
SQL Server Custom Property Question
I have a custom transform, with a custom property of value 1. My question is, can I change that value during runtime with the value from a variable Thanks Yes, you would use a property expression. When you define the property in the transform itself, you need to enable it for expressions through. Set the IDTSCustomProperty90 ExpressionType property to DTSCustomPropertyExpressionType.CPET_NOTIFY. ...Show All
