Yes you can migrate it to SQL DB manually to be in safe side but your software must be compatible with data-source.
cdpsource
Posts
-
DSN -
intellisenseHow can i implement intellisensefeature inside my richtexbox, inside windows form? Regards
-
Online gameThe game will have very simple graphic interface so all what the game will process that are few data rows and keeping updated some statuses which are stored in SQL Tables.
-
Online gameThanks a lot Abhinav S I will check this too before i start developing project :)
-
Online gameThanks Max The game will have max 4 palyers so webservices are good choice to use for communicating between players?
-
Online gameHi I am planing to develop desktop application game for multiple players online and as idea to archive this i plan to use webservices to communicate players between them. Does webservices are good for manage multiple players or is any better way to do this? Thanks and regards.
-
How to write a Linq 'Where' clause for nullable datetime?try this
[HttpGet]
public IEnumerable GetDate(DateTime? start, DateTime? end)
{var data = from c in db.database\_WICs where c.UploadDate == (start==null? c.UploadDate : start) && c.UploadDate == (end=null? c.UploadDate : end) select c; return data.ToList(); }
-
How to contact with Mr.Sergey AlexandrovichIs this person which you want to contact? http://www.codeproject.com/Members/SAKryukov[^]
-
Index of ButtonHi, I have a panel and inside that panel there are 3 buttons which I have put them drag and drop inside that panel, now I add dynamically button4 inside panel which it's left is left of button3+button3.width, so when i want to check first index of controls inside panel then i get button which i added dinamically, instead of button4 i except to get button1. So why i am getting this dinamically added button as first button of panel and i dont get button1 as first button inside panel? Can anyone explain me this? Best regards.
-
develop multiplayer gameI want to develop tic-tac-toe game online for two users and SQL Server I will use to save players move and broker i will use to notify when soneone's turn to play, or should I use another way to notify user when is turn to make a move. Thanks
-
develop multiplayer gameI want to develop multiplayer game online and I plan to use SQL Broker to notify user when it is turn to play, or which technique you suggest me to use. Regards
-
Download multiple filesHi, How can I download multiple files in same time with my C# applicaion, like is utoorent applicaion. I have list of docx files and i want to download all of them in same time. Thanks
-
RDLC Report DesignerHi, How can I implement rdlc report designer inside my application, the user could design their reports as the need and finally to save them as rdlc file format. Best regards.
-
Display RichTextBox string in RDLC report -
Display RichTextBox string in RDLC reportI have rdlc string in which some words are bold,have text color,italic,etc and this string i get from database and i need to display it in rdlc report as is formated.
-
merge cells in rdlc reportThanks for answer but I need to merge cells programmatically based on formula expression.
-
merge cells in rdlc reportIn my rdlc report i need to merge cells of three columns based on one condition. Any help?
-
Encode richtextbox1I have richtextbox and i save content of it into sql database, now i want to encode string and represent as html encoded in rdlc report. Any help?
-
SlideShow ControlI need slide show control to show swf files, that control i want to bind from database. E.g I have few files swf paths saved in my database and i want to bind that swf path files in slideshow control.
-
SlideShow ControlI have to show swf files in that control.