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

Software Development Network >> Mike Berro's Q&A profile

Mike Berro

Member List

TechMate
ashk1860
jermu
TWild
Honza N
Bill Reiss
Praksh
Paul Burg
robinjam
Benelf
Worf
GermanWillie
MNJ(m-studio)
Gunnar Adler
ACHawk
Grey Pony
gauls
ImagineNation
EWGoforth
επιστημη
Only Title

Mike Berro's Q&A profile

  • Visual Basic Error in Deploying compiled vb project

    Guys, i receive this when i update or add in my project."Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done." The program worked in my computer but when i installed it in another, i received that error. i already checked the adointerop and connection string to no avail. ...Show All

  • Visual Basic VB .NET 2003 using datagridTableStyles on multiple tables in a data grid

    Greetings, I have a dataset that contains 3 tables (1 parent and two children) that have relationships setup. This is used to populate a data grid. I need to remove (hide) a column from each of the tables when they display on the grid. I was able to do this to the parent table using tablestyles and datagridcolumnstyles. However, I am having no luck with applying similar code to use on the child tables. It doesn't seem it should be too difficult, but I just can't figure it out. What are the basic steps to apply tablestyles and columnStyles to the child tables that relate to the parent Thanks ...Show All

  • SQL Server Backup and recovery of SQL Server using VB.net

    Hi, I have a small application in which i'm using Sql Server as Database. my requirement is how to take the backup of the entire database or some tables from the database when there is any delete from the database. My requirement is to do from the VB.net application.Hope i delivered my question correctly. Any little help is beneficial to me. -regards GRK where i can find DatabaseCache class i downloaded and install SQLServer2005_XMO.msi but still i cant see that class, other code works fine. Thanks ...Show All

  • Visual Studio Tools for Office Icons missing from TreeView

    My VSTO Outlook add-in shows a form with a TreeView control. The tree works properly, showing the data I expect it to, but not the icon images. When I add a default root node in VS Designer and assign it an image from my ImageList, it appears correctly in the designer. When I run the add-in, the default node appears, but without icon. There was a related thread MSDN Forums Windows Forms Windows Forms General Icons not showing up on Treview for VSTO beta, but no real answer posted. Anyone have any ideas The debugger shows that the TreeView object does have the ImageList, and that the ImageList has the right number of images, and that the nodes have ImageIndex values in the proper range. --Allen See answ ...Show All

  • Software Development for Windows Vista Custom Perisistence: There can only be one service of type "WorkflowPersistenceService"

    I initially created a simple ASP.NET app to demonstrate a state machine and passing data to a workflow using a local service. It works fines. Now I am trying to play with persistence. I have created a custom persistence service using MySQL. I have followed the steps outlined in the SDK help. I have added the needed entries in the web.config line. Here is my Global.asax entries. protected void Application_Start(object sender, EventArgs e) { System.Workflow.Runtime.WorkflowRuntime workflowRuntime = new System.Workflow.Runtime.WorkflowRuntime("WorkflowRuntime"); Application[Constants.WorkflowRuntime] = workflowRuntime; // attach persistence service MySqlPersistenceService stateservice = new M ...Show All

  • Visual Studio Team System Branching advice

    Hello All, I have a question about branching and TFS. Suppose I have the follow folder structure under source control: FolderA / \ FolderB FolderC / / \ FolderD FolderE FolderF Suppose FolderD contains some libraries I want to work on, but not on the mainline (trunk). This work will take a couple weeks and so I'd like to work on them in small increments, say checking in every day, and thus have a record of my work (and versions in source control I can go back too and diff etc...). I decide I want to branch FolderD for this reason. I create the branch and call it FolderD-branch and so that folder gets created as a siblin ...Show All

  • .NET Development Modify access query from Visual Studio

    We have application where we need to be able to update the access 2000 queries at startup of applications. How do I do that programatically I believe that your question might best be answered on the .NET Framework Data Access forum, which you can find at http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=45&SiteID=1 . Jeff ...Show All

  • Windows Forms DataGridView.Columns[].SortMode problem

    In a DataGridView I want to have the columns sorted. They are sorted as a matter of fact by default. My first column is of System.Strings data type, all others are System.Double variables. I've also discovered a pleasant surprise that when I click on any of the columns the whole DataView is immediately rearranged in such a way that this column gets sorted. Here is the problem. I want all columns except the first one to be sorted DESC . The first column is sorted ASC by default and it is great, however in all other columns the lowest numbers which are mostly zeroes in my case give me little joy. I want the highest absolute values (all of my float values are positive) to be on the top , not bottom. I want to find out if it can be se ...Show All

  • Software Development for Windows Vista Conditional handle external event

    I've a HandleExternalEvent activity in the workflow, I want to invoke it when the parameters match some condition, it do nothing and keep in idle if parameters do not satisfy the condition. Is it possible to do so ! Thank you very much!!! HandleExternalEvent will always run when a message is received. You can try putting it in a WhileActivity and just loop back when the condition is not met. Shelly Guo ...Show All

  • SQL Server Can't Drop table in Replication

    Dear friends I restore one database in two database servers which is running on SQL server 2000.I replicated these two through snapshot relication.Snapshot agent is creating snapshot.But when I am starting to synchronize it's telling can't drop table because that table is in replication. Backup I taken from a replicated database.so it's having rowguid both the servers.Another thing the table which it is telling not able to drop it's having primary key.please tell me what may be the problem.In replication why it is going to drop table it's only what to transport data na Filson   Greg Y wrote: The database that's restored at the subsc ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Subscription not available on my Xbox!

    Hi! Is there any reason why the Creators Club Subscription is not showing up on my Xbox I live in Norway, but I've not read anything about any region restrictions on this download. I want in on the fun too! Hmmm, you're in Live Marketplace | Games | All Game Downloads XNA Creator's Club is on my list. The XNA Game Launcher is what's used to deploy games from your PC to your 360, it's not the Creator's Club. Maybe an MS person will chime in here. ...Show All

  • Visual Studio 2008 (Pre-release) Why include all columns in tombstone tables?

    Why do the demos from the synchronizer blog add all columns to the tombstone tables Wouldn't it be enough to add the ID, creation date and update date columns You are right. You don't have to include all the columns in the tombstone table. The primary key and the metadata columns are the minimum you need to get the scenario working. ...Show All

  • Windows Forms How to add new child row to xml set with bindingsource WITHOUT an id key?

    Below is the XML file used: <MySet>   <User>     <Name>John</Name>     <Order>       <OrderType>1</OrderType>       <OrderName>Barley</OrderName>     </Order>     <Order>       <OrderType>2</OrderType>       <OrderName>Sugar</OrderName>     </Order>   </User> </MySet> As you can see the "User" table contains an "Order" Table.  In XML which orders belong to which user is very clear, however each order entry does not have a "Name" key which wi ...Show All

  • SQL Server Commonlity?

    Okay, here is my scenario: The information used in this description will be considered sample data, as the actual dataset is much larger. We have 3 products: F, M, and Z. Each product has several derivatives based on customization. We have one central list of parts that these products are built from, depending on the specs given. We have a number that represents the percentage of that part's occurrence in a given product ordered last year. It would look like this: PART PRODUCT FREQUENCY P1 F 1 P1 M 0.2 P2 F 0.15 P3 Z 1 P4 M 0.7 P4 F 0.34 P5 Z 0.17 P6 F 0.24 P6 M 1 P6 Z ...Show All

  • Visual Studio Set User!Language in report properties under misc

    Hi friends, I'm using ReportViewer control (winforms) in LocalReport mode, but I can not get numbers formatted for the current culture (only for en-US). I have attemped settings with Language on designer and Application.CurrentCulture (on form), but nothing works. For example the decimal 1,000.85 (en-US) should be 1.000,85 in pt-BR. Also, I'm using ExecuteReportInCurrentAppDomain. Note: All other controls on my App works fine about localization formats, but ReportViewer not. Please, what I'm missing Thanks in Advance The culture used to format data is specified in one of two places in the report: 1. It can be set on the textbox itself. 2. It can be set on the report body element. In both of these cases, ...Show All

©2008 Software Development Network