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

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

Tcl70

Member List

Peacho
beolijza
Mark Wetterau
DotNet_Student
Igor Nikiforov
kob_kob
dseverojr
Mkid
AustinA6
NickCodignotto
Mario Aoun
donss
Noah Moerbeek
Julianin
Gabe Covert
RClayH
mabster
bool007
Dijkstra30
curiousbeginner
Only Title

Tcl70's Q&A profile

  • Software Development for Windows Vista How to use the SampleGrabber filter and the Overly mixer at the same time?

    hello, everybody. i use the graphedit.exe to build a graph using the samplegrabber and the overlay mixer at the same time. these are the filters that i wanna to use: Sample Grabberer filter, Overlay Mixer and the Video Renderer. now, i can connect the preview pin to the input pin of the sample grabberer filter. but, when i connect the output pin of the sample grabberer filter to the input pin of the overlay mixer, it hits me as belllowing: "these filters cannot agree on a connection, Verify type compatibility of input pin and output pin.  No combination of intermediate filters could be found to make the connecti ...Show All

  • Visual Studio Express Editions Writing to Access DB

    Hi all, I need to write into an access database. I use a variable con as an connection object, da for data adapter, ds for data set and followed the code closely from my reference book. However, when the instruction da.Update(ds, "Pixel" ) is invoked, an error occur. The error msg reads "OleDbException was unhandled". What does it mean I'm at this for hours... Please help. A segment of my code is below: ------------------------------------------------------------ Dim con As New OleDb.OleDbConnection 'the variable con will now hold the Connection Object. con.ConnectionString = " ...Show All

  • Visual Studio Team System Programmatic authentication on TFS

    I've got a single-server deployment of TFS set up, as per instructions. I can use Team Explorer to access this server's projects using any account. I need programmatic access to TFS though. Specifically, before I can do anything in TFS, I need to log in to the server. I have a user account in the same domain as the TFS server. I also have Administrator and TFSSETUP accounts. I use the code below to try to authenticate. It's from the web. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Net; using Microsoft.TeamFoun ...Show All

  • Windows Forms i need this embedded code in vb 2005 instead of c#

    this code was to handle the selctedindexchanged for the datagridviewcomboboxcell private void dataGridView1_EditingControlShowing( object sender, DataGridViewEditingControlShowingEventArgs e) { ComboBox cb = e.Control as ComboBox ; if (cb != null ) { // first remove event handler to keep from attaching multiple: cb.SelectedIndexChanged -= new EventHandler (cb_SelectedIndexChanged); // now attach the event handler cb.SelectedIndexChanged += new EventHandler (cb_SelectedIndexChanged); }f oid cb_SelectedInd ...Show All

  • Visual C# C# IDE Performance = Very Very Slow

    My Computer Hardware: Dual Processer AMD Operton 2.0GHZ Raid (0), and 2 -15,000 RPM Maxtor SCSI Striped (World's fastest HD's) 134MB/sec 4 Gigs of RAM My Problems: 1. It takes 65 Seconds to just load VS2005. I am not even loading a Project. 2. It takes 30 Seconds to just close the program. No projects loaded. 3. It takes an additional 1.5 minutes to 2.0 minutes to load an existing project. 4. The existing project, was just created today, and has almost no code in it. 5. During this wait period, one of my processors is running at 51%. 6. During development the sluggishness continues, and so I have to close/re-open project, this helps for ...Show All

  • SQL Server Subscription Missing

    We are seeing a problem with the users of our application. If the user closes our application from running programs (as best as we can tell as we cannot repro in dev) and SQL Mobile is in the middle of an async sync, sometimes when the application restarts it fails to load the properties for replication from the database. We are using code that is nearly identical to the samples provided by MS for performing replication async. Basically, the database still exists on the device and the application can use it just fine, but when a sync starts, the database is already there, so it tries to load the properties at which point we get a message sta ...Show All

  • .NET Development Socket BeginAccept Method Memory Leak?

    Hi, After copy and pasting the code from the MSDN sample "Asynchronous Server Socket Example" - http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp into a Windows Library project (DLL) for use in a server I'm writing, I'm finding that each request from my client application causes a growth in memory of 4-8KB in the server application.  This doesn't seem to be reclaimed at all, it just continues to grow.  Since I'm writing a server that must run unattended for long periods of time this will be a problem for me.  After googling the problem I found a forum on dot ...Show All

  • Visual Studio 2008 (Pre-release) alternate styles for a control

    hi, can any one please tell me how to implement alternate styles for my control in WPF dynamically thanks in advance nani You mean something like "skins" Where a person can change the look of the application on the fly ...Show All

  • Visual C++ error LNK2028: unresolved token (0A000019) "int __stdcall LoadString

    Please help I try to acces the resurce file using LoadString. I recivede the error: Linking... ClaseImpl.obj : error LNK2028: unresolved token (0A000019) "int __stdcall LoadStringA(struct HINSTANCE__ *,unsigned int,char *,int)" ( LoadStringA@@$$J216YGHPAUHINSTANCE__@@IPADH@Z) referenced in function "public: void __clrcall AccesResurse::initResLabel(class System::Windows::Forms::Label ^,unsigned int)" ( initResLabel@AccesResurse@@$$FQ$AAMXP$AAVLabel@Forms@Windows@System@@I@Z) ClaseImpl.obj : error LNK2019: unresolved external symbol "int __stdcall LoadStringA(struct HINSTANCE__ *,unsigned int,char *,int)& ...Show All

  • Windows Forms Self Updating Application : (Smart Client)

    Hi,     I'm using VS.NET 2002 for developing a smart client application. the AppUpdater component downloaded("AppUpdater.dll") gives an assembly reference error. The project downloaded from Application Updater Block is not opening in VS.NET 2002 also. We don't have VS.NET 2003!!.    Pls. SOS To my knowledge, that block is not available for&n ...Show All

  • SQL Server How do i add my database to "data sources"?

    I n Lesson 9 as you can see here (at 16:50), a connection is created against his .mdf database, and the dataset is shown in the "Data Source" window/panel. He can then simply drag the data source onto the form, and controls are created and bound automaticly - or drag them as a datagridview to the form. That is what i want to do, but i have some problems... I have set up a connection to my SQL Express database, and a dataset is created without problems. The problem is that this dataset does not show up in "Data Source". Actually, i have never seen anything in that panel before, in any of the data sources i have adde ...Show All

  • SQL Server merge agent error

    Hi We are using HTTPS merge replication. One of my subscribers is getting this error: Error messages: The Merge Agent failed after detecting that retention-based metadata cleanup has deleted metadata at the Publisher for changes not yet sent to the Subscriber. You must reinitialize the subscription (without upload). (Source: MSSQL_REPL, Error number: MSSQL_REPL-2147199402)   This is a bit surprising - it has been working fine - and also there were no changes at the publisher (it only has one article in this publication - a stored proc) Why would this have happened The retention period is 45 days and they syn ...Show All

  • .NET Development WebCam im VB

    I wonder if its posible to control a webcam whit vb. If so, please tell me how to do it, or any link to learn how to do it Thanks in advance 1) No you do not need to use directx 2) Wia is not included with windows 2000 3) As long as the driver for the camera supports wia it will work. ...Show All

  • Software Development for Windows Vista Workflow wont compile when i use ConfigurationManager.ConnectionStrings[""]

    the following code fails to compile. Could not create activity of Type 'WorkflowConsoleApplication1.Workflow1'. System.NullReferenceException. Object reference not set to an instance...when i double click on the error list in VS i get a message box "Cannot open file 'c:\bla...'. Verify that the file exists and try again..." //WF BETA 2.2 Steps to recreate: create a new sequential console app project. drop a code activity with some code in the activity code. Add reference to System.Configuration dll. add an App.config file with the foll. 2 settings <appSettings> <add key="myDBConn" value="conne ...Show All

  • .NET Development bad naming conventions?

    I am writing an app for an internship where I need to hit an ODBC database. The employee table was designed (long before I got here) with the primary key being the employee name in the format of "SMITH.J". My select statement uses the nameKey in the WHERE clause, and is blowing up because of the '.'. The exception is... Microsoft.Data.Odbc.OdbcException: ERROR [S000] [ProvideX][ODBC Driver]Column not found: J; Is there any possible way around this without (A): changing the entire database, or (B):scrapping my app when it's 90% completed Hi, Could you please post the Select Sql Statement t ...Show All

©2008 Software Development Network