-
Replied To a Post in Encryption Algorithm
Sure, why not? Looking for anything specific? -
Edited strange sql problem multiple group by
i have a prinscreen of the problem http://i.imgur.com/GMJho9r.jpg i use mySQL to create the query and i have a database called tap that contains the events table I try SELECT … -
Replied To a Post in help me with regular expression for project name
E-mail is dangerous to do with a regex, as it allows for invalid ones to get through. There is no guarantee with such a check. It's much better to send … -
Replied To a Post in MySQL Starters
http://dev.mysql.com/doc/refman/5.7/en/index.html -
Replied To a Post in Oracle starters
http://www.oracle.com/partners/en/partner-with-oracle/training/index.html -
Replied To a Post in get data from 3 different tables in a database
Are you positive you have data that matches? Can you show some sample data? -
Replied To a Post in Designing for mobile
I know. My point is that I only browse the top-level forums on my phone, and in the current list I have to search where they are. Can you add … -
Replied To a Post in Designing for mobile
It's nice, but the top level forums are scattered throughout that list. -
Edited What salary Should I expect in new delhi
What salary Should I expect in New Delhi as Fresher ASP.NET web developer .net developer,in small company. I'm BCA and GNIIT(2 years software engineering diploma)? -
Edited I want You To share Your experience about Job hunt
How Do I search job as fresher in .Net? Share your experience and tell me all resources all tactics to search job? In new delhi. tell me how to search … -
Replied To a Post in Designing for mobile
Top-level forums only would be good enough for me. -
Replied To a Post in Designing for mobile
> Forums" on the footer bar, If that would be always visible, it would be enough for me, or the option to switch to the full website (which works nicely … -
Replied To a Post in help me with regular expression for project name
I got to this: ^[a-zA-Z0-9](?:[a-zA-Z0-9]|[ ](?=[^ ]*$)){0,8}[a-zA-Z0-9]$ -
Replied To a Post in Designing for mobile
Why did you remove the main forum menu? My mobile screen is HD so wide enough, yet now i can no longer navigate. -
Replied To a Post in Hello!
Welcome to DaniWeb. -
Replied To a Post in Google Maps API Marker Centered
Care to share what solved it? -
Replied To a Post in Beards
I have one on and off, basically because I am too lazy to shave. Of the 100 or so coworkers I've had I only remember two others with a beard. -
Edited Java interface
interface Data { public void load(); } abstract class Info { public abstract void load(); } public class Employee extends Info implements Data { public void load (){ System.out.println ("loading"); … -
Replied To a Post in php thumbnail script run on server but not on local
GD it is, so run Banderson's code above and tell use what you see. -
Edited Web Services of System Integration
Hi, I have been assigned to a system integration project. However, I do not understand part of the integration implementation arhitecture. For example, I have a passport scanner connected to … -
Replied To a Post in new here
Welcome to DaniWeb. -
Replied To a Post in help!
What exactly are you looking for? -
Replied To a Post in php thumbnail script run on server but not on local
Not enough information. Could be just some settings. -
Edited do you have source code grayscale to edge detection use vb.net? help me...
Dim bm As New Bitmap(pbAfter.Image) 'grayscale Dim X As Integer Dim Y As Integer Dim clr As Integer For X = 0 To bm.Width - 1 For Y = 0 … -
Replied To a Post in how can do stored procedure dynamically
Something like this, but untested: ALTER PROCEDURE [dbo].[Z_usp_Circ_Details_Year] @YearStart VARCHAR(4), @YearEnd VARCHAR(4) AS BEGIN DECLARE @sSQL VARCHAR(1000) SET @sSQL = 'SELECT * FROM (SELECT MEMBER, [LANGUAGE], [TYPE], [PLATFORM], copies, CATEGORY, … -
Replied To a Post in SQL Server Setup using Command Line
http://msdn.microsoft.com/en-us/library/ms144259.aspx According to the documentation a boolean type expects 0 or 1. -
Replied To a Post in how can do stored procedure dynamically
You could pass the start and end year as two parameters, and based on that generate your query within the stored procedure. -
Replied To a Post in SOFTWARE DEVELOMENT
Welcome to DaniWeb. -
Replied To a Post in How to make Setup Project
Read the User Guide. It is explained how to do just that. -
Replied To a Post in How to make Setup Project
https://flexerasoftware.flexnetoperations.com/control/inst/AnonymousDownload?dkey=7914331 It's in the user guide. Search for "prerequisites". -
Replied To a Post in MySql Query - Number of orders per customer
What are the table structures, and what have you tried? -
Edited A Webpage almost all Basics in One GO !
<html> <head> <SPAN STYLE=”background-image: url(http://www.makeuseof.com/wp-content/uploads/2009/08/HTMLEffects03.png ); font-size: 20pt”>vashisth the gr8</SPAN> <SPAN TITLE=”See, this is the tool tip. :)”>Move your mouse over me!</SPAN> <body bgcolor="black"> <table border="1" width="100%" height="100%"> <img src="C:\Users\IB … -
Edited Hi
Hi people i'm here again -
Replied To a Post in how to detect that browser's javascript are disabled
Have a look at the `<noscript>` HTML tag. -
Edited Software development,a wise choice of second career for an older woman?
Hello everyone! Glad to have found this great community here! A little background, I have a cert in web development from several years ago which I aced every class, however … -
Edited Features for a Photo Management System
What are some features that are essential in an online photo management system ? I have already implemented the following: ~Uploading a photo plus adding general info like a title … -
Replied To a Post in Object with highest ID in LINQ
That's what you get when copying snippets made to solve other problems, then stripping them ;) -
Replied To a Post in MS SQL Connection to PHP
Did you set SQL Server to accept remote connections? Since the VM is a different machine PHP can't connect to localhost. -
Replied To a Post in GUI Designer (just for graphical representation)
You mean something like [Balsamiq](http://balsamiq.com/products/mockups/)? -
Replied To a Post in Object with highest ID in LINQ
Just yesterday that I had to explain something like this to a coworker ;) I keep such snippets in Linqpad. If you don't know it, check it out. -
Replied To a Post in Object with highest ID in LINQ
class Custom { public int EmployeeId { get; set; } public int Index { get; set; } } List<Custom> data = new List<Custom>() { new Custom() { EmployeeId = 1, … -
Replied To a Post in EXPORT MYSQL QUERY TO EXCEL
You are outputting a CSV file. You can only do formatting if you create an actual Excel file. You can do this for example with [PHPExcel](https://phpexcel.codeplex.com). -
Replied To a Post in Proud of myself
> Pulled the gun too quickly, eh? Indeed. I saw the post on the homepage, so without context, hehe. So hammered it away. Kinda funny IMO. -
Replied To a Post in MS SQL Connection to PHP
> Where is your code, and what error you get while running your script? In addition to this (you still haven't answered), what exactly is your setup? -
Replied To a Post in Parse error: syntax error
Which line in the above mess is line 113 in your code? -
Undeleted a Post in Proud of myself
Tired of the same old boring flavour of barbeque chips? Visit www.the-most-awesome-kick-azz-mofo-space-invader-bbq-chips.com to get a free bag. -
Deleted a Post in Proud of myself
Tired of the same old boring flavour of barbeque chips? Visit www.the-most-awesome-kick-azz-mofo-space-invader-bbq-chips.com to get a free bag. -
Gave Reputation to rubberman in Good Algorithm Reference Book
Look up Knuth's "The Art of Computer Programming". Now 4 volumes (v.4 took a long time to come out - I just got it last year). Covers sorting/searching and many … -
Replied To a Post in PHP Webservice
Examples are on both websites. -
Replied To a Post in Hi, everyone.
Welcome to DaniWeb.
The End.