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

Software Development Network >> Helder Santos's Q&A profile

Helder Santos

Member List

enric vives
Java Q
bud1024
james_m
RichardSw
andreas_or
Ashis_dasgupta2001
Tan .NetCF
David S. Anderson
Can-Ann
fripper
S Hussain
thomaskremmel
David Sadler
martona
Matt Morehead
Sebastien A
igor1960
arcliner
Anand Raman - MSFT
Only Title

Helder Santos's Q&A profile

  • Visual C# Question about threads

    I created a socket and am asynchronously listening to a TCP port. This calls a method in another thread when a connection comes in, which puts the data into a buffer and sets a boolean variable to true. Is it safe to fill a buffer and set a boolean value from this other thread If so, how can I set an event when a boolean variable is set to true (in the main thread) to alert my code that data is there Or is there a better way to do this Thanks for any help. From the sounds if it you are working to implement a Producer/Consumer design pattern ... the only problem with your implementation from the sounds of it is that it is not thread safe. Once you've made the operation thread safe so that no two ...Show All

  • Visual C++ error LNK2001: unresolved external symbol

    >------ Build started: Project: siptapi, Configuration: Debug Win32 ------ 1>Linking... 1> Creating library Debug/siptapi.lib and object Debug/siptapi.exp 1>siptapi.exp : warning LNK4070: /OUT:siptapi.dll directive in .EXP differs from output filename 'Debug/siptapi.tsp'; ignoring directive 1>asttapi.obj : error LNK2001: unresolved external symbol "unsigned int (__stdcall* ATL::g_pfnGetThreadACP)(void)" ( g_pfnGetThreadACP@ATL@@3P6GIXZA) 1>Debug/siptapi.tsp : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\Documents and Settings\test\Desktop\siptapi-source-v.0.2.3\siptapi\Debug\BuildLog.htm" 1>siptapi - 2 error(s), 1 warning(s) ========== ...Show All

  • Visual Studio Team System VS 2005 IDE Create SQL Store Porcedure like 2003 IDE

    I use to have an option within the 2003 IDE to generate SQL Stored Procedures, however using the new 2005 IDE and SQLDataSource I can only generate dynamic SQL stagements or refer to existing Store Procedures. Can 2005 IDE generate SQL Stored Procedures If so how I have looked through the MSDN library and How to's for this. Doug DrDrain, You won't be able to create a stored procedure from the SQLDataSource wizard in VS2005. But from VS2005 IDE, you can create the stored procedure from Server Explorer (View menu-> Server Explorer). Connect to your database from the "Data Connections" node (by right click on it)->after connecting, go to the Stored Procedure folder for your database-> then right click on your S ...Show All

  • Visual FoxPro Access to Oracle 10g through Oracle ODBC driver. Problem with 64-bit Windows, with Vista

    In WinXP 32-bit, Win2000 32-bit, Win2003 32-bit all OK. In WinXP SP2 64-bit, Win2003R2 SP1 64-bit I can't access to Oracle 10g by hconn = sqlstringconnect('DRIVER={Oracle in OraHome10}; UID=xxx; PWD=xxx; SERVER=ORA10; DBQ=ORA10') return -1 How to connect to Oracle from 64-bit Windows platform Question 2. In Windows Vista (Business, 32-bit) I can connect to Oracle 10g only with administrative privileges. If already exist one connect (with admin privileges) then I can connect to Oracle many times even without admin.priv. Is this errors to Visual Foxpro team ...Show All

  • Visual Studio Express Editions Revision control

    Is there any revision control mechanism available with VC++ Express edition Is there an easy way to roll back to a previous version of an application, or have different versions available for debugging/comparison Thanks, Kumar Yes and no. They can be integrated with a revision control system like Visual Source Safe but they don't come out of the box with a revision control system. ...Show All

  • SQL Server db_dtsadmin role

    Our DBA has given me access to MSDB on the SSIS service on one of our servers as db_dtsadmin. When I try to connect to the server using Integration Services in the connect drop down menu, I get the following generic error msg: connect to SSIS service on server 'xxxx' failed: access is denied. I'm told this role should be sufficient to give me access. Do I need other server access roles to use in conjunction with db_dtsadmin or are we missing something really easy here. Thanks. Thanks. We're still trying to work on this. We followed the instructions on the link (connecting to a remote integration services server) but I still can't connect and still receive the same generic 'access denied' error me ...Show All

  • SharePoint Products and Technologies MOSS 2007 RSS Viewer's XSL Link not working

    Has anybody been able to get the MOSS 2007 RSS Viewer Web Part to work with the XSL Link I have an RSS feed file and a style sheet in the same anonymously accessible location. It works fine if I just point the web part at the RSS feed. If I try to use the XSL link, it fails every time with this error in the logs: RssWebPart: Exception handed to HandleXslException.HandleException System.ArgumentNullException: Value cannot be null. Parameter name: s at System.IO.StringReader..ctor(String s) at Microsoft.SharePoint.WebPartPages.DataFormWebPart.GetXslCompiledTransform() at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform() I started by using the default XSL copied from "XSL Editor..." in the web part. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Please Help me,Some error With Direct Show

    I build the solution named "TransViewer" with the VC++ 2005,the samlpe is in the Microsoft DirectX 9.0 SDK Samples\C++\DirectShow\Editing\TransViewer folder,I get lots of error like this: c:\program files\microsoft sdks\windows\v6.0\include\winnt.h(236) : error C2146: syntax error : missing ';' before identifier 'PVOID64' c:\program files\microsoft sdks\windows\v6.0\include\winnt.h(236) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int c:\program files\microsoft sdks\windows\v6.0\include\winnt.h(7818) : error C2146: syntax error : missing ';' before identifier 'Buffer' c:\program files\microsoft sdks\windows\v6.0\include\winnt.h(7818) : error C4430: missing type specifier - int assumed ...Show All

  • SQL Server Database Location

    Got a couple of questions 1. If you are managing databases in SQL Express with SQL Server Managment Express CTP, why doesnt VBE place the database there where you can see them I can create a database inside SQL Server Managment Express CTP and view its tables, relations,etc. from within SQL Server Managment Express CTP, but when I make a database with VBE it does not show up in SQL Server Managment Express CTP. Also the database that was made inside SQL Server Managment Express CTP cannot be seen from VBE. Why what did I do wrong, or is it supposed to be like that Is that where you would want to place a database for multiple pc to share 2.Login Question ;-----shouldnt post this here but, Is there a reason why you dont want to use ...Show All

  • Windows Live Developer Forums Bug in a Route.Itinerary.Segment.Distance

    Hello people, while i was debugging an application i'm working on, i found a bug (i guess so...)in the distance info in a route segment; you can test it at http://local.live.com/ (using shortest time and miles options). The bug is in the 9th segment between Washington [Washington, D.C.], District of Columbia, United States and Miami, Florida, United States. The total distance of the route is 1062.9mi, but the distance in the previous segment is 794mi!! However, if you query the route between that segment and the next one, the distance is correct... I hope it helps to correct it. greetings Dario Aznar - Argentina Hi John, someone out of this forum explained it to me that i was m ...Show All

  • Visual Basic Culture date format and system dat format conflicting

    my VB.net 2005 Application is My .Application.ChangeCulture( "en-GB" ) the problem is, my OS dateformat may be will not be matching my application culture. e.g. 7 april 2007 at my application = 2 July at my OS my prblem is: when I send 07-02-2007 to my database it will save depends on my OS format then when I retrieve the value it will be 02-07-2007, it changed from april to july Thanks Mr. SJWhiteley Very nice words and it is soo logically but let me say some thing: 01-02-2007 is the first of Feb. but also it is 2nd of Jan for other culture, now, how the database will differ between them, while there is no talks between DB and Application Now, depends on your logic the circle must be like fol ...Show All

  • Visual Studio Tools for Office how to enable excel add-in installer in vsto 2005 if disabled

    hi i have create a excel add-in for office 2003 using vsto 2005 SE. But after builting and running application i am not getting the installer or any setup. plzz help me out of it. Hi, I am closing this thread due to inactivity. If this is still a problem. please post a new question. Thanks and regards, Darryn Lavery [MSFT] ...Show All

  • .NET Development Remoting timeout issues

    Are there any known workarounds for the really annoying lengthy remoting timeouts on down servers This is particularly a problem when using .Net remoting and the server isn't available, it can take up to 2-3 minutes for the line of code to timeout when accessing a remote object. I have tried implementing a Ping class before I access the object, but sometimes this just doesn't work if the server is in the process of shutting down... Obviously having an application hang for that long is unacceptable.. I am threading everything however my application will not cleanly close if the thread is hung waiting for a socket timeout. A sample for you.. correct, if the machine is in the process of booting then a ping solution could gi ...Show All

  • SQL Server Dymamic connection strings in SSIS...

    I was reading through the following post regarding dynamic connection strings: http://forums.microsoft.com/TechNet/ShowPost.aspx PostID=812814&SiteID=17 In this posting they talk about setting up a configuration file to setup the connection string, but I am not sure how to apply that connection string to my connection manager. When I go into my configuration file, I can see the connection string, and when I go into the advanced properties of the connection manager, under the "Named ConnectionString\FileName" property, I set the property value to the name of my configuration file, but when I test the connection I get an error that the connection string property has not been initialized. Can someone please assist me w ...Show All

  • Visual Basic Timer Events Not Firing in Windows Service

    Hi All: I am trying to upgrade my vb.net 2003 windows service project to vb.net 2005. The 2003 project runs great and the timer events fire; however, the 2005 timer events in 2005 will not. Same code - just compiled with different versions of vb.net Any ideas Doug. One thing you may also want to check is that the timer is the 'correct' timer so to speak. The system.windows.forms.timer does not work for me correctly and I normally use the system.timers.timer instead. You can manually add it to the toolbox using add/remove since it is not there by default. ...Show All

©2008 Software Development Network