Sergio Ortiz's Q&A profile
Visual Studio Express Editions running another .exe application
Hi i'm trying run another .exe form a folder called apps how do you do this Dim p As Process = Process . Start ( "C:\App\TheName.exe" ) ...Show All
Smart Device Development Application to connect every time to the same network
Good afternoon gentlemen, I have an app the works with Wireless and a WebService. Sometimes the network I use get down and the pocket tries to connect to the next Access Point it finds. I would like to know if there is an app that forces the pocket to connect to only one network. I would appreciate a generic software that would run on many pockets like HP, DELL and Opticon. Best regards. NETCF uses the connection that the underlying OS'es Connection Manager gives us. You can try provisioning connection manager to connect to only one network. More information can be found at: http://msdn2.microsoft.com/en-us/library/ms889496.aspx Thanks, Sandy ...Show All
Visual Studio Express Editions help>>>Microsoft Visual C+++ Runtime Error
i got tis problem when i m loading maple story......plzzz help me i've run out of solutions.....TQTQ This error has nothing to do with C++. These forums are for development issues, not general software troubleshooting. Contact the MapleStory team for advice on how to fix this. ...Show All
.NET Development Sticky SqlCommand session
Hi all, After executing a SqlCommand, and closing its' connection, and even manually disposing everything off... sp_who still says that the session is there, untill I close the whole application. It's a Big deal: because of the locking i'm creating in that SqlCommand, that never release... untill i close the application. how can get rid of the SqlCommand session and does this relates to connection pooling ... SqlConnection sqlCon = new SqlConnection(...); sqlCon.Open(); SqlCommand sqlCmd = new SqlCommand("create database foo", sqlCon); sqlCmd.ExecuteNonQuery(); sqlCmd.Close(); sqlCmd.Dispose; sqlCmd = null; sqlCon.Close(); sqlCon.Dispose(); sqlCon = null; ... I have my foo databas ...Show All
SQL Server how to call web service from within Script Component ?
Appreciate if anyone can show me the code to call a web service from Script Component I cannot use the Web Service Task. Because parameters to the webservice are from rows of data inside Data Flow Task. Thanks !! I would just maintain your own XML schemas, and pass the values in through configurations. I'm not sure if there is a simpler or easier approach to a package that has a dynamic schema. Your destinations will have problems with flucuating schemas as well....and from a brief search on the forum building a package dynamically at runtime may be your only option. ...Show All
.NET Development How do I remove or stop empty namespace created when apply xsl code to xml?
Hi I have a code to remove all empty elements useing XSL but the out put xml file look like the one shown below My question is How do I remove or stop empty namespace (xmlns="") beieng created. Note: My xsl code top element has <TalkMessage xmlns =" http://www.mydomain.co.uk/CM/envelope "> If I use <TalkMessage> then the output xml file is fine Xsl code <xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform "> <xsl:output omit-xml-declaration="yes" indent="yes"/> <xsl:template match="DataSet"> <TalkMessage xmlns =" http://www.mydomain.co.uk/CM/envelope "> ''''''' ''' ...Show All
.NET Development SoapInputFilter Equivalent for Framework 2.0
Does anyone know what the Equivalent for SoapInputFilter is for Framework 2.0 Hey Buddy, As far as I know, SoapInputFilter is not part of the .Net framework. It is added as soon as you install the Web Services Enhancements. If you install the latest WSE (3.0) , this will provide a SoapFilter that's usable both as an input and as an output filter. The documentation on this states the following: " SOAP filters in WSE 3.0 have only one base class, which is the SoapFilter class. Previous versions of WSE had separate input and output filters. " ...Show All
Visual Studio Tools for Office Comparing two Word documents or templates
Are there tools or doucment techniques for comparing two Word Document or Word templates or a Word Template with a Word document Is there an Office Word and Excel SDK Hi Jim The best place to ask questions about working with Office applications is one of the application-specific newsgroups. See the "Please Read First" posting at the top of this forum. You can find even more groups using this interface: http://www.microsoft.com/communities/newsgroups/default.mspx Word itself has a tool: Tools/Compare and Merge document I know of no particular tool for developers. There are no SDKs in the sense you probably mean it. You will find SDKs on the MDSN site, but they don't really discuss the object models. They cover ...Show All
Visual C# NoOp for specified amount of time
hello, Once I reach a certain point in my app, I need all of my threads to keep running for a specific amount of time (in this case, 2 seconds). I think I want to NoOp, since have the threads sleep, or wait, or do anything where they aren't actually doing their task won't work. Is there some easy way to do this Thanks for any help. Could you provide more details about what you're trying to accomplish Why do you need the thread to do useless work rather than simply sleeping -Tom Meschter Software Dev, Visual C# IDE ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Great Texture Problems! Help?
Hallo! Can anyone tell me if there is a way to create textures, that have Width and Height not powered by 2 I am trying to do this on a laptop with SiS 650 Chipset and the CreateTexture function fails if the Width and Height are not ^2 value. And more, on a Via chipset, despite there this problem is absent, the mapping of the textures is awful if the texture dimentions are not ^2. I am using D3D to draw textures as 2D images on the screen, so if there is something designed especially for this case (but D3D, not DDraw :), please, please, please reply ! P.S. Also on an Ati video cards texture coordinates beyond 2.0 do not map 0_0... Have you any clue how to change that Yes, i know it is more efficient, but the point is i n ...Show All
Visual Studio Express Editions How to use matlab m file in C#?
Hi, How to use matlab m file in C# thanks, Frank I think this is something you should check up and discuss with the matlab community. http://www.mathworks.com/matlabcentral/ ...Show All
Smart Device Development Smart Device Programming Working example
Hi, I try to write a simple application with winform and web service for smart Device ( Pocket PC 2003 SE) in VS2005. In the toolbox, I could not find any object such as textbox, button or label controls at all. I downloaded some examples application for smart device in Microsoft website and none of them are working ( may be I do not know how to configure to make those work). Do you have any simple working example like "Hello Wolrd" for me to take a look Regards, JDang Hi, see these links: http://office.ifd-sofia.com/vs1.jpg http://office.ifd-sofia.com/vs2.jpg Regards ...Show All
Visual Studio Modify a key in web.config using XML.ModifyFile (Microsoft.Sdc.Tasks)
Hello Using the XML.ModifyFile (from Microsoft.Sdc.Taks) to modify an attribute works fine, but how can I modify a key in the web.config file Under /configuration/appSettings in web.configI have the following key: < add key =" myKey " value ="ValueToBeChanged " /> <ModifyFile Path="web.xml" XPath="/configuration/appSettings" AttributeName="myKey" NewValue="MODIFIED" Force="true"> </ModifyFile> Do I have to use a special XPATH syntax to specify the key here I am not sure what the different attributes in the ModifyFile task do, but here are somethings that might help you out ...Show All
SQL Server How to output data to a new table
Hi I run a SQL query to select a few colums of data using a select statement, I want the output to be stored in the new table which can be defined in the SQL statement how can I do it Your helpwill bw highly appreciated. If you want to keep the old values you should do it like this: INSERT INTO Average_Readings ( avg1, avg2, avg3, avg4, avg5, avg6, avg7, avg8, avg9 ) SELECT AVG(read1) as avg1, AVG(read2) as avg2, AVG(read3) as avg3, AVG(read4) as avg4, AVG(read5) as avg5, AVG(read6) as avg6, AVG(read7) as avg7, AVG(read8) as avg8, AVG(read9) as avg9 FROM [DATA_CONTROL].[dbo].[Data_Readings] ...Show All
Visual Studio 2008 (Pre-release) error: The mapping for Entity Container 'HRISBusinessModel.HRISArchitectureWorkbench' was not found in Workspace.
Hi, I have a problem using ADO.NET vNext... and cannot find a solution, please help :-( I use now the following connection string : <add name="HRISArchitectureWorkbenchConnectionString" connectionString="metadata=D:\\HRISWorkspace\\HRISEDM\\Domains\\Person;provider=System.Data.SqlClient;provider connection string='Data Source=HRISDEV02;Initial Catalog=HRISBusiness;Integrated Security=False;User Id=HRISBusiness;Password=fakepwd01'" providerName="System.Data.Mapping"/> and I got the following error : "The mapping for Entity Container 'HRISBusinessModel.HRISArchitectureWorkbench' was not found in Workspace." and the stack trace: System.Data.Metadata.WorkspaceMappingCache.GenerateViews(M ...Show All
