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

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

jim_d

Member List

SMSMonster
Jin
RHodnett
Jason.J
Hackersoft
D Danial
Marcus Garcia
Tony Robyn
PB_owner
fbalas
sirurza
Mr Scott
mic90264
JulianMarin
dcallan
William676
adarsh.mathur
psique
ToddKC
LowLevel
Only Title

jim_d's Q&A profile

  • Architecture Online/Offline mode, abstracted

    We are planning an enterprise app. The basic setup will consist of a winforms client that will connect via remoting to a centralized app-server over a vpn. We must be able to provide basic functionality even in the event of a network outage. The plan is to have a local database that is a stripped down version of the main database. The local database will get updated periodically so it stays roughly in synch with the main database. The client will be able to switch between online (main database over remoting) and Offline (local database via direct mdac). My initial design is to go with a layer of service interfaces, and implement it twice ...Show All

  • SQL Server XSL SQLIS Component?

    I'm developing a solution which connects to a couple of webservices and I would like to transform them with a XSLT schema so that they get the same format, is there such a component in SQLIS ...Show All

  • Visual C# attributes

    Could someone explain me(or give me an url) to understand attribute between [ ] before class or methods [..........] public class(--) THX Oke, thanks for posting the solution! Don't forget, allmost weekend ...Show All

  • Visual C# editing resource files

    I am using a ResourceManager to retrieve values from a .resource file. I would like to be able to update the values in the file from within the application. Can this be done How Thanks. Use the Resource editor Lutz Roeder has writen, you can find it here . ...Show All

  • SQL Server Sending Messages with ADO.NET 1.0

    Hi, after some tooling round, googling, hair-pulling etc i have some prototypes of a simple C#.NET 1.1 console app which can now post a message to my yukon SB service i set up. It calls an internal activation stored proc to store the message in a simple table. The problem i had was in the connection string "... Asynchronous Processing=true". The run-time throws an exception moaning about the Asynchronous Processing=true bit. So i just omitted it completely... Seems to work fine and as expected. I can post a message, my app exits, and the dummy stored proc (which i deliberately made enter a loop updating the table thousands of times ...Show All

  • Windows Forms ClickOnce not working for customer

    I'm baffled by this - myClickOnce app installs and updates perfectly (across the internet) on my development PC, but does not work on any of my client's PCs. The only significant difference being that they use a proxy server to access the internet, but this is of course configured into IE, which I presume does impinge on ClickOnce. The proxy server does not require authentication. The error message is pretty much always the same - and doubly confusing at that, since it seems to indicate the program folder cannot be created, and yet if I search the hard disk I can find the whole application intact (but not at the location referenced in the lo ...Show All

  • Visual C# How can I use the delegate to update the user interface from a thread?

    hi:) I make a thread to do some work, here I want to see how the thread is going on. How can I use the thread to update the label text(used to display the message from the thread). I am a newer in c# , any advance will be helpfull! thanks in advace. coz you are working on another thread you cannot acess directly the label.. if the label wasnt created by that thared.. and howd you guess you need a delegate , and a methofd BeginInvoke delegate void MyDelegate(string s); // or some other paramters private void AMethodInYourThread(//... some paramters) { MyDelegate call=new MyDelegate(DoWork); // the begin ...Show All

  • Visual C++ Microsoft Visual C++ Runtime Library error question

    I recieve this error when I launch Internet Explorer - version 6.0 OS Windows XP Home edition 2002 Service Pack 2.  Error is as follows: Microsoft Visual C++ Runtime Library Runtime Error! Program C:\Program Files\Internet explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information. I am not certain where to post this question and problem.  Your assistance is greatly appreciated.  Currently, I am using Firefox as my back-up web browser.  I have seen a similar Problem. The Culpret was a corrupted Mc ...Show All

  • Visual C++ To detect any 'Enters' pressed

    Hi, How about detecting any 'Enters' pressed in the keyboard How can we have a thread for detecting this Thks & Rgds, HuaMin Every character that is types arrives in your program inside the message loop with a WM_KEYDOWN and WM_CHAR messages. You can trapp them there or you use a Keyboard hook. SetWindowsHookEx with WH_KEYBOARD. ...Show All

  • SQL Server SQL 2005 and SQL 2000, one Dev server, co-existence

    We have many SQL 2000 servers and are beginning to plan our upgrade path.  Has anyone had experience running SQL 2005 and SQL 2000 on the same machine   This would be in a development environment to aid in our analysis.  Is this possible   Any issues or concerns This is supported, and you shouldn't have any problems as long as you install SQL 2005 after SQL 2000. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Good source (s) to learn Direct X (c++)

    Hi, I have begun programming with DirectX and C++ for a while now (not a very long while =)) I've read the 6 tutorials that comes with the SDK and understand them quite well, but where do I go from here Most interesting info I find about DirectX programming for newbies is in managed, but, since I already can programme nicely with C++ (console and windows) I think that would be some kind of a step back, dunno why really... but is there any good sources for me to read and learn Direct X using C++ that would fit my describtion. would  be awesome to move on from rendering differend objects in screen. =) I don't really know... Ja ...Show All

  • Visual FoxPro editbox programmatic change

    I am looking for an easy way to determine if I've made interactive change in an editor box. The issue is that there are about 16 controls on a container, they are initialized from a table record thus their values at activate time generally are not trivial default. I have to save the changes with a SAVE button if I made any but I want this button's click method to quickly determine which control values have been changed. I do not want to do REPLACE for the fields with values that haven't been changed. In case of simple controls like a combobox I can store the initial value in Tag property and do the comparison programmatically. Sometimes t ...Show All

  • Visual Studio Express Editions Windows Application template

    Visual Basic Express 2005 When I click on "new project" and the template window comes up, I only have the Class Library and Screen Saver starter kits. I cannot find the "Windows Application" template. I have looked through the files in the command prompt but have not seen anything that looks like a template installer. Any help will be appreciated. Thank You, Don ok try this "VBExpress/setup" if it didn't work you can ask your question in express installation forum http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=24&SiteID=1 hope this helps ...Show All

  • Visual Studio How to get the data type of a variable using CodeElements?

    Hi All, How can I get the data type of a variable using Code Elements I identified the Code Element as a variable using vsCMElementVariable. But I couldn't get its data type. Can any one help me on this Kind Regards, Imesh If the Kind param says it is a vsCMElementVariable, cast it into a CodeVariable then call the CodeVariable.Type property. This will return a CodeTypeRef which will allow you to get to information about the type. Craig ...Show All

  • Windows Forms Executing an external file from C#

    Hello everyone again! Thanks for the help on the last problem I was running into! This time around, I am trying to execute a file from my code based on its filetype. What I have done is: 1) Given a path, I have loaded the information into a byte array 2) Saved a referrence to the file into a database Now, given the referrence, I need to  1) e ...Show All

©2008 Software Development Network