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

Software Development Network >> LenBio's Q&A profile

LenBio

Member List

GoDaddy
GoDaddy
Shmelly
bulad
John.Doe
sydes141
imanish11111
Indigo Cowboy
franky0101
XNA-Mordt
filson
Mikhail Ryzhinskiy
shagshag
Alvin Kuiper
Gurpreet Singh Gill
Will Merydith
TheViewMaster
SynergyNT
Jos Warmer
Polina159216
Only Title

LenBio's Q&A profile

  • SQL Server In trouble with Async Replication..

    Hello Everybody, In the past few days I try to work with SQL Mobil and Replication. And now I have a big problem. When the replication ist running in my little application the pda-user wants not stop there working. So I try to implement some routines of code that I find in this onlinearticle: http://msdn2.microsoft.com/en-us/library/2ysxae29.aspx The codes workes fine as long I don't start another SQL Task. When I start either (Select, Insert, Update or Delete) Statement the Database crash with errormessage: "The database file may be corrupted. Run the repair utility... Can anyone give me a tip what I must do to fix this problem. Many Thanks Markus I'm not sure, b ...Show All

  • SQL Server Account used for sql 2005, x64, " lock pages in memory" option

    Our sql 2005, x64, box, has 9GB of RAM and the sql server account is the "local system account". I opened the group policy editor to give that account "lock pages in memory" permission but I couldn't find that account in the "Add User or Group" pane of the policy editor. I did find something called "local service group" though it does not appear to exist as a local group or user on the box. 1. Do I need to create a domain user for this purpose 2. Do the other services (e.g. Analysis Services, Integration Services, etc) also need to run under an account that has "lock pages in memory" privelage TIA, barkingdog Andy, Thanks ...Show All

  • Visual C++ I need a sample program to view a html file in web browser which is inside a dialog?

    I need a sample program to view a html file in web browser which is inside a dialog If some expert can show me the sample program or link, it will be a great help. I appreciate your help. For such issues, newsgroups at http://msdn.microsoft.com/newsgroups is the proper location. OTP Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Studio Team System Class Diagram Reverse Engineer with Visio from .Net

    Hi: I need to pass a Class Diagram from Visual Studio 2005 to a Visio Class Diagram Any body know how to do it Thanks How do you get the reverse enginering menu item to show up under the project tab Thanks ...Show All

  • Visual Basic calling subs

    Why wil this not work Public Sub AddCurveExample( ByVal e As System.Windows.Forms.PaintEventArgs) ' Create some points. Dim point1 As New Point(20, 20) Dim point2 As New Point(40, 0) Dim point3 As New Point(60, 40) Dim point4 As New Point(80, 20) ' Create an array of the points. Dim curvePoints As Point() = {point1, point2, point3, point4} ' Create a GraphicsPath object and add a curve. Dim myPath As New GraphicsPath myPath.AddCurve(curvePoints, 0, 3, 0.8F) ' Draw the path to the screen. Dim myPen As New Pen(Color.Black, 2) e.Graphics.DrawPath(myPen, myPath) End Sub Private Sub Button1_Click( ByVal sender As System.Object, ...Show All

  • Software Development for Windows Vista Vista and Control Panel Applets

    This is the second time I've asked this question and have not gotten a response, can someone help me out here I have a control panel applet that works on XP and now I want it to work on vista. Unfortunately Vista says there is known compatibility problems with my applet. How can I find out what they are and how to fix them. I have a manifest file for the CPL but that doesn't seem to help. Please help me out here. --Mark Cariddi www.osr.com You would not believe what my problem was. It turns out that my applet was listed in the Vista database of legacy applications, as soon as I changed the name of my applet, all my problems went away. WHAT an operating system.... ...Show All

  • Smart Device Development How to Convert Stream to String

    How to Convert a Stream datatype to string.For example Dim path As System.IO.Stream = (Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(AssemblyName)) the path should to converted string. converting a Stream to String Was this post helpful Hi everyone, I'm having the same problem trying to convert a stream to String. But nothing seems to work. Here's my code: void displayImage(IO:tream^ imagePath) { array <Byte>^bytes = gcnew array <Byte>(( int )imagePath->Length); imagePath->Position=0; int n = imagePath->Read(bytes,0,( int ) imagePath->Length); Sys ...Show All

  • Windows Forms Why OnDragDrop method was not called?

    Hi I am trying to do simple drag drop between two control in a form, I override Onmousedown in the dragsourceControl , ondragdrop and ondragenter in the droptargetcontrol,also i have set allowDrop = true in the droptargetcontrol, here is the code in the DragSourceControl: protected override void OnMouseDown(System.Windows.Forms. MouseEventArgs e) { if (m_image == null ) return ; Console .WriteLine( "onMouseDown" ); DragObject outDragObject = new DragObject (m_image.Clone() as Bitmap , ItemType .Work); this .GiveFeedback += outDragObject.RaiseGiveFeedback; DoDragDrop(outDragObject, DragDropEffects .Copy); outDragObject.Dispose(); base .OnMouseDown(e); } in the ...Show All

  • .NET Development XML File with No Namespace information

    Does anyone know if it is possbile to deserialize an xml file that has no namespace information in it as I am getting an error (CTfile xmlns=''> was not expected) It will deserialize if I add an entry for xmlns="some valid url" any ideas Yes I have tried removing the namespace from the class and overriding it in code, removing it from the class does not appear to resolve the error on deserialise, however overriding it in code will allow the deserialise to work but will result in null entries for all the properites of the class, as I mentioned before the xml and class are in line because if I add a xmlsn entry the properties are populated correctly in the class. So in summary I can get round th ...Show All

  • Visual Studio Updating Major and Minor versions from TFSBuild.proj file

    I would like to be able to set the AssemblyMajorVersion and AssemblyMinorVersion from my TFSBuild.proj file and am using the AssemblyInfo Task to update the BuildNumber and revision. Is this possible to do I've looked around at the posts such as http://blogs.msdn.com/gautamg/archive/2006/01/04/509146.aspx and got AssemblyInfoTask working fine. I can edit the \AssemblyInfoTask\Microsoft.VersionNumber.targets file to override the Major/Minor versions there and also each individual AssemblyInfo.vb in the projects I'm building, however I would like to be able to pass through the Major/Minor version from the TFSBuild.proj file. If I do what Gautamg suggests in the above post it doesn't work. Any ideas - Ossian ...Show All

  • Visual Studio Express Editions Key press detection.

    Hello. I have searched forums here and could find answers on some of my questions, but now i have faced a problem which I can not find. I have used a code from one on the threads to make the obgects in the form (Picture boxex) moove (as for i kind of pong game which as I see one of the first games to anyone:-)). But now I have the followng: 1 When I change the direction of the object it gives delay for almost a second to change the direction. 2 There are 2 objects at the same time mooving on the screen and when one of them changes direction it gives delay to second one also and then they continue mooving. 3 I use arrow keys to make one of the boxex moove and A and D keys for the other (left : right) Now when I press ...Show All

  • Visual Studio Team System SQL Integration Services support

    Hello, Is it any special SQL Server 2005 Integration Services support in DataDude Or maybe it will be in next versions Thanks Hi We do alot you to do a schema compare between project and database or from database to database. Schema compare is accessed through the project via Right Mouse clicking on the database project node and select Schema Compare. It is also availible off the Data high level menu in Visual Studio. By Server Browser do you mean Server Explorer. If so that's not really Integration services support. mairead PM, TS Data ...Show All

  • Visual Studio Express Editions 2 error

    what is the problem when 2 error occur: 1.cannot copy temporory files to the output directory. 2.the files cannot be copied to the run directory.The process cannot access the file because it is being used by another process. plzz help me.i hav an important project to complete... Hi, Not sure about question 1) but question 2) is like when you are trying to open a picture with MSPaint or another program when it is being used by another paint program like PhotoShop or PaintShopPro for example. Close the other program to avoid this kind of error. Regards, S_DS ...Show All

  • Windows Forms Product and package manifest

    Hello. I am trying to add a few Microsoft components to my Visual Studio 2005 Setup project. They are all downloadable from Microsoft's site as .msi, and they are part of the SQL Server Feature pack. I am only interested in the XMO msi, but the note next to it says it needs MSXML and SQL Native support. So, I have 3 msi files. Merge modules are not available. It seems the best choice would be to add them to the prerequisites list. However, in order to do this I need to author a product and a package manifest (both xml files). Since they are not my packages, but they belong to Microsoft, how can I generate these two files (per package) so I can continue with my install I know I need to create these two manifests (check this "old&q ...Show All

  • Visual Studio Express Editions Publish --- Won't

    I seem to have "lost" the CLR Well, that's what the message says when I try to Publish: "Error 1 Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets 2071 9 " The message ISN'T wrong !! "CommonLanguageRuntime" is not in 'Microsoft.Windows'. I cant find it under that name in Program Files either. (Maybe I'm running on a 'virtual' copy) Since the IDE and my app run just fine locally, I guess it's just Publish that can't find it. Any thoughts on giving Publish a hint on where to find the CLR Roger Sorry it took so long to get back to you Tall Dude, but I got pulled off for another proj ...Show All

©2008 Software Development Network