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

Software Development Network >> Jon Limjap's Q&A profile

Jon Limjap

Member List

Colin Walford
newtocsharp
1Pierre1
mian mahboob
Michiel Wories - MSFT
TKTOCK
Robert Rouse
parameswaranpramod
manab
Will Wilson
SSJoshMachine
Martin Kulov
Steentje
Peto_SVK
David Hary
farang
Madhusudanan
Aris Basic
Bill_H
devinrader
Only Title

Jon Limjap's Q&A profile

  • Visual Basic VisualBasic IDE Corrupts Form !

    Hello There ... I Was Working very smoothly and everything was Allright ... Suddenly I found that Something Corrupts the Code of my Forms ... I got arround 100 Errors (One for every Control i guess) the (Error 6 ) was Like ControlX is not a Member of BlaBla ... I then Went and had a Look at the Code behind the Form And Found that SOME Lines were Missing Like Friend WithEvents TmrTime As System.Windows.Forms.Timer Then I had to write them Manually ... but that Now Happens Constantly and wit Almost all the Forms And what's REALLY a Problem and is Killing me is that Sometimes ALL THE CODE VANISHES! Yes ... the Only thing left is th ...Show All

  • Visual Studio Team System Error encountered when adding a solution to source control

    I need help identifying why I cannot place a solution under source control. I create a simple web test and I can use it in the solution explorer but I cannot get it into source control. Here is what I do and what happens. Precondition: Solution is created and validated, connection to TE is working Open Solution Explorer Right click "Solution <project name>" in the SE tab Select "Add Solution to Source Control" menu item The result is a VS error message with this text.... Microsoft Visual Studio Unexpected error encountered. It is recommended that you restart the application as soon as possible. Error: Access is ...Show All

  • Visual Studio Team System TF80071 when trying to connect MPP to TFS

    Hi, I'm trying to connect MPP with my Team Server. When I click "choose team project" I get the dialog that list the projects. I select one (no matter which ) and get error TF80071 "team foundation encountered an error while acessing the work items database..." I followed every advice in the other thread regarding this error, including changing the mapping and turning off the connection to the office server (which I don't use). i still get the same error. Any idea what's wrong Thank you, Ken Hi Ken, Sorry to hear you are having problems with this. Can you create a f ...Show All

  • Visual Studio Load report failed in 'roles' folder

    I'd created crystal report viewer page with it's report source and it works fine in root folder. But, when I put the page in an 'admin' role folder, 'load report failed' error happen. I need to put the report page only for authorize member and I'm using role and membership. How to resolve the problem, thank you ...Show All

  • SQL Server Is there transactional consistency across multiple publications?

    Hi, Currently, I have Server A which has Publication P1. Server B is subscribed to P1. Let's use 'T1' as the name for the set of tables/articles included in P1. Now I need to add serveral new tables to Server A. Let's call the new set of tables 'T2'. There is a Server C that needs to sync with the data in both T1 and T2. But Server B cannot have T2's data for privacy reasons. One of the solutions I'm thinking about is to create another publication in Server A, called P2, which would publish the data in T2. Then have Server C subscribe to both P1 and P2. There would be no changes to Server B, who still subscribes to P1. My concern with ...Show All

  • Visual Studio classic chm Help doesn't link to MSDN Library

    on new PC, reinstalled VS and Library again, but links to commonly inherited NET members like "string" display a Page Not Found error, yet the help 2 versions work in VS and in H2 Viewer... is this a registry problem does this relate to MS article 827054 or 318945 thanks multiple ones, this used to work on my PC, seems to work on others, but does not work on my new PC, even after resinstalling VS.NET and MSDN Library... ...Show All

  • SQL Server select statement to show tables

    Does anyone know the syntax for a script that will bring back all the tables in a database that begin with "CAPA" and "CAPD" Select TABLE_NAME from INFORMATION_SCHEMA.TABLES Where Left( TABLE_NAME , 4 ) = 'CAPA' or Left( TABLE_NAME , 4 ) = 'CAPD' ...Show All

  • Visual Basic How to Read through a Fixed-Length File

    Hi, I've a text file which has some data written. Records have Starting character as "#2" and Ending character as "#3" in ASCII respectively and the file includes series of records, but not written as Line by Line. The difficulty I'm having is, to how to transfer those data's into a database. The File comes a 7mb file and looping character by character then noting down the Record Starting Character and Record ending Character, and finally substring them is not feasible as it take more time and makes the computer slower. I would like to know is there any easy way to transfer them I guess I do not see why you are calling it a fixed- ...Show All

  • .NET Development Additional information: The process cannot access the file because it is being used by another process

    I am trying to read all the addresses contained in my network and write them in a text file..I am using the undersaid code string MyAddress=Dns.GetHostByName(Dns.GetHostName()).AddressList[0].ToString(); System.Diagnostics.ProcessStartInfo psi= new System.Diagnostics.ProcessStartInfo(); psi.FileName=@"C:\WINNT\System32\cmd.exe"; psi.Arguments="/c net view > add.txt"; psi.WindowStyle=System.Diagnostics.ProcessWindowStyle.Hidden; //application.doevents processes all events in the windows message queue Application.DoEvents(); System.Diagnostics.Process.Start(psi); System.IO.StreamReader sr= null ; bool isOK= false ; ArrayLis ...Show All

  • Software Development for Windows Vista TrackData and Strings with Single Quotes

    Hi, TrackData and strings with Single Quotes don't like each other :) They terminate the Workflow. Using default SqlTrackingService and added the following line to an activity: this.TrackData("CaseStudyTestEvent", "I've made it this far!"); That's all it took. The workflow is terminated with the following exception.message: System.Workflow.Runtime.Tracking.TrackingWorkflowTerminatedEventArgs Exception: Incorrect syntax near 've'. Unclosed quotation mark after the character string ', @EventOrder=74, @WorkflowInstanceEventId=@WorkflowInstanceEventId_74 OUTPUT '. at System.Workflow.Runtime.WorkflowExecutor.Persist(Activ ...Show All

  • Visual C++ C++/CLI and Headers

    Coming primarily from a Java and C# background i have some doubts about C++/CLI, this time about headers, specially when it come to managed code. What's more correct, Option #1 ----------------------------------------------------------------------------------- Dog.h ref class Dog { public: Dog(void); void Bark(); void Poop(System::Int32^ HowMuch); }; Dog.cpp #include "Dog.h" Dog::Dog(void) { // some code } void Dog::Bark() { // some code } void Poop(System::Int32^ HowMuch) { // some code } Option 2 ------------------------------------------------------ Dog.cpp ref class Dog { public: Dog(void) { // some code } voi ...Show All

  • SQL Server SSIS Package runs fine except as a scheduled job

    I have an SSIS package created from a SQL 2000 DTS using the Migration Wizard. The package imports data from a MySQL database to a SQL 2005 64-bit database running on 64-bit windows server 2003. The package runs fine when executed from SQL Server Management Studio but when I schedule it as a job it fails with: Executed as user: [the domain admin account]. The package execution failed. The step failed. I've tried a lot of different ways to make this work including creating a new SSIS package. Again, the package ran fine except when it was scheduled as a job. Any ideas would be appreciated. thanks! ...Show All

  • Visual Studio Team System Feature request - column datatypes visible in project

    Greetings, In the project tree view each column, in a table, is visible but the data type of that column is not displayed. It would be desirable for the data type to be either visible next to the column name (like SSMS and Query Analyzer) or alternatively displayed in the property grid for that object. -- Regards, Neale NOON Dear noonie, Thank you for your suggestion. I will relay it to the part of our team implementing this functionality. By the way, there is a great way to submit bugs and suggestions for our (and many other products) online at http://connect.microsoft.com . Your ...Show All

  • Visual Studio Infinite loop upon check-in through Visual Studio

    I am working with a team of developers on a software product.  We have people on the Beta 1 version of Visual Studio and the Whidbey version of Visual Source Safe.  When one of our developers tries to check in anything from Visual Studio, they get into an infinite loop where they get an error message that says "The operation could not be completed.  The parameter is incorrect."  So, whenever they need to check something in, they have to open Visual Source Safe and do it through there.  I believe that this may be a bug in the Beta 1 version of Visual Studio, as I have installed Beta 2 with Whidbey on one machine and d ...Show All

  • Windows Forms load csv file

    hi guys! I have a question about CSV file. I have a problem loading data to my Datagrid. How can I specify which column to get data from and which column of the grid to load data to BTW, I'm using Memory Stream and UTF-8 encoding in loading my csv file. Please help!Thanks! Thanks for your reply! Tried your suggestion. I used the Microsoft Text Driver of Odbc and it seems that it automatically gets the first row as the column header and this is not exactly what I want. Is there a way where I can just specify which column to take data from and load data to And another thing, does OleDB driver( ) has something ...Show All

©2008 Software Development Network