krisg1984's Q&A profile
Windows Live Developer Forums Why are all the pushpins in the SDK demos misplaced?
I am curious why the pushpins in all of the Interactive SDK samples are not properly handled. As you zoom in and out on the map, the point that the pushpin is pointing to moves. For example, bring up the Interactive SDK and select Use pushpins->Add a default pushpin from the left menu. A pushpin is placed on the map pointing near the northern border of Nebraska. Now zoom out once. The pushpin is now pointing to the center of Nebraska. Zoom out again and the pushpin is in Kansas! The reason is because it is positioning the center of the pushpin image, not the "point". This is easily fixed with CSS styles, which can be embedded in the HTML sample code. The same occurs on all the other samples I have looked at. I am using Firefox ...Show All
Windows Live Developer Forums Live Communication Server and Windows Live Messenger
Is there anyway I can connect to Live Communications Server using Windows Live Messenger without signing on to MSN I just wanted to use it for Internal use only within the organization At this time there is no way to directly connect the Windows Live Messenger client to a LCS server to support the scenario you've outlined (use WLM client but keep the traffic within your organization). Cheers, Todd Biggs, Windows Live ...Show All
Visual Studio Express Editions Controlling auto-increment in identity column in database
Hi, Is there a simple way to stop the auto-increment in a database relentlessly counting upwards, even when records are deleted I'd like the identity column to be based on the number of records in the database in some (but not necessarily all!) of my tables, if this can't be done through properties, can someone suggest some simple code to achieve this Is it even possible to have an identity column without auto-increment Many Thanks Ok well I took this advice on board and got around the problem another way, my real problem is that I don't know enough (or anything) about sql statements, thanks for the help anyway. ...Show All
Software Development for Windows Vista Creating Execution Contexts
I have a sequential workflow and 3 child activities. Now my goal is to make my workflow execute again from activity 1 when I'm finishin to execute the second activity (return back). What I'm doing to achieve that is overriding the Execute method on my workflow to provide some custom behavior and bind to the Closed event of each workflow. Like this: protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext) { foreach (Activity activity in this.EnabledActivities) { if (activity is ControlFlow.ControlActivity) { ControlActivity controlActivity = (ControlActivity)activity; controlActivity.Closed += new EventHandler<ActivityExecutionStatusChangedEventArgs>(controlActiv ...Show All
Visual Studio Adding via code database fields to details / page header sections using Full verison?
Hi there, I have just downloaded a 30 day trial to see if i can build a report dynamically i..e. The report consists of a header and a footer but Nothing else... well a details section but its blank... I need to be able to add objects to it from c# i..e.. Put at (x,y) with color Red of field name (from db) "ClientName" in details section.. And then in page header put (x,y) (just above the ClientName field a text object of "Name of Client" with a blue background and white text and font 9pt.... Hence i can use the same report but build it dynamically a runtime to support different fields and datasets... I already have the dataset dynamically working.... but need to be able to add fields... I think its something to do with ...Show All
Visual Studio Service pack or hot fix of CR for VS2005
Where can I find service pack or hot fix of cr for vs2005 I've searched in business object site, it only has cr for vs2002 and vs2003. I've download a hot fix of cr for vs2005 before, which fixed a bug in previewing report with stored procedure, but I lost the link now and cannot find it in their site. It works!! Thank you very much!!! Do you know the hot fix link for 64bit runtime too ...Show All
.NET Development How to convert XML document definitions into a StringBuilder request
I have a XML WSDL definition document that i need help in translating into a StringBuilder for a web request that I'm calling. Also within the StringBuilder, I need to reference a timeout parameter from the Web.config file. How can this be done Any help is greatly appreciated. Thanks. Here's a snippet of the XML document WSDL definition(replaced with generic names): 1)Representing header: < xs:complexType name =" sourceInfo "> < xs:sequence > < xs:element name =" Timestamp " type =" xs:dateTime "/> < xs:element name =&quo ...Show All
Windows Forms is it normal that linkLabel control reacts extremely slowly
I tried the LinkLabel solution and it is so slow. I followed the msdn example for LinkLabel here: http://msdn2.microsoft.com/en-us/library/system.windows.forms.linklabel.aspx i get the target page 30 seconds after I click on msn link in that example. Is that normal To let you know my Internet connection is really fast. Thanks if any advices. well I guess it is expected since its a UI control. It probably may have something to do with loading the right assemblies etc... since its a UI control you are trying to load/execute from a dll assembly. You really should have UI controls placed outside of a dll as it makes more sense and is really the practice that should be followed. the Dll's should contain ...Show All
Microsoft ISV Community Center Forums Dialog Sheet not showing up
All, I have a situation where I am upgrading some old Excel files to Excel 2003. One of the files ("Main") calls one of 6 other workbooks depending upon the users selection, cycles through some data, creates a graph, and shows a dialog box (from a dialog sheet on the "Main" workbook) asking if the user wants to continue or various other options. My problem is that with one of the 6 other workbooks ("400"), the dialog box does not show up unless the user physically clicks the Excel "400.xls" button on the taskbar (i.e. the dialog box comes up but is hidden behind the current Excel window). The Dialog sheet (written in Excel 97 or before) as well as all of the VBA code is in the "Main" workbo ...Show All
.NET Development Qestion about NGEN.exe
Hi,Guys, As U know, use NGEN.exe, we can generate the native image of .Net assembly. I did a test, I wrote a Helloworld.exe and use NGEN.exe install helloworld.exe. Use a system monitor, I found a new exe file: C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\Microsoft.VisualC\55a044133675954cbc41fb0d1ba34fee\helloworld.ni.exe , I run the helloworld.ni.exe , but an error message said that it was not a win32 application. Now my question: Is there anyway we can get the executeble native image Thanks! You can't from your own application, unless you are using the unmanaged hosting API to host your application. Another option is to start the unmanaged debugger and watch the modules loaded, yo ...Show All
Visual Basic How does one Integrate MySQL with Visual Basic 2005?
I want to make a simple test using My SQL and the following tables: 1-Client 2-Invoice 3-Invoice Detail Then I want to be able to using these methods: Add Edit Delete Print Print Preview The Client Table and the Invoice table will be in Form View The Invoice Detail will be in GridView Is there Any Sample that I can get somewhere on how to emplement this There are two main methods of connecting and communicating with MySQL, via ODBC or using the MySQLConnector for .Net, using either method is similar to accessing other databases, DataAdapters etc. For more information and examples see http://www.mysql.com. For either method you will need to download the connector from the MySQL website. I use it a lot and pre ...Show All
Software Development for Windows Vista Bug with Vista and InkAnalyzer
Hello everybody, this is the real Problem of the thread I posted some hours ago. I had problems with painting ink into a Bitmap - I could'nt see any ink. But it was no problem of the painting-prodecure itself - there really was no ink. ;) Before my program draws the ink into the Bitmap it reads the RecognizedString from the used InkAnalyzer. And since Windows Vista this InkAnalyzer works abnormal - it deletes every stroke out of the InkOverlay-Object whenever I call the GetRecognizedString-Method of the InkAnalyzer. This happened not when running under Windows XP. Is this a known bug Or is it a feature ;) Well, no. I guess it's a bug. Is there any workaround beside not using this method anymore Will there be an upda ...Show All
Windows Search Technologies Anyone know when the Administrative Guide for V3 is due for release?
Anyone know when the Administrative Guide for V3 is due for release Thanks Ben It would appear that the version 3 adm file is missing many of the settings that was in the previous version, including your Outlook express settings. I have created myself a custom .ADM file which includes some of the settings from the previous .ADM file however it would appear that version 3 does not like these. Here is my test ADM file, if anyone can confirm that Version 3 still uses the registry keys it would be great. CLASS MACHINE CATEGORY !!WindowsComponents CATEGORY !!Search KEYNAME "SOFTWARE\Policies\Microsoft\Windows\Windows Search" ; ------------------------------------------ ...Show All
Visual Studio Team System Load Testing > Counter Sets > 'Threshold' Values > Visual Studio 2005
I am very confused with Counter Sets 'Threshold' values........ There are 3 categories under Counter Sets which are: Load Test, Controller, Agents and under each category there is a list of sub-category. Questions: Q1: Is there any way I can find out what is the average 'Threshold' values for each category for my website Q2: Is there any online resource or help available which I can use as a guideline to set 'Threshold' values Q3: Do I have to set all 'Threshold' values for all categories or I can leave some blank If I leave them blank than what is the default values Are they all set to 0 Q4: At the moment when I run a load test I get the following 'Threshold' errors even though I ...Show All
Visual Studio 2008 (Pre-release) Extracting the xsd and xml contents from infopath(xsn) file
Hi How do i extract the schema and xml contents from the xsn file My scenerio is something like this. I need to send the xsn file to the client and the client will read the required information like schemas xml contents from this xsn file. Aneel, If you haven't already gotten an answer to any of the other posts you've made with this question, please visit the Infopath newsgroup: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.infopath&lang=en&cr=us chad ...Show All
