Search found 74 matches

by Enigma
Wed May 07, 2014 3:46 pm
Forum: Web programming
Topic: Responsive web design
Replies: 4
Views: 9747

Re: Responsive web design

Hi guys I'm not much of a front-end developer. But there are several framework which you can use for this. 1. Twitter Bootstrap - http://getbootstrap.com/ 2. Foundation - http://foundation.zurb.com/ According to my knowledge developing a responsive web application from scratch is not that easy. Ther...
by Enigma
Mon Mar 31, 2014 4:06 pm
Forum: .NET Programming
Topic: realtime english to sinhala transliterate help please...
Replies: 7
Views: 15593

Re: realtime english to sinhala transliterate help please...

Hi

Check this link
http://www.google.com/intl/si/inputtools/try/

I think you can use a google translator API for this

Hope this helps

Thanks
by Enigma
Sat Apr 28, 2012 10:22 pm
Forum: ASP & ASP.Net
Topic: Website on IIS7 - how can connect to web service on desktop?
Replies: 4
Views: 9732

Re: Website on IIS7 - how can connect to web service on desktop?

Why do you want to change the port number? Create a web setup project to your web service. Install it in your local IIS. Then browse the .asmx file from the IIS window. Get that link and reference it to your web site. You can reference it by changing the web.config file or you can use the IDE for it...
by Enigma
Sat Apr 28, 2012 8:11 am
Forum: ASP & ASP.Net
Topic: Website on IIS7 - how can connect to web service on desktop?
Replies: 4
Views: 9732

Re: Website on IIS7 - how can connect to web service on desktop?

Hi According to my understanding of this issue, When ever you run any asp.net or asp.net web service project from visual studio it creates it own IIS instance. So if you close the project that instance will get deleted. So that link become invalid.target machine actively refused it 127.0.0.1:49933 m...
by Enigma
Fri Mar 23, 2012 4:01 pm
Forum: .NET Programming
Topic: How To detect USB plug and play
Replies: 0
Views: 4661

How To detect USB plug and play

Hi guys I have been inactive some time now.Sorry for that. Anyway one of my teammate asked how to detect USB flash drive from C#. So here goes another flash drive detector. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using Sys...
by Enigma
Thu Jan 19, 2012 1:31 am
Forum: ASP & ASP.Net
Topic: Failed to convert parameter value from String to a DateTime
Replies: 9
Views: 13674

Re: Failed to convert parameter value from String to a DateTime

Ok entering "" to the default value means when ever you get null value as a parameter it will pass "" . you need to handle this from your web service. try changing the web method like this [WebMethod] // this ges jobs by date added@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ public DataSet1.JobsTable...
by Enigma
Thu Jan 19, 2012 12:35 am
Forum: ASP & ASP.Net
Topic: Failed to convert parameter value from String to a DateTime
Replies: 9
Views: 13674

Re: Failed to convert parameter value from String to a DateTime

Hi I have checked the web service and your asp.net project. Nothing wrong except that search by 28 days option. Since we are in 2012/1/19 if you ran this, the search date must be 2011/1/22. .NET fires an exception while converting 2011/1/22 to Date format. So that why I change the date format to MM/...
by Enigma
Wed Jan 18, 2012 10:35 pm
Forum: ASP & ASP.Net
Topic: Failed to convert parameter value from String to a DateTime
Replies: 9
Views: 13674

Re: Failed to convert parameter value from String to a DateTime

Hi
Can you post your web service project. By looking at the exception its kind of hard to figure out the error . Did you try updating the service reference of your web project ?
Also when you ran the web service separately did it work ?

Thanks
by Enigma
Wed Jan 18, 2012 12:14 pm
Forum: ASP & ASP.Net
Topic: Failed to convert parameter value from String to a DateTime
Replies: 9
Views: 13674

Re: Failed to convert parameter value from String to a DateTime

Hi

Instead of

Code: Select all

string dateAdded = DateTime.Today.Date.Subtract(TimeSpan.FromDays(7)).ToString("dd/mm/yyyy");
try

Code: Select all

string dateAdded = DateTime.Today.Date.Subtract(TimeSpan.FromDays(7)).ToString("d");
Thanks
by Enigma
Mon Dec 19, 2011 2:26 pm
Forum: .NET Programming
Topic: Help 2 learn Visual C++.NET
Replies: 7
Views: 10742

Re: Help 2 learn Visual C++.NET

Hello Nandika I'm not familiar with robotics. But if you are on to port programming then yes C++ will help you out. But it doesn't has built in functions for port programming.You need to call OS level API for it.You need to download the win32 SDk for this. Link below will get you the MSDN SDK. http:...

Go to advanced search