- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 28
- Posts with Upvotes
- 25
- Upvoting Members
- 20
- Downvotes Received
- 7
- Posts with Downvotes
- 6
- Downvoting Members
- 6
engineer student , studying traffic engineering
- Interests
- c,c#,xml,html,css,javascript,mathematics,
- PC Specs
- Lenovo -->Intel Core i5-3210M, 2.5Ghz, 8.0GB ram, intel hd graphics 400, HDD 1TB
189 Posted Topics
Re: first of all you should make a new thread. I do know how your data is stored but neverless, you should specify for each one of them the snooze time and then do your code logic... | |
Re: 1. Error--> I do not see a method called IsString 2- Error--> Method IsWithinRange accepts only four arguments so you have to assign 4 arguments once you call your method, not six as you did it. 3- Error--> if you have a method that is NOT void then you have … | |
For the last 5 months I've tried to organize myself and my friends in order to collect some relevant information on news sites (information about global warming, pollution, ecology etc.) The only solution that I've found was to use a local search engine from the news site and type in … | |
Hi there, I' ve got some data in my database and I' m using PHP to fetch it and would like to transport it to client side via JSON. The problem that I'm facing is the folowing: I have a timeline which was built in html and css and I … | |
Re: On what platform are you building your app? Are yout trying to move your data from the datagrid into a list or from a list to a datagridview? | |
Re: Have a look at this link: http://tech.pro/tutorial/620/csharp-tutorial-image-editing-saving-cropping-and-resizing | |
I've started here at DANIWEB almost 3 years ago. Helped a lot of people altough most of them did not give any feedback (votes, mark question solved ect.). I must say that DANIWEB created me as a programmer in one way. I still remember spending 3 and half hours on … ![]() | |
Hi, I was wondering if anybody is willing to share some information on how much can you earn from implementing add ons to your application? I know that I can not find such info on the web so I want to ask people who actually earn from app advertising. And … | |
![]() | Re: Instead of where (dtCutOffDate.Subtract(dt.Field<DateTime>("Date")).Days) >= iStartRange && dtCutOffDate.Subtract(dt.Field<DateTime>("Date")).Days <= iEndRange Just add a '?' character. where (dtCutOffDate.Subtract(dt.Field<DateTime?>("Date")).Days) >= iStartRange && dtCutOffDate.Subtract(dt.Field<DateTime?>("Date")).Days <= iEndRange You should avoid the exception now. ![]() |
Re: This could as well help you http://www.dotnetperls.com/datetime-parse | |
I believe everyone heard the news from November the 11th-"Opening up Visual Studio and .NET to Every Developer, Any Application: .NET Server Core open source and cross platform, Visual Studio Community 2013 and preview of Visual Studio 2015 and .NET 2015". Maybe some people will disagree but I think that … | |
Hi, I have developed a application for students that retrieves data (eating menus) from a official eating website of the whole University (13 restaurants located around the city). Actually I spend a month and a half of doing some reconnaissance and programming (getting information of that site) so that I … | |
For the past 3-4 years I can say that I m very active in programming (programming on daily bases and trying to compesate my education wich is not 100% related to programming). After this 3-4 years of daily programming I can say that I feel like I can make anything … | |
Re: What you want to achieve can sometimes be highly complicated. I recently made a useful aplication for students which allows them to see the current eating menu. other people tried to do that as well but couldn't get a permission to access their "database" which is the easiest thing to … | |
Re: Try to google first if you are having any problems. The code is quite large... When you get stuck wiht some piece of code that repost and everybody will be glad to help you... | |
Re: You should be following the advice of Oxiegen and see the behaviour after the iteration. Otherwise, please post a little bit more of the actual code. Also on every postback your list variable is destroyed (there are no public variables in ASP.Net) I'm talking about webforms (do not have expirience … | |
I would like my app to go to another page when i slide it horizontaly. I don't know the appropriate name of such an action and therefore am not able to find any refference on google. Can anyone point out the keyword that I missing and give some links for … | |
Re: Try with putting the Listener_button event in the OnResume() method, and then see if it works... | |
Re: Watch videos 46, and 47, and you ll understand. [Click Here](http://thenewboston.org/list.php?cat=31) | |
Re: Well convert it then, I don't see where the problem is. Once you are done with the conversion, use that same variable (converted) to pass it into your query. You have plenty of examples online, one of them:[http://www.dotnetperls.com/sqlparameter](http://www.dotnetperls.com/sqlparameter) when you attempt something, then post your code here if you run … | |
Re: Use the free packet and download a sql server managment studio. https://somee.com/default.aspx Once you create your webiste you can you use login information from the website and manipulate with the database program which you have to install on your hardrivev (sql server managment studio), | |
The title says everything, I was searching through google why this is the case but haven't been able to find any answers. Any reference would be greatly apreciated... | |
Re: You don t need daniweb for that, you ve got google... | |
I ve made an windows phone app in c# and now I m making equal android app. I ve come to the problem where I have to compare some times. In c# there is a well known TimeSpan class but I see that java(Android) does not have such class. Could … | |
Re: This shouldn t be too hard to do. Altough I m not sure what do you have to do in the end. Do you have to have the html in your PDF with the tags included or is it just the output of your html that you have to have … | |
Re: How is such code implemented in a device?. I suppose i could implement this only in Windows phone device or am I wrong. | |
Re: Then try with both. Install eclipse and write some code, install VS. and write again some code. See which suits you better. The thing is that you can not make a decision at first but after a few months you'll be able to tell by yourself. For me Java is … | |
I developed a website actually a simulation of a program on my 17.3 inch laptop. When I come to another machine for example a 15 inch laptop witch has a different screen size(diagonal) my html tags won't compensate, so I have to scroll through the website to see all my … ![]() | |
Re: Well once you get your data you can also improvise like this foreach (DataRow row in name.Table.Rows) { Response.Write("<tr>"); Response.Write(String.Format("<td>{0}<br/><br/></td>", row[1].ToString().Replace(Environment.NewLine, "<br/>"))); Response.Write("</tr>"); Try to rearrange the code using your desired html tags.. | |
Re: You have to post more code for sure. At first I tought that you previous image is covered by the next image but i see that you have a "dynamic" variable i witch actually makes the other images next to the previous images(you are changing the position for the drawing … | |
I ve been searching for various algorithms for the past few days and I came accross this one. Is this the right solution to it (Greedy algorithm), or am i missing something. static void Main(string[] args) { int[] array = new int[71]{ 72, 79, 84, 46, 14, 4, 62, 88, … | |
Re: private void button2_Click(object sender, EventArgs e) { string constr = @"Data Source=PRAVEEN\\SQLEXPRESS;Initial Catalog=travelbooking;Integrated Security=True"; conn = new SqlConnection(constr); conn.Open(); cmd = new SqlCommand("select *from travelregi where name='" + username + "' and password='" + pwd + "'", conn); reader = cmd.ExecuteReader(); if(reader.HasRows) { reader.Read(); if (this.username.Text == "name".ToString() && this.pwd.Text … | |
I ve been trying for the last 3 hours to get my autocompletetextbox working and tryed all sort of code. My Web service is working from wich I m actually fetching all the stuff but the jquery seems not to work, I m always getting the error when typing the … | |
Hy guys, haven't been here for a while, and I m having a problem that I didn't use to have before. When I was uploading via filezilla ftp client program a month ago a asp.net built website I didn't have any problems whatsoever. Now I'm facing problems and always getting … | |
Re: This is an option. It is widely used. I happened to use it a day ago.. WebRequest request = WebRequest.Create("url"); WebResponse response = request.GetResponse(); Stream current_data = response.GetResponseStream(); string content = ""; using (StreamReader sr = new StreamReader(response)) { content = sr.ReadToEnd(); } | |
I m new to javascript and I m little bit confused on how does a webpage read the actual script. let's say I have the folowing code: <script> vrijeme = document.getElementById("Label7").innerText; minute = vrijeme.substring(0, 2); sekunde = vrijeme.substring(3, vrijeme.length); alert("fuck you"); var start_time=setInterval(secondFunction, 1000); function secondFunction() { sekunde = sekunde … ![]() | |
Re: I ve seen your code, I can have a deeper look at it but in 4 days from now on. If you find the error than post it so that we actually know that youre done with it ... | |
What is the best way to download the html content from another site and display it into my website? What is the best built in class to use for this case? | |
Re: You could use the ConsoleKeyInfo class and the ConsoleKey struct. Put them in a do while loop and you should be able to manage your code with spaces after the number input. Don't forget to combine them with the Console.Read() or .ReadLine() methods... | |
Is there a easier way to move and postion the object from the toolbox in visual studio asp.net framework.When I say easier i reffer to windows forms framework object positiong where moving objects accross the form is a piece of cake. | |
Re: I would advice not to go to c or c++. I did that when I was at college. I picked a advanced c++ book and started learning some easy algorithms(I realised that i could have done that with c#). C# (Console Aplication) is where you should start and you ll … | |
Ok, I ve been struggling for the last two weeks to get my webservice working on somee.com. I managed that. Then my database corrupted but managed to get it migrated it to mysql before that and everything' s fine. Now the final problem that I have and just can't solve … | |
Re: This is a solution on how you could solve you problem, I m again working in java a little bit so I m trying to get the syntax to my brain so I hope that people won't get mad for posting the solution... public class Solution { public static void … | |
Re: check out this, when you have something post the code... [https://www.youtube.com/watch?v=4KeoOPWshmw&index=39&list=PL6n9fhu94yhVm6S8I2xd6nYz2ZORd7X2v](https://www.youtube.com/watch?v=4KeoOPWshmw&index=39&list=PL6n9fhu94yhVm6S8I2xd6nYz2ZORd7X2v) | |
public string Data() { string dohvat_podatka = ""; using ( MySqlConnection con = new MySqlConnection("Server=xxx.000webhost.com;Port=3306;Database=xxx;Uid=xxx;password=xxx;")) { con.Open(); using (MySqlCommand cmd = new MySqlCommand("SELECT ime FROM `nastavnik` WHERE prezime=@prezime", con)) { cmd.Parameters.Add(new MySqlParameter("prezime", "Carić")); using (MySqlDataReader dr = cmd.ExecuteReader()) { if (dr.HasRows) { while (dr.Read()) { dohvat_podatka = dr.GetString(0); } } … | |
I ve built a simple webservice just for testing and whenever I implement it on my windows phone 8 solution(I add a refference) my methods which are decorated with the [webmethod] naturally seem to convert from type string for example to type void and at the end of the method … | |
Re: By all means you should reduce your code. After reducing it try to insert some data, see if the connection is right. If you manage to insert data into the database then you wont have a problem with inserting more data into it(for testing purpose). The best thing for us … | |
Does anyone here know what programming languages does the military usually use to make sumbarine softwares? If anyone can point to some links because i wasn't able to find anything on the net. | |
Re: Why dont you put your struct in the code so that others can directly copy and paste to VS... |
The End.