335 Posted Topics
I tried to put my CV (Resume) on here. The Import from LinkedIn crashed with the following message: invalid redirect_uri. This value must match a URL registered with the API Key. Also when I tried to copy and paste mine instead it wouldn't let me as there is a limit … ![]() | |
Re: I would like to help you with this but you need to be a bit more specific and also record the question - it is not very clear exactly what you need. For example you say you want to save the text. Save it where though? In a text file, … | |
Re: Why are there periods in there? People don't put a period between two words when they swear. Also why have two arrays? Why not just one array - you don't need to check for combinations of swear words - just if at least one is in there right? | |
Re: So have you move everything to SQL server - ie no more Access and Excel at all? | |
Is it just me or is it just frustrating and annoying when people want our help but can't be bothered to even type a full, clear sentence or two to explain their problem in a clear unambigious way? | |
Re: reyborn - will that SQL display vendors with Zero products? | |
Re: Change }).appendTo('form'); to instead of 'form' to be something more specific Eg #formid if the other form has an id. Does the other form already exist or are you creating it on the fly? | |
Re: If you reword your qestion you may get more help. It is a real chore to read and doesn't explain things very well. Try and be very specific, unambiguous and use full, clear sentences. | |
Re: How do you want to display this? Also you say 1 person has potentially more than 1 hobby. How are you dealing with this in your database design? Showing us the Sql statement you use would be helpful. | |
I havec1799 reward points but cannot cash out any. Any ideas? | |
Re: To add only non negative values do this: Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim Total As Integer For Each Str As String In ListBox1.Items If CInt(Str) >= 0 Then Total = Total + CInt(Str) End If Next TextBox1.Text = Total End Sub As your code … | |
Re: please wait until current program is uninstalled - might need a reboot. | |
Re: With this `public List<TyrePressure> Wheels { get; private set; }` I think you can still change Items in the list. Often you see this kind of thing if you don't want things to be changed: `public IEnumerable<TyrePressure> Wheels { get; private set; }` | |
Re: "I was thinking I could create a database and the news feeds just draw on that?" - That's typically how this kind of thing works. You can write this yourself or use an off the shelf package. These are called CMS systems which stands for Content Management System | |
Re: I'm not sure I understand your question as I think it could be worded slighly better but possibly you need loopback enabled. Check out http://opensimulator.org/wiki/NAT_Loopback_Routers | |
Re: Why would you want to do that? What gives you the right to take over someone's pc!? | |
Re: Hi Suzie Does this help? using System; namespace DaniWebDates { class Program { static void Main(string[] args) { string d1 = "2015-04-04 00:06"; Console.WriteLine(ConvertDate(d1)); Console.ReadKey(); } static DateTime ConvertDate(string s) { return Convert.ToInt32(s.Substring(11, 2)) < 5 ? DateTime.Parse(s).AddDays(-1) : DateTime.Parse(s); } } } | |
Re: I think you need speechmarks aroynd yes Eg if x == "yes" | |
Re: I don't think you need to pass in any arguments to generateRandomNo | |
Re: You already have the 4. Can you reword your quetion, it doesn't make sense. | |
Re: Yep I agree tables are supposed to be used for tabular data but not for page layout/templates etc. | |
Re: You really need to be a bit more specific with your question. It is far too general and doesn't make much sense or read well. | |
Re: Hi Ok I'm really not clear on what you are asking here. So I took your code and got it to compile - a few typos etc but got something working. I then renamed things and played around with it to give it more context - I find things easier … | |
Re: Do you have a Git account? If not create one and sign in. Go to the link you gave and click on Fork (top right) Then click on Download Zip. Save and unzip open the parent folder then open the next folde then open the MVCMusicStoreFolder and double click on … | |
Re: Are you able to post all of the form code so I can copy and paste it and it will work? This includes auto generated code for the controls etc. | |
Re: Change to this and then run it #faq EM { /*display: none;*/ } You can see what it is doing then - I'm just not clear on its intended behaviour. | |
Re: What data type is ID in your database? Can you debug your code, copy and paste the SQL statement and execute it directly against the database - in SQL Management Studio for example - and see what happens. This will give you a much clearer idea of what may be … | |
| |
Re: Can you not just hard code this: Dim x As Decimal = 0 x += Convert.ToDecimal(Table1DataGridView.Rows(0).Cells(1).Value) x += Convert.ToDecimal(Table1DataGridView.Rows(1).Cells(1).Value) x += Convert.ToDecimal(Table1DataGridView.Rows(3).Cells(1).Value) Where Cells(1) is the appropriate column? | |
Re: Looks good. I have some suggestions which are sincerely intended as to be encouraging. Firstly I would always use the using statement rather than manually calling Dispose eg: using (SqlDataReader reader = cmd.ExecuteReader()) { //Somde code here } For a few reasons - firstly you won't forget to call Dispose. … | |
Re: Cables are so much better and you can even go IP over power. | |
Re: What is a cycle image style? What's the page supposed to look like? | |
Re: Sure - either as a string or as a complex xml type | |
Re: Gribouillis is spot on but I would also move text = text.upper() into your acronym method too - its cleaner that way and more reusable. | |
Re: Use a loop and just add the digit on each time. This is pretty basic stuff, may I ask if you are able to program at all in php? | |
Re: Typically MySQL goes hand in hand with php but you can use any you like. ![]() | |
Re: Try changing #menu ul li a:hover + ul { display: block; } To #menu ul li:hover > ul { display: block; } Also remove horiztinal spacing with something like margin: 0; padding: 0; on #menu ul li ul li | |
Re: This is called screenscraping but you must get the permission of the website owners before you use this. | |
Re: $("#firsttearesult").val(diffHour + " " + diffMins); | |
Re: You can always remote desktop to your pc at home and use that. | |
Re: This doesn't look like C, looks like C# to me! | |
Re: Where are your customer records - are they in a database? Also this is WinForms right? | |
Re: You need something like below on or around line 57 p[0] = new pottertr_Point(); p[1] = new pottertr_Point(); p[2] = new pottertr_Point(); | |
Re: I think you will need QueryString not Form Dim yourname As String = Request.QueryString("your_name") You can then either make the input a proper asp textbox and set it's value in code behind, or you can just inject it into the page into the value attribute. Hoep that makes sense. |
The End.