Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~10K People Reached
About Me

15 years in the I.T. industry, in varying roles from software developer through architect, and head of I.T. Currently Director of I.T. company, and Directory of Internet Marketing Company.

PC Specs
Linux, and Windows (everything up to Server 2008 R2)
Favorite Tags

27 Posted Topics

Member Avatar for GordonUK

Yes, of course it does. And day to day - presumably you're comparing the numbers to Google adwords tool - that's an average, if you look at the trend data, you can see how things have typically varied over the months of a year, but even that is not guaranteed. …

Member Avatar for mark santa
0
164
Member Avatar for daW0lverine

I don't think you'll have a problem picking things back up after 2.0, up until 4 nothing really changed, just new stuff added like LINQ, which in my opinion you don't just use because it's there, you need to know why you're using it. You can use the database projects …

Member Avatar for daW0lverine
0
142
Member Avatar for sidyusuf

Doesn't a grid do this by default? I mean you could do this by creating a composite control for example, but I would look to what already exists first...

Member Avatar for sidyusuf
0
163
Member Avatar for Emma Johns

Yes, it's going to do something similar to facebook likes. Google +1 also has the ability to social network, so you could locate others with an interest in your interests if you wanted to also, as they could with you, which is where the real traffic potential would be in …

Member Avatar for soniasharma
0
137
Member Avatar for judithSampathwa

Is this an SSRS report? If it was you would add a parameter in pretty much the same way as you would for a stored procedure call, using a Parameters.Add( ... ) If it isn't, I'd still expect it to work in the same way, you need to pick up …

Member Avatar for judithSampathwa
0
479
Member Avatar for priyamtheone

Hmm... seen a few of these - I guess it must be assignment time... Without looking into this too much - I'm not going to do this for you, Not sure what checkbox renderer actually does, but it looks like you only call that renderer when the state of the …

Member Avatar for priyamtheone
0
988
Member Avatar for AccurateAG

Not really sure what you're getting at or what response you'd want. A ranking is only ever for a web page. A web page has links, the only thing that is site related, loosely, is a count on the linkdomain. I'm not really sure what you meant with of the …

Member Avatar for Dani
0
185
Member Avatar for PixelatedKarma

I assume you're asking about data level encryption? I personally wouldn't encrypt database data, instead I would make the environment where it lives very secure instead. After all, once you decrypt the data, if that is sent across the wire, that can be intercepted. The other thing is, if this …

Member Avatar for Stefano Mtangoo
0
147
Member Avatar for music613
Member Avatar for mosesaaron

[QUOTE=mosesaaron;1646278]I think Google related is new features of Google. Please if you have full knowledge about this then please let me know[/QUOTE] Hold on, Let me Google that for you... [url]http://lmgtfy.com/?q=http%3A%2F%2Fwww.google.com%2Frelated%2F[/url]

Member Avatar for micheal_paul
0
76
Member Avatar for TannerT

This is a bit lazy - go and have a go at what you think it should be. How are these different types of customer billed differently? What data is different? No, I would not use a boolean to indicate business / not business, unless that is the only data …

Member Avatar for Ezzaral
0
137
Member Avatar for jesicawillss

[QUOTE=jesicawillss;1469126]I am using blog posting, forum posting, comment posting, article submission to get website on the ranking track. What is today’s Best Practice to get more back links and increase website ranking?[/QUOTE] Good quality content for all of the things you mention. There aren't really any magic tricks.

Member Avatar for MartinPlatt
0
229
Member Avatar for rameezsadikot

You need to normalise the data into many tables, then you can select only the data that you need for a particular query, and don't transfer over the wire a lot of data that you're not interested in. I suspect if you did this with 25 years of data and …

Member Avatar for MartinPlatt
0
239
Member Avatar for Chitru

Wow! I think that you need to learn the basics of both - a simple search site is only simple when there is no data, as soon as you increase the ize of the data set, you need to get this right. What you're suggesting to do sounds plausible of …

Member Avatar for MartinPlatt
0
134
Member Avatar for jalo4

I had a look at this, it seems pretty good to me. I was trying to see a way to simplify it, but I couldn't think of how, because a patient can have a visit without an appointment, although you say that they always do, and a patient can have …

Member Avatar for MartinPlatt
0
1K
Member Avatar for zoraster01

I haven't done crystal reports for a good few years, but from memory ... The report has little to do with the grid. You need to learn how to create a table in crystal reports, to display your data. It is very easy to do, you have a header, repeating …

Member Avatar for MartinPlatt
0
107
Member Avatar for suunker

You could use a FileSystemWatcher, but the frequency that these files are dropped, you could also consider polling once a day, and counting the number of files that you have not seen before (or whatever you need to do). I haven't used FileSystemWatcher that much, as I would do this …

Member Avatar for MartinPlatt
0
311
Member Avatar for complete

I think what you are referring to is Isolated Storage, it's under Documents and Settings, or Users. I don't see the need to store on disk very often though, it's better to store things in the database - also easier to do your security, and scale.

Member Avatar for MartinPlatt
0
131
Member Avatar for Hari835

Quickest way, especially as the data gets large, is to write a scalar function in SQL, and execute it. That basically means that you write a stored procedure that returns a single value, assuming you want the count for only one group. If you have many groups and want many …

Member Avatar for MartinPlatt
0
105
Member Avatar for coolsasuke

There are a lot of converters out there, but I don't think that they work that well. Why would you bother converting it anyway, it isn't going to give you any real benefit doing so.

Member Avatar for MartinPlatt
0
272
Member Avatar for coroll

I would recommend not put that whole line for the int.Parse on one line - unless you can guarantee that the cell value will always parse to an integer. It is bad form, and will make it harder to find errors down the track. Same for this line... dt.Rows[0][0].ToString() - …

Member Avatar for avertyn
0
2K
Member Avatar for khentz

[QUOTE=khentz;1645499]I would like to know what is the correct format of virtual path on vb.net or vs 2010. In my project folder, is it advisable to save it in bin folder? If yes, what will be the virtual path of it?[/QUOTE] Save what? No, you shouldn't really use the Bin …

Member Avatar for AnkitGuru
0
189
Member Avatar for coroll

[QUOTE=coroll;1646213]Hi all, I want to show Form2 when button1 of Form1 is clicked. how would i do it. this is what i was trying to do.But it is not working But it gives me an error ; The event 'System.Windows.Forms.Control.Click' can only appear on the left hand side of += …

Member Avatar for ddanbe
0
151
Member Avatar for chandimak

I don't think that when taking an exam a teacher is actually a teach, they're a student taking the exam, and that person happens also to be a teacher (if that makes sense?) In other words the person takes the exam, who can be either a teacher, a student or …

Member Avatar for MartinPlatt
0
212
Member Avatar for saras1031

Hey! I think what you have there is almost like Object Relational Modelling rather than ERD. With ERD you need to be modelling things like if a relationship is mandatory or not, and how many relationships might exist (cardinality). You can use crows feet notation to indicate this (google it, …

Member Avatar for MartinPlatt
0
2K
Member Avatar for juliusham
Member Avatar for iefilec

[QUOTE=iefilec;1645231]hi. i just want to ask how can i populate a listview n vb.net that has a is limited by a date from and date to. i have a datetimepicker for start date and datetimepicker for end date and i want do list all the entry of my database in …

Member Avatar for MartinPlatt
0
483

The End.