- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
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)
27 Posted Topics
Re: 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. … | |
Re: 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 … | |
Re: 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... | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: Use a listview, or grid?? | |
Re: [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] | |
Re: 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 … | |
Re: [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. | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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. | |
Re: 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() - … | |
Re: [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 … | |
Re: [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 += … | |
Re: 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 … | |
Re: 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, … | |
Re: What is your question? | |
Re: [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 … |
The End.