-
Replied To a Post in Undefined function 'REPLICATE' in expression
You could try installing the VB6 runtime. It's a long shot but it might be a corrupt/missing library issue: [Click Here](http://www.microsoft.com/en-us/download/details.aspx?id=24417) -
Replied To a Post in Computer crashed while playing Diablo III
Your stuttering and speeding up issue, is more than likely the connection between you and the server. That's probably not something you can fix unless it's a problem with your … -
Replied To a Post in WPF-White Screen Problem
So what exactly happened when you were debugging? -
Replied To a Post in New C# Programmer that needs help in creating an Inventory System
You need to use the `OnSelectedIndexChanged` event. This will allow you to grab the current selection from the combo box as it changes. You would then put this value into … -
Replied To a Post in Entity Framework 5 :new DBContext does not update current object
If you want to use a single DbConext, then you must do just that all the way through the application. It sounds like the DbContext has cached the previous version … -
Replied To a Post in Issues?
I can't reproduce your first (screenshot) issue, but I agree with the second one. Does the same for me too. The URI Id is different by 1 between each post. -
Replied To a Post in Newbie on C++, I need help
Depends what you mean by interactive! Technically an accounting program is interactive, but often that's not what people mean :) But a simple yet fun project...How about creating a multiplayer … -
Replied To a Post in WPF-White Screen Problem
An error like that could mean something blew up in the Window constructor for your WPF Form. (Could be a method or child method or child constructor, there's a lot … -
Replied To a Post in WPF Help
You can use WPF with the inbuilt designer to put the controls on there. LINQ to SQL you can use by defining your entities in C# and then creating a … -
Replied To a Post in Copyright at the bottom still says 2013
In PHP; $currentDate = getdate(); echo $currentDate[year]; In ASP.NET ViewBag.CurrentYear = DateTime.Now.Year; -
Replied To a Post in Copyright at the bottom still says 2013
Personally I would go with; © {First Registration}-{Current Year} DaniWeb® LLC So; © 2013-2014 DaniWeb® LLC Like I say, in the UK you register yourself with an agency which maintains … -
Replied To a Post in Copyright at the bottom still says 2013
The site won't let me edit so I'm double posting... I've just read up in the US copyright and it seems less strict that the process in the UK/EU. It … -
Replied To a Post in Copyright at the bottom still says 2013
You should probably copyright from the first registered date to the current date, especially as Dani has made changes to both the UI and the API this year. I'm not … -
Replied To a Post in 2D List initialisation problem
Lists aren't pre-defined. You have to add and remove from them (unless you give themn an initial size). So if you do; List<int> myList = new List<int>(); myList[3] = 12; … -
Replied To a Post in EA Has Officially Ruined Dungeon Keeper !
Because people don't want to pay for anything. You go on a mobile store, want to find a game. Oh this costs 20p??? I'm not paying for it! People will … -
Replied To a Post in 2D List initialisation problem
Well first, you can't declare a `List<List<string>>` as a `List<List<double>>` as the types aren't implicitly compatible :) List initialisation by constructor is different to arrays. You have to remember that … -
Replied To a Post in How to Print a Hollow Square
 1. Click on the attached image. 2. Press the keyboard key combination CONTROL P at the same time. 3. Click OK. 4. ???? 5. Profit (and/or admire your … -
Replied To a Post in Visual studio online - local database files
If you don't add it to source control it will still exist on disk. Part of the build process, though, will be to copy your localdb to the correct location. … -
Marked Solved Status for Reply Count Bug
Hello, I got a message this morning from a mod that had deleted a duplicate post. Which is all fair enough....Except I never saw the duplicate post in question. When … -
Replied To a Post in Reply Count Bug
Glad you found it :) -
Replied To a Post in DartBoard game
Hi tinstaafl. That's not a requirement for his assignment, but might score him extra marks :) Given that he OP is struggling with the basics, might be wiser to get … -
Created Reply Count Bug
Hello, I got a message this morning from a mod that had deleted a duplicate post. Which is all fair enough....Except I never saw the duplicate post in question. When … -
Replied To a Post in DartBoard game
1. Instantiate a Player object per player. 2. On each player's turn. Use a random number generator between 0 -> 60 (there's an example of an RNG call in the … -
Replied To a Post in FormsAuthentication ignores me in web.config
IIS tends to ignore those settings. Why? Who knows... However, it will pull them from the AppConfig if you set them. <add key="loginUrl" value="~/login/" /> <add key="defaultUrl" value="~/unauthorized/" /> If … -
Replied To a Post in Multicast using TCP port in C sharp
Do you really mean multicast? Multicast is to send a single packet to multiple destinations in a single transmit. If this is really what you want, try something like [NORM](http://www.nrl.navy.mil/itd/ncs/products/norm) -
Replied To a Post in DotNetBar CloseModalPanel error
UserControls don't contain a definition for `CloseModalPanel`, this method is contained within the `MetroAppForm` class. Also, for anyone wondering, this is DotNetPanel for WindowsForms by DevComponents. This isn't built into … -
Replied To a Post in get month in format dd/MM/yyyy with tipe data varchar(10)
`select * from YOURTABLE where YOURDATECOLUMN like '%/07/____'` I'd suggest including the year too though... -
Replied To a Post in How to display a message box in C# win store app.
Use the [MessageDialog](http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.popups.messagedialog.aspx) object. -
Replied To a Post in API CV Data Error
While you're in the code, any chance you could spell `Organisation` the right way? ;) -
Replied To a Post in XML or SQLite?
It depends how you use the data. If you want to do index and searching, the database is going to be far better at it. This comes at the expense … -
Replied To a Post in doubt session
Put some effort in of your own first. The problem itself is very simple. You can work this out with some basic logic. -
Replied To a Post in Running multiple backgrounderworkers
You actually used a delegate in your second code section: bw.DoWork += new DoWorkEventHandler( ---> delegate(object o, DoWorkEventArgs args) <---- { Delegates are (at a basic level) method pointers. They … -
Replied To a Post in WPF-Bind EventSetter Handler to ViewModel
The error you have means that the XAML is missing a closing tag somewhere. Unfortunately, I couldn't compile your application because it couldn't find any of your resources. Your delegate … -
Replied To a Post in Running multiple backgrounderworkers
Essentially yes, break down your code into tasks that you can run in a method. You can give the background worker a method to execute (that's all a delegate is) … -
Replied To a Post in API CV Data Error
Dani's JSON makes more sense in my opinion. Not everyone who is qualified has a degree. However, based on that, it's the UI that's incorrect ;) -
Replied To a Post in WPF-Bind EventSetter Handler to ViewModel
The XAML seems valid and my IDE is happy enough with it. It may be one of your supporting resource libraries that's invalid. Where are you storing your style resources? -
Replied To a Post in WPF-Bind EventSetter Handler to ViewModel
Can you post the entire XAML? I think you're missing a `</resources>` tag somewhere. -
Replied To a Post in Programming in c#
As a DW user I'll discount my usual contracting rate to £400/day. If this is acceptable for you then we can talk on the Business Exchange forum :) Thanks. -
Replied To a Post in WPF-Bind EventSetter Handler to ViewModel
Did you try cleaning the solution and doing a full rebuild? This might be an issue with cached build objects. -
Replied To a Post in Programming in c#
Yes and yes. Although you'll need two different front ends. One in ASP.NET (website) and one in Winforms (Desktop) but the back end for both should be C# -
Replied To a Post in changing password whats the error
As a note, you should also wrap the command in a using statement too ;) -
Replied To a Post in Programming in c#
At the moment C# is probably the easiest language to write in for both desktop *and* web applications simultaneously. -
Replied To a Post in changing password whats the error
Well it's exactly what it says. You're trying to open a connection that's already open. Remove line 48 and you'll be fine. -
Replied To a Post in Get all directories on drive
If EnumerateDirectories ends after trying to access a directory it cannot then you're going to need to create your own search function. EnumerateDirectories will give you all the directory names … -
Gave Reputation to ddanbe in Random Algorithm Do's and Don'ts?
Are you using a specific same seed value, every time when you call the constructor? -
Replied To a Post in Binding DropDownList's SelectedIndex to 0 if value does not exist
> Ketsuekiame: > It seems that you dont understand what the thread starter is asking. > > What he wants is when selectedvalue does not exist in the list of … -
Replied To a Post in WPF-Bind EventSetter Handler to ViewModel
No it is a bug. [This Hotfix should work](http://support.microsoft.com/kb/2464222) Unfortunately, it means that you need to include this hotfix with your application redist. Edit: Reading the bug report there is … -
Replied To a Post in User groups/roles for application
If you interfaced it out, you could easily check the permissions of screens below the parent. Alternatively you could go action based and link your roles to actions rather than … -
Replied To a Post in User groups/roles for application
In that case no, your only real option is to match the Ids of your screens to the roles required, in your DB. -
Replied To a Post in User groups/roles for application
> Are you thinking about storing the screen class name mapped against one or more roles? Or use attributes. But the attributes would have to match your DB permissoin names …
The End.