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

Software Development Network >> Jaime Stuardo's Q&A profile

Jaime Stuardo

Member List

nbrege
MSP.Saami
_joe_
Simon Jefferies
michaelp
Ultrawhack
Dorfer
FinnErik
BennyWang
wwwxwww
Code-Master
kiwijason
DayTrader
Baok
Qingbo
nharendt
LokiSD
Dr.9
Learning VB
myGreenBird
Only Title

Jaime Stuardo's Q&A profile

  • Software Development for Windows Vista TrackingDataItem data_str nor data_blob are populated

    I get records inserted into trackingdataitem but test_v does not have data_str nor data_blob populated. it's a string variable and it is set while in webresponseactivity executing sendingoutputactivity code this is state machine workflow and i'm using webservices autogenerated from the workflow designer. this is my trackingprofile. it is saved in dbo.trackingprofiles with the highest version for this workflow type. < xml version="1.0" encoding="utf-16" standalone="yes" > <TrackingProfile xmlns=" http://schemas.microsoft.com/winfx/2006/workflow/trackingprofile " version="1.0.3"> <TrackPoints> <WorkflowTrackPoint> <MatchingLocation> & ...Show All

  • Visual Basic print preview

    why would a printing to the screen (locally) attempt to communicate over a VPN is this an option i can shut off i am having an issue where print previewing without the vpn is nice and quick and print previewing with a vpn hits the vpn like its trying to send information across the network...but nothing should be going across... Thanks Dan Print preview uses the printer driver to provide the preview. This driver will probably try to communicate with the actual printer, looking for stuff like currently selected printer options. Try installing the printer locally and make that local printer your default printer. ...Show All

  • Internet Explorer Development Does the IE7 Favorites Import/Export Wizard support Unicode?

    I have Chinese names and URLs in my favorites list. When I tried to export the favorites using the Import/Export Wizard, I examined the output xml file (bookmark.htm) and all the Chinese characters are gone, replaced with " ". I have the various Chinese languages (zh-HK, zh-CN, zh-TW) in the list at Internet Options > Languages but apparently this didn't matter. Does the IE7 favorites Import/Export Wizard support Unicode, or is there a way to make it support Unicode Thanks! Thanks for looking into this. I manually edited the output file "bookmark.htm" in notepad to correct the " " back to the original Chinese characters, then saved the file in Unicode. I ...Show All

  • Visual Studio Team System Problems accessing TFS from a Web Service

    Hello, I have a application that connects to the TFS and retrieves a Work Item. (it's a web service that subscribes to the WorkItemChangedEvent, but since the event does not contain all custom fields of the Work Item, just the core fields and the changed ones, I have to call TFS to get the rest of the fields...) The application has worked for two months, but now I'm running into this every now and then (i.e. some calls succeed, and some fail): Offending code: workItem = workItemStore.GetWorkItem(tfsWorkItemID); Exception: "Cannot pass a GCHandle across AppDomains" Now, I have SP1 installed which is supposed to take care of this (before SP1, you'd get this error every time - it was impossible to access TFS from a web service). Whe ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Live camera

    Anyone know of a way to grab image frames from the Xbox live camera on a PC. I know there is nothing in XNA yet but is there another way to grab the frames - has MS released an API D Thanks ZMan, I'll have a look at that. I'm kinda hoping that we will be able to grab image frames through XNA soon - I have interesting research that I want to do. D ...Show All

  • Visual Studio 2008 (Pre-release) WCF (client) under SQL/CLR

    As far as I can tell, this configuration (WCF client running inside SQL Server) is "officially unsupported", but has anyone been able to get it to work Right now I'm consuming a WCF service from inside SQL/CLR by using the "classic" web reference mechanism. I'd like to be able to use real WCF on both ends. ...Show All

  • SQL Server Error in SQL 2005 cluster installation

    I am trying to install SQL 2005 in a 2-node Windows 2003 cluster. I have tried both upgrade and fresh installation, but got same error. The error stops the installation while checking system configuration after installing prerequisites. Any idea The log file entry is as follows:  ******************************************* Setup Consistency Check Report for Machine: --SERVERNAME-- ******************************************* Article: WMI Service Requirement, Result: CheckPassed Article: MSXML Requirement, Result: CheckPassed Article: Operating System Minimum Level Requirement, Result: CheckPassed Article: Operating System Service Pack Level Requirement, Result: CheckPassed Article: SQL Compatibility With Operating Sys ...Show All

  • .NET Development Not updating database

    I have an application that contains a listbox and a text box. the list box obtains information from database table accounts.acctnm with a primary key 1-32. when i hit seems to update the dataset but if i exit and get back in everything is back to default Private Sub Manage_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'KeoFlexDataSet.Accounts' table. You can move, or remove it, as needed. AccountsTableAdapter1.Fill(KeoFlexDataSet1.Accounts) End Sub Private Sub DeleteButton_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DeleteButton.Click AccountsBindingSource1.EndEdit() ...Show All

  • Visual C++ Problem : D3D-overloads : from MVStudio 2003 to 2005

    I have an application running in Studio 2003, which use #define D3D_OVERLOADS. At this moment I have installed Microsoft Visual Studio 2005 but my application doesn't work anymore : Cannot open include file: 'd3d.h' ... Cannot open include file: 'ddraw.h'... Can anyone give my tips on how to solve this problem Thanks I have a similar problem - porting a project from VC6 to VC2005, the d3d.h and d3dtypes.h files are missing - they are there in the VC6 VC98\Include directory, but not anywhere for VC2005. By installing DirectX SDK, do I understand correctly that I should download and install the 509MB dxsdk_oct2006.exe file, or am I missing something Thanks in advance. ...Show All

  • Visual Studio Project References

    I am having a problem that is quite annoying. I have a web project setup that is under source control via source safe. I have a code library that contains all business/data logic. Now, everytime I add a reference to the new code library DLL's, it removes the bindings from source safe, so when I perform a Check In, the new DLL's never check in. The way I get around this is deleting the DLL's from the web project's bin, and manually dragging and dropping the DLL's into the web projects bin folder. It then Adds them to source safe. Any way around this What is the normal procedure for this situation then We have several projects that need to be referenced by our main web project. Many designers and developers alike work on the web ...Show All

  • Visual Studio 2008 (Pre-release) streaming webcam video inside WCF

    bit of a newbie, I am trying to stream video from a webcam inside a web service. I am having little or no luck finding decent information about using webcams with WCF. Any information would be greatly appreciated. Can you try to save your captures to disk and then open them which gets you an IO.Stream object If you can do this and get it working, we can take the next step for WCF streaming ...Show All

  • Architecture Business Logic & SQL

    Hi, has anyone in here got some guidance or direction for Patterns and Practices on this one When should business logic be put into a SQL Stored procedure and when should it be put into Class object we are debating different architectural approaches and I am looking for some guidance. TIA Referenced post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=55375&SiteID=1 Another rule of thumb: If you decide to design the persistant elements as classes and then define the database, you are probably better with classes having the logic and vice versa. Why you want to leave data access with the team which designed the model ;-) Anyway, there is no one answer. Using stored procedures opti ...Show All

  • Windows Forms radiobutton event set coordinates for image?????

    ok, newer to developing (at least in C#), but I want to have an array of 81 radiobuttons at specified coordinates (done), when clicked they will go to my "placepiece" class (does what it says), BUT i want to input the coordinates of the clicked radiobutton into the placepiece class, in the event code [note, b5 is just ONE of the buttons]and also i do not know how to implement it into the playpeice code after that...where should it go in this code/how should it go there, i tried to set a variable for each button, but got an error...help!( b5.AutoSize = true ; b5.Location = new System.Drawing.Point(330, 90); b5.Name = "b5" ; b5.Size = new System.Drawing.Size(37, 17); b5.TabIndex = 61; b5.TabStop = true ; b5. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Question regarding making landscape in 2D

    My question is rather simple. I have a texture and a landscape map to apply it to. It is possible to make a rectangular sprite in XNA, but is it possible to cut a part from it Here's an example for better understanding of what I'm aiming for: http://img335.imageshack.us/img335/9972/examplent7.jpg The only way I can think of is to make a different texture for every sprite, changing its shape every time. But that really it not the easiest and smartest way... I'm a little confused as to why you want to cut out a part of your texture given your illustration. Assumming that you know which parts to cut out beforehand, then adding an alpha channel to your texture would be the way to go (as others have ...Show All

  • Visual Studio 2008 (Pre-release) Crystal report inside of "WPF" user control

    Can someone help me with a code sample which shows how to add a crystal report viewer in user control or how to add a ".net 2.0" user control in a "WPF" user control. Thanks in advice, Ovidiu Ovidiu: I've answered a couple question similar to this but I don't have time to look into the details for crystal or user controls. Take a look at these threads and see if they help: [using an infopath control] http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=856226&SiteID=1 [using the web browser control] http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=845784&SiteID=1 ...Show All

©2008 Software Development Network