Software Development Network Logo
  • VS Team System
  • Architecture
  • SQL Server
  • VS Express Editions
  • Microsoft ISV
  • Visual FoxPro
  • .NET Development
  • Windows Live
  • Game Technologies
  • Visual C#
  • Visual Studio
  • Smart Device
  • Visual C++
  • Visual J#
  • Windows Forms

Software Development Network >> Jhonatas M. Rodríguez's Q&A profile

Jhonatas M. Rodríguez

Member List

phanf2
ivanc
Moshik
marko jovanovic
tamtararamtam
KhalidMirza
Liren Zhao
Gonzo11
Haddibhai
Phillipe
ASPdeveloper
prof.gabi
Jake52
Frank104
Wolfgang Al
Anatoly Ponomarev - MSFT
Hoakie
codecraftsman
elbarto
Valerio Maarek
Only Title

Jhonatas M. Rodríguez's Q&A profile

  • .NET Development XmlValidatingReader / default namespace

    hi, small code app i made to simulate my problem : just paste it in a class and run as console app: using System; using System.Xml; using System.Xml.Schema; using System.IO; namespace ConsoleAppXSDTestApp { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main(string[] args) { try { string sXSD = "<xs:schema xmlns:xs=\" http://www.w3.org/2001/XMLSchema\ " targetNamespace=\" ...Show All

  • Visual FoxPro Is it possible 2 generate windows report from FoxPro 2.6??

    Hi all, Is it possible to generate windows reports using FoxPro 2.6 I want 2 generate a report from FoxPro 2.6, which should look like windows reoprt (with font size changed, bold, italized one) Wheather it is possible to generate report using visual foxpro by using same DOS based DBF (FoxPro 2.6) Thanks in advance STN What I have done is to have my dos application print to a file with a random name but fixed extension. Then I have a second program written in VFP to search that directory every x seconds to open the file and print the report.  For fonts, lpp etc I embed commands that is parsed and interpreted from the printi ...Show All

  • Visual Basic My.Application.Log.WriteEntry writes double entries!

    Has anyone had the experience in VB 2005 Beta 2 that when using the FileLog listener, each time My.Application.Log.WriteEntry is called to write a message, the message actually gets written to the <appname>.log file twice The log file is stored in directory "C:\Documents and Settings\<userid>\Application Data\<company name>\<appname>\1.0.0.0" with a file name of <xxx>.log and contains entries as follows: DefaultSource Information 1001 20050718 15:25:53-SPSSearch Starting. DefaultSource Information 1001 20050718 15:25:53-SPSSearch Starting. DefaultSource Information  ...Show All

  • SQL Server Variable locking question

    You have 2 options for locking variables for write inside a script task: 1) Put them in ReadWriteVariables 2) Use dts.VariableDispenser.LockOneForWrite(...) Is there a possibility that using option #1 would maintain a lock on a variable for a significantly longer time than option #2 We have an intermittent (although, due to increasing frequency, critical for us ) issue with variable deadlock and were wondering whether converting to option #2 would help us. We have a number of symptoms: Script files fail to load from a script task. We don't get much else as we suspect the variable locking is happening in ...Show All

  • Visual Studio Team System Importance of Work Items - Remaining Work

    Hello, When I start the report "Remaining work" I get the number of workitems that have a specific state (closed, active, resolved etc.). But this report does'nt care about how "big" a Workitem is (work hours). For the project manager this fact might be more important than the number of work items to keep track on the project progress. Can this easy be done by editing the Report with the report designer Do you have something like a "quick start" for the reporting services Thanks for your help, Tobias This website has a couple of videos that I found helpful when trying to learn how to create reports. http://vstsrocks.com/tutorials/d ...Show All

  • Software Development for Windows Vista How to pass a Strongly-Typed Dataset to a workflow

    Hi, Can anyone tell me how to pass multiple parameters one being a strongly-typed dataset to a workflow. It would be good it I could pass the dataset by reference too What I'm trying to achieve is two-way communication between the host and the workflow via a dataset. There doesn't seem to be many examples of this on the web - can anyone help Thanks! The 'Ref' Parameter type in workflow is somewhat misleading, in that it doesn't actually mean you are passing the object by reference.  What it means is that you can read the parameter again, after the workflow completes, using the OutputParameters collection (which is passed in ...Show All

  • SQL Server Question on parameter.Add for an SQL Insert

    I'm trying to update my database table from my dataset. In the following statement, the represents the "size as integer" of the SqlDbType of DateTime and I can't fiqure out what to put there. command.Parameters.Add( "@ItemDate" , SqlDbType.DateTime, , "ItemDate" ) In the following statement I understand the "50" since it is the size of the field, but I don't understand what to do with the DateTime. command.Parameters.Add( "@ItemText" , SqlDbType.NVarChar, 50, "ItemText" ) Thank you for your help This chart might help: http://www.carlprothman.net/Technology/DataTypeMapping/tabid ...Show All

  • Visual Studio Team System [Team Builds] Strange Warnings

    Hi, I've installed TFS B3R and TeamBuild TeamProyx etc. It worked well since today. When i launched Visual Studio 2005TE this morning, i got these 4 warnings : The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'TeamProject' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. The element 'ItemGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'SolutionToBuild' in namespace 'http://sc ...Show All

  • SQL Server Beware the UNION ALL - it can swallow rows...

    Just for all you June CTPers as a warning..  I have a UNION ALL that, at random, decides to swallow row count.... Tried deleting and recreating task Unable to Repro Along with the buffer leaks and the looping errors.. bring on the NEXT CTP.. ! ! ! Giri, Can you send me a package that reproduces this issue We're unaware of any UnionAll issues with CTP15 and I'd love to fix these. thanks ...Show All

  • Software Development for Windows Vista [invokeWorkflowActivity] How to get the property value

    How to get a value of the property (Activity) by the InvokeworkflowActivity InvokeWorkflowActivity class has GetValue method that allows you to access to the value of the designated DependencyProperty of the activity. Would you think that it's doable in your scenario Thanks Kazu ...Show All

  • Software Development for Windows Vista SqlTrackingService & User Events

    Can anybody please point me to a decent sample on the SqlTrackingService I'm passing paremeters through EventArgs in my state machine workflow, but I can't seem to figure out how to get the data back. For example, if I pass a dollar amount when I raise an event, I'd eventually like to be able to recover that value from my application.  I was hoping that the following code would reveal the parameters I had passed (or at least lead me in the right direction).  Unfortunately, however, it has not.  I was hoping that the event arguments could be recovered in the userTrackingRecord.EventArgs property. private void Test() {  &nb ...Show All

  • Software Development for Windows Vista updates windows defender beta 2

    this comes from the security at home updates and maintenance page, I have been looking high and low for a reason I could not update defender beta 2, now I know why ! "If you uninstall and then re-install Windows Defender (Beta 2) it will not receive new definitions until the next definition update is published on Windows Update. See this Microsoft Help and Support page for more information. " try this url... it will guide u on how u can update windows defneder... i used to have the same problem, but this solved it... make sure u type the whole "Msiexec /x {A5CC2A09-E9D3-49EC-923D-03874BBD4C2C}" ...Show All

  • Visual Studio Express Editions I can't register Web Developer Express Edition

       Every time I try I get a message saying that I have exceeded the Pending Limit.  Then it says to check my email for a new verification message.  This would not bother me so much but for the fact that my computer keeps saying I will no longer be able to use Visual Web Developer and 26 days.  What can I do   I need the activation key soon. Rich Go to http://profile.microsoft.com and sign-in with your Passport.  This will take you to the page where you can edit your Profile.  Add your email address and select save.  This will prompt the email verification. If it still says, Pendling Lim ...Show All

  • SQL Server 2005 Maintenance Plan or Security bug?

    Curious if this scenario is by design or a possible bug.   As recommended by MS best practices for SQL 2000 we always removed the BUILTIN\Administrators login.  After doing the same on our 2005 installations it appears to have caused errors in the edit\view functionality in the Maintenance Plans and jobs.  One example is to open a plan in modify mode and then select the logging button. - 'Unhandled exception has occured in a component in your application' (have debug file) Another error occurs when attempting to edit a step of the Maintenance Plan job.  Select the subplan step > edit > select any ...Show All

  • Visual Basic VB and batch files

    I've created a batch file that will automatically be executed from my VB Program. It ftp's a file to an ip address. What can I add to my batch file to send a verification to my vbprogram that the file was sent. I ran into a problem where the VB program said it was sent but the ip address had changed and the ftp did not work. The result of the ftp shows up in the dos screen, how do I grab the result from my dos screen, into my vb program Add a command line paramater to your program.  And check the parameter on startup.  in your batch file, call the program with the error code (if any). batch file .. .. myprog.e ...Show All

©2008 Software Development Network