Avi_harush's Q&A profile
SQL Server SQL Agent Failing when trying to run my SSIS Package
My SQL Agent was working fine. Now when I try to run it, it failes when trying to run my SSIS package. I looked in the logs, and job history, no luck in finding any critical errors. My SSIS package runs fine through VS 2005 in debug mode. Here are the only errors: 01/04/2006 09:53:48,,Warning,[396] An idle CPU condition has not been defined - OnIdle job schedules will have no effect 01/04/2006 09:53:48,,Warning,[260] Unable ...Show All
Smart Device Development SqlCeResultSet Help
Hey everyone, I have a VB2005 project with a SQL Mobile datasource. I'm trying to use SqlCeResultSet to return a list of records to a datagrid to solve some speed issues, but I think I have a problem with my code: Dim cnWorkOrders As SqlCeConnection = Nothing Try cnWorkOrders = New SqlCeConnection( "Data Source =" + """\Program Files\PWO\WorkOrders.sdf"";" ) cnWorkOrders.Open( ...Show All
Windows Forms "Click Once" queries
Dear All, I have a few questions regarding Click Once: 1. Does it support Non .net Active-X Controls in WinForms 2. Does it allow pre-compliation 3. Is there a w ...Show All
SQL Server Master-detail on the same dataset
Hello, I have a dataset (web service) which profide the following data: ProdID ProductName ItemID ItemName 12 ABC AF Item1 12 ABC AE Item2 13 DEF AF Item1 13 DEF AN Item3 I would see the table rendered as 12 ABC AF Item1 AE Item2 13 DEF AF Item1 AN Item3 I tryied setting groups but I don't see the correct data (just the first record) Any help Thanks, Pie ...Show All
Visual C++ Why do I get OutOfMemoryException?
Why do I get OutOfMemoryException running the following code m_lst = gcnew System::Collections::Generic::List<array<double>^>; for(int i=0; i<10; i++) { m_lst->Add( gcnew array<double>(512*512*100) ); } (Create a WinForm app and insert this code at the end of InitializeComponents) I got the exception when i=5. (that is only ~1GB of memory). I know that is a lot of memory, but my computer has 2.5GB of RAM ...Show All
Visual Studio Express Editions Creating an independant application
Hey there, I've been playing around in Visual Basic Express 2005 and I have a question. I want to take my program from Visual Basic and turn it into a standalone executable file. Something that I could send to my friends (Who do not have Visual Basic Express on their computers) and let them open the file up and use the program. How would I do this I have tried the "Build Program" command but it doesn't let me open up the executable fil ...Show All
Software Development for Windows Vista Reloading the state machine instance from persistence in Tracking
I am trying to extend The Ordering State Machine example. I want the form to load all persisted workflows on start up, displaying each at their current state in the list view. I have implemented the SqlPersistenceService and the Tracking service successfully and both databases are being populated. As a test I am loading a persisted workflowInstance using its GUID WorkflowInstance CurrentInstance = theWorkflowRuntime.GetWorkflow(new ...Show All
Visual Basic wordwrap
In Vb .Net the Lable's property wordwrap was removed. How can I by-pass this Is there something else to use instead Thanks for any reply! YES, the word wrap property of a label in VB6 doesn't exist in VB.NET. Is there a workaround for it Thanks. ...Show All
Windows Forms Panels In Panels
I suspect my question has been answered before--perhaps many times before--but I am new to the site and to VB.NET programming so pointers to previous answers, or a direct answer, will be much appreciated. Here is what I am trying to accomplish: 1.&n ...Show All
Windows Forms Retrived dataset refresh
I have a dataset in my form (created visually), with databinding to a grid. I have a button with an event. In the click event I do. MyDataSet = Customer.GetAll, where customer is a class that return a dataset with all the customers. All works fine, but the controls databinded with MyDataSet don't refresh. I think the problem is that I'm changing the reference from the dataset. How can I solve the problem I ...Show All
Smart Device Development database entegreted
hi i am mehmet my questions about smart device applicaton database connection i am writing code about smart device connection database but i want to entegreted my computer database (sql server) with pda database for data. data transfer from pda database to sql server on my computer thank you Hello Mehmet, I didn't completely understood your question. Did you want to sync your PDA database with your database on yo ...Show All
Visual Studio 2008 (Pre-release) Indigo compatibility with VS
Hi I need to know that which version of visual studio is compatible with indigo. Thanks Hi Ford, No I was referring to the other question posted which said: "But which CTP of VS2005 beta 2 is compatible.Is it april CTP or December CTP " So, I was just trying to clarify the difference between a CTP and a Beta since I felt the user was confusing between a CTP and Beta version by referring to it as "CTP of VS2005 Beta 2" Regards, Vikram ...Show All
Smart Device Development CustomControl KeyDown problem
Hi, I've build a owner-drawn control (inherits from System.Windows.Forms.Control class) that doesn't have any controls but only draw on his surface some text and I need to trap the OnKeyDown method. I've written the following code: public class myControl : System.Windows.Forms.Control { protected override void OnKeyDown(KeyEventArgs e) { &nb ...Show All
Visual Basic Visual Studio.Net 2005; Visual Basic.Net; Windows Generated Code
How is the Windows generated code accessed It no longer shows up as outline in code window as it did in previous versions of Visual Studio. Thanks for any response... You can expane you form class in the Solution explorer and open the formclassname.designer.vb. But you must first display all files by pressing the "Show all files" button in you Solution explorer. Here is a screenshot. ...Show All
Visual Studio Tools for Office how to store and read .doc file in a table of sql server using C#.
I would like to store and read .doc file in a table of sql server using C#. Can some body help me on this my id is padam76@gmail.com . Thanks & Regard, Padam Kumar Tripathi Since VSTO requires Office (Word) 2003, you'd theoretically have access to the Word 2003 XML file format. The users would have to save the files as XML; this can be set as the default file format in a networked environment. You can then use any common tools to ...Show All
