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

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

JeffMill

Member List

Caitriona96
overgaard
Davin Eastley
DaPoussin
Ronald Tan
hello_world
Oren Novotny
Ner1co
Suzanne Paradis
AbhishakeL
Geoff Van Brunt
Jfun
Studbolt
ok_woei
Modderrhu
Bobby011
mountain_lion
The_Dude_1978
gunslinger
Vijay Anand
Only Title

JeffMill's Q&A profile

  • SQL Server SQL SERVER 2005 REPLICATION (SNAPSHOT GENERATION FAILING)

    I'm getting this error when I try to generate a snapshot for "merge" replication. I have added the articles one-by-one to try and narrow the problem down. I get this error on specific articles. Any help is appreciated. 2006-03-23 18:23:14.35 Server: MYSERVER 2006-03-23 18:23:14.35 Database: MYDB 2006-03-23 18:23:14.35 Command Text: sys.sp_releaseapplock 2006-03-23 18:23:14.35 Parameters: 2006-03-23 18:23:14.35 @Resource = MYSERVER-DBMERGE 2006-03-23 18:23:14.35 @LockOwner = Session 2006-03-23 18:23:14.35 @DbPrincipal = db_owner 2006-03-23 18:23:14.35 [99%] The replication agent had encountered an exception. 2006-03-23 18: ...Show All

  • Smart Device Development Search file in all folders

    Hi,    How to search a particular file (for example .doc) in all the folders in ppc using compact framework. Thank in advance. This should help: http://support.microsoft.com/default.aspx scid=kb;en-us;303974 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Common framework conversion errors

    I'm working on fixing up the Common Framework files from the Zbuffer, and I have fixed most, but here are a few I'm not sure about.  I don't know if this little information is enough, I can provide more context if needed. 1.  effect = effect.FromFile(device, path, Nothing, Nothing, ShaderFlags.NotCloneable, Nothing) Error    10    'NotCloneable' is not a member of 'Microsoft.DirectX.Direct3D.ShaderFlags'.   2.   Dim e As Effect = Effect.FromFile(device, filename, defines, includeFile, Nothing, flags, effectPool, errors) Error    8   ...Show All

  • Visual Basic sori abow my englis ,plz help me -> edit label of subitem in listview ( with many column )

    . end Hi,   If you want to change the name of Column Headers this is the way to do it: ListView1.Columns(1).Text = "XX"   But is you want to change a sub item of a ListView item this is how to do it: ListView1.Items(0).SubItems(1).Text = "XX" Enjoy Abdullah Al-Rasheed ...Show All

  • Microsoft ISV Community Center Forums Question reg BeforeDoubleClick event in Excel

    A user doubleclicks in a cell and if the cell contains a certain value, i want to move the user to another cell. When you doubleclick you enter the cell and can type a value to the cell. Tried to use activecell but it seems when in 'typing mode' you can't move from that cell unless user hits ENTER or clicks another cell. Can this be done in code Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)    If Target = "BioFood" Then        ' Some code here to move user to another cell and continue typing there  End If   End Sub Hi Mi ...Show All

  • Software Development for Windows Vista DIrectSHow or WMF9 is best for streaming video

    Hello, I am currently assigned with a project to render video from a network camera.I am using C# . I an asked to develop an application which is very efficient.Also I need remote recording of the video. I am getting the data as mpeg-4 format from teh video server attached with the camera. CAn any body help me. For video capture I would probably look at DirectShow. However, I have been working with directshow a lot lately, so maybe I'm biased. If c# is your language, you may want to look at http://DirectShowNet.SourceForge.net ...Show All

  • Visual C++ Error PRJ0002: Error result 128 from '...\mt.exe'

    Howdy, I'm trying out the Visual C++ 2005 Express Edition beta 2. For some reason I get the following error when I attempt to compile an application: Linking... Embedding manifest... Project : error PRJ0002 : Error result 128 returned from 'C:\Program Files\Microsoft Platform SDK\Bin\mt.exe'. I've been prowling all over the place trying to find out what that actually means; what is mt.exe so unhappy with Can't find an answer though. Is there perhaps any listing of error-codes for mt.exe somewhere I want to know what the error means, so I can try to fix it. :( Best regards, occasionally unhappy beta-dude You ...Show All

  • Visual Studio Team System Refresh on the TeamFoundationServer object?

    Is there a way to refresh TeamFoundationServer objects Basically, if I store a TeamFoundationServer object in my class, and the state of the server changes in another application, how can I force the object to update and be consistent with the server I am seeing behavior between applications that if I add a query in one application, it will not refresh in the second application until I get a new TFS object in the second application. As soon as I do: TeamFoundationServer m_tfs = TeamFoundationServerFactory.GetServer(name, new UICredentialsProvider()); It will get the new information. How can I get around this Thanks, ~Joe ...Show All

  • Visual Basic Error during build of project

    During a build of a VB2005 Beta2 project, it stops with the error below:- Error 1 Unable to emit assembly: Referenced assembly 'QCGIconComboBox' does not have a strong name  I have recompiled the assembly under Beta2 but the problem will not go away. Has anyone got any ideas on how to resolve this issue Regards, Bill, Thanks for the reply.  I have changed the security settings for the main project and the error has now disappeared. Regards, ...Show All

  • Windows Forms Hi ! Please Help on Combo Box as soon as possible.

    Hi Please Help on COmbo Box. In Asp.net there is something . like set value of selected item.value:0 item.text:haha if i select haha then i want to store 0 in the database  but this fall into asp.net Web.Control. How about window control  how can i make this combobox uneditable but selectable Please help .. The WindowsForms ComboBox has a DisplayMember ...Show All

  • Visual Basic Can I run another application within a VB Express program?

    I'm new to VB, but have experience in other languages that allow a call from within the program to launch another program, even passing parameters. Is this possible in VB Express You can use the System.Diagnostics.Process class. See http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemdiagnosticsprocessclasstopic.asp Best regards, Johan Stenberg ...Show All

  • Visual Basic Catching Exceptions from a Subroutine

    Say you have a Sub that calls a second Sub and an exception occurs in the second Sub, which you catch. Then when the second Sub drops out, execution continues with the next line of the first Sub (i.e. the calling Sub). I'm wondering if there is anyway to let the first Sub know that an exception occurred in the second Sub and allow the first Sub to also drop out instead of continuing. Here is an example in code. You can recreate it by creating a Windows Application and copying the code into the Form1 code. Public Class Form1 Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Han ...Show All

  • SQL Server To Boost Performance

    We are designing the database for a high load web application . We used 4 techniques. 1.No outer joins,No Unions, > only in reports 2.No joins in main forms 3.Choose the smallest dataTypes possible. 4.Used a single instance for all users. Are there any additional MAJOR ones DId you had a look on www.sqlserverperformance.com Additional options would be to define the right indexes, use of index views, etc. You find all this ont his side. HTH; Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • .NET Development connection string with password in sql....

    how to protect the server information and password of the server if you want to use connection string property to save the connection......as password and other info are saved as plain text in .net any body can access them through disassemble     i have studied the enterprise examples those are really good but i have one question.... DPAPI has threem encryption states 1-Machine Mode 2-User Mode 3-None First two are machine and user login dependent respectively but i want to use my application on many machines so first two options are not for me....but the thrid one none....is also giving an error if i run the application ...Show All

  • Visual Studio Express Editions Findcontrol in a FormView

    Okay I have tried everything..... I've spent hours researching this to no avail I need to set the property enabled of a drop down box in a Formview to false. Dim dl as DropDownList dl = FormView1.findControl("EmpDrop") dl.Enabled = False Does not work ---------------------------------------------------------------------------- Dim dl as DropDownList dl = findControl("FormView1.EmpDrop") dl.Enabled = False Does Not work ---------------------------------------------------------------- Dim fv as Formview Dim dl as DropDownList fv = findControl("FormView1") fv.enabled ...Show All

©2008 Software Development Network