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

Software Development Network >> Joshua-Programmer's Q&A profile

Joshua-Programmer

Member List

Ranju_Akram
Will Merydith
donkaiser
manick312938
David J. Roh
Tailor
GAlexey
BaldManDBA
DoS
Tommi Pitkälä
Seppe001
Greg J. Brown
nbrege
lucerias
barvan
alemayehu
Tom Medhurst
yousaid
XtremeISP
noob_vber
Only Title

Joshua-Programmer's Q&A profile

  • Visual Studio Team System error 28002

    We're getting this familiar error on our tfs install. We've followed the guide very closely on a win2k3 server running in Windows 2000 native mode. Here's the full error from the application event log: Event Type: Error Event Source: TFS Services Event Category: None Event ID: 3055 Date: 7/19/2006 Time: 6:08:16 PM User: N/A Computer: TEAM-FOUNDATION Description: The description for Event ID ( 3055 ) in Source ( TFS Services ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: TF53 ...Show All

  • SQL Server an error while trying to read .sdf file from the pc application ? please help

    hi i have a problem with reading sql mobile database existed on the pc i made a sql mobile database connection with ( Add New Datasource ) and then set the datasource of dataviewgrid to display the returned dataset . at run time i have an exception said  : cann't find the library with the name sqlceme.dll as i remember , can you help me solving this problem because i very need this step , please  regards SQL Mobile did not support Windows Applications before. It was integrated only with Device Applications. However, we will be releasing SQL Server Everywhere on desktop which you can use on desktop. See the following URL for more details: http://forums.microsoft.com/M ...Show All

  • .NET Development How about a form topic "Getting Started"?

    OK. I installed Framework for .NET. I've yet to find a gui that runs the thing or even a discussion anywhere on the simple subject of "getting started". I'm not exactly a novice at using programming tools. I have a degree in Computer Science, know about a dozen languages and 5 operating systems, am a published author of a number of commercial packages and, for what it's worth, used to write feature articles, with code, for an international computer mag back in the 8-bit 80's. I also created and published the very first code that displayed 256 colors on an 8-bit CPU.. I've been in the game for awhile. .. but I haven't managed to get this .NET thingy to fire up yet. Do I need something like Delphi for .NET to run it all Is ...Show All

  • Visual Basic Problems with ActiveX after deployment

    Hello, I have a VS2005 VB ActiveX class library (phew!) in which I am writing code to synchronise outlook with owr own application. I have a vB6 testharness which does a createobject refering to the .net dll and invoking a function. Inside the net dll I access outlook via a com reference. everything is working fine on my dev machine where I have VS2005. However on a test machine which has office and the redistributable net 2 framework when I deploy the software (via a VS2005 deployment project) and invoke the dll via my testharness I got 429 "ActiveX Component Can't Create Object" So I tried to regasm the dll's (including the interop.dlls in my deployment package) I got the error -2147024894 when I ran ...Show All

  • Smart Device Development Oracle connection issue

    hi I'm not gettin any driver like ODBC,OLDB for SmartDevice application developement in vb.NET cud any people help me to connect SamrtDevice application with oracle in wireless LAN bbyeeee Hi Ilya I was not askin to give your own code..i was asking some sample code n method to use web services as proxy. by the way thanxxx bbyeeeeeee ...Show All

  • Visual Studio 2008 (Pre-release) The reason for the exception: Converter property is expecting a IValueConverter instance, not a string.

    Hello all, I have an entity (ContactInfo) that exposes a bunch of properties and a collection of Persons (the collection is called People). Here is how I want to show it: Contact Info Name: xxxxx Created By: xxxxxxxx Creation Date: xxxxxx People: John, Jill, Jack. I have defined a datatemplate for this entity, where each property is bound to TextBlock.Text. Then, I created a value converter that would take a the people collection and return a list of comma seperated names. public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if (value == null) return ""; People people = value as People; //TODO error handeling ...Show All

  • SQL Server Exception has been thrown by the target of an invocation

    I have this exception on page loading, is there any solution for this how can I fix this exception... Just out of curiosity, have you searched Google for your error string A whole bunch of results are there waiting for your reading pleasure. Looks like a .net Framework bug. ...Show All

  • Visual C++ Update Single Item In ListBox

    Hi All, I have an owner-drawn a list box.I'm drawing the things I required properly. But the problem is I have a timer and I need to update some specific items in the list box. Is there anyway to refresh or invalidate an item in the list box I'm thinking in the way of re-setting the item's text, so it will re-draw no But I think it's a weird logic. Could you please help me in this regard ok let me explain each things step by step 1. I have a listbox class which do some owner-draw stuffs. 2. A timer placed in the class. Which is used to show a clock in an item of the list box. 3. Invalidate is there for help me, but it will redraw the entire content and it's very costly :(. Giving a specific rectagle to redraw in the Invalida ...Show All

  • SQL Server Initializing a Merge Subscription Without a Snapshot - doesn't operate correctly

    Hi! I do the backup from the publisher, next I restore it at the subscriber using *pure* database. next I attempt to create subscription using this db. of course, I use SubscriptionSyncType .None for SyncType propery of the subscription. But, 1. nevertheless the merge agent downloads whole snapshot! both data (bcp files) and the schema. 2. I get the *strange* error. below thelines from the log: Applying the snapshot to the Subscriber A dynamic snapshot will be applied from 'C:\DOCUME~1\...\LOCALS~1\Temp\DB$MAIN_DB1_Main_testReplFromBackup\' Preparing table '__UserSyncOptions' for merge replication Applied script '__UserSyncOptions_2.cft' {call sp_MSsetconflicttable (N'__UserSyncOptions', N'MSmerge_con ...Show All

  • Visual Basic How to keep zeros after the demical point show up in the textbox?

    In VB 2005 express. I want the textbox to show 0.40 I wrote: TextBox.text = (0.40).ToString() The TextBox shows: 0.4. How can I show 0.40 instead of 0.4 Also, I set the default text ot be 0.40, but it only shows 0.4. Lili Or use the format$ method. the # are option digits and the 0 indicate a digital will always be placed here. Example Code Class form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim val1 As Double = 0.4 Me.TextBox1.Text = Format$(val1, "####0.00") End Sub End Class ...Show All

  • Windows Forms Datagridview::copy row including hidden column to another datagridview

    I have SourceDGV whose Column1 I hide programmatically. How can I dragdrop copy SourceDGV's selectedrow including the hidden column to TargetDGV and keep that Column1 hidden on TargetDGV Thanks for any help ! Naga, Thanks very much for your reply. This code works great with on a button click but I'm having difficulty implementing it using drag drop from SourceDGV to TargetDGV. Assuming that my SourceDGV is set to fullrowselect and I am dragging/dropping 1 single row at a time, Could you show me some code to implement that ...Show All

  • SharePoint Products and Technologies best practices for moving a WSS site from test to production

    Does anyone have a reference that describes the procedure for and best practices for moving a WSS site from test to production Does anyone have a reference for tools that move only the new content to production environment (incremental upgrade) Regards, Giuseppe This solution is the best way for the first deploy. I search a solution to manage the incremental upgrade the content's site. Do you know the tools that only extract from the wss (stage) the new content and move it in production site Regrads, Giuseppe ...Show All

  • Windows Forms datagrid columns details in new window

    i have a datagrid carDatagridView where i show 2 tables from my car database table. Now i want that when the user double click on a cell there appears a new window with al the details of my car. How can i make this pass the parameters to the new window Hi declare a command object , and give "Select <col> from Table where itemNo= strItem like this willl fetch the data. and place this in dataset and assign the datasource of Datagridview to dataset. u can get the result . Happy coding ...Show All

  • Visual C# How easy is this in C#?

    Sorry for the very general subject line. I've been working on a problem for some time right now that will have two separate applications passing information back and forth and preferably sharing objects. To date, I've been working on this problem using C++ and the WinAPI. However, the WinAPI and Visual Studio c++ 2005 don't really integrate very well. I've been taking a look at C# lately, and it seems like the language would support this effort pretty well through the use of marshalling (a new concept to me), and multi-threading. I would like to hear from some experienced C# programmers their opinion on how easy this would be to implement in C#. There is an example in "Programming C#" that seems like it would accomplish the type ...Show All

  • SQL Server How to update a column in input dataset with 'NA' if it's null

    Do I have to use condition split , then union all if in script, I can use update from <tablename> Set column = isnull(column, 'NA'). It's so simple. I'm also wondering can we run SQL Script against input dataset in a SSIS component     what if this is a "Case" situation for example, case column1 when 'A' then column2 = '1' when 'B' then column2 = '2' when 'C' column2= '3' else '4' end ...Show All

©2008 Software Development Network