• Member Avatar for castajiz_2
    castajiz_2

    Began Watching Search datatable from readline

    Hey guys im stuck in a project for school.. i need to creat a console app that stores info in tables. so were im confused is the part were the …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Search datatable from readline

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in App works on Windows Phone emulator, doesn't work on actual Phone

    No errors are shown, all the instructions have been folowed this is fourth app that I have uploaded, everything worked fine previously. The thing is that I'm reading HTML from …
  • Member Avatar for castajiz_2
    castajiz_2

    Created App works on Windows Phone emulator, doesn't work on actual Phone

    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...
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching App works on Windows Phone emulator, doesn't work on actual Phone

    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...
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Timespan in Android?

    I did that tnx
  • Member Avatar for castajiz_2
    castajiz_2

    Created Timespan in Android?

    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. …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Timespan in Android?

    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. …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Barcode Recognition (Spire.Barcode)

    I love barcodes. In my line of work (image processing and document imaging), barcodes play an integral part in high quality automation. As such, I've developed code from the lowest …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Barcode Recognition (Spire.Barcode)

    How is such code implemented in a device?. I suppose i could implement this only in Windows phone device or am I wrong.
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching C# vs Java

    In my opinion, c# is better then java. Espicially because it runs upon the .NET framework. But java can run on virtually any device. They re both alot alike, so …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in C# vs Java

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in adjusting html tags to different screen size

    Thank you for all of your responses, you really helped a lot of time. I ll see what I can do, I m gonna take a look at responsive web …
  • Member Avatar for castajiz_2
    castajiz_2

    Gave Reputation to mohamed.a.salim.31 in Open an instance of a form from a string

    But What about if the form in other project ? Your code return null Type type = Type.GetType(formname); // This == null My Fully class name is GL.Operations.frmAccounting
  • Member Avatar for castajiz_2
    castajiz_2

    Created adjusting html tags to different screen size

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching adjusting html tags to different screen size

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in C# Application for reading HTML string into pdf file

    have a look at this: [Click Here](http://www.youtube.com/watch?v=4qGKSaRIeXA)
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching C# Application for reading HTML string into pdf file

    Hello programmers! I recieved the following assignment to do in C#.net: It is a class that: * Accepts an HTML report string * Converts the HTML string into a PDF …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in C# Application for reading HTML string into pdf file

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching html menù from mysql table in c# with linq

    Hello and many thanks to all for your attention. I need to draw an HTML menù (<ul><li>...) over data retrieved from a table with a schema like this: id(int autoincrement), …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in html menù from mysql table in c# with linq

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Retaining Existing Images In Panel

    Maybe you should put your images into a list or a array and then loop through them once the paint event fires. Other than that I can not find any …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Retaining Existing Images In Panel

    I have a panel where I am drawing images on button click. But on the second button click, the previously drawn image is being replaced by the new Image. void …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Retaining Existing Images In Panel

    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" …
  • Member Avatar for castajiz_2
    castajiz_2

    Stopped Watching Algorithm to split a array into two arrays with minimal sum difference

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Algorithm to split a array into two arrays with minimal sum difference

    Yeap, I don't know how i missed that. If starting from the top to bottom wouldn't then this be the most accurate way to rephrase your sentence, or is there …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Algorithm to split a array into two arrays with minimal sum difference

    I m sorry, my for loop had to start at i=2; -Would'nt the output be the same if i reverse the list and start from top element?
  • Member Avatar for castajiz_2
    castajiz_2

    Created Algorithm to split a array into two arrays with minimal sum difference

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Algorithm to split a array into two arrays with minimal sum difference

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Gave Reputation to Praveen_10 in Database and form

    hey thnx buddy :)... i changed line 6.....i changed it to username.Text and pwd.Text... and it worked like magic :P
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Database and form

    private void button1_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=@im and …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Database and form

    using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace book { public partial class login : Form { SqlConnection conn; SqlCommand cmd; SqlDataReader reader; public login() { InitializeComponent(); } private void button2_Click(object …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Database and form

    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 + …
  • Member Avatar for castajiz_2
    castajiz_2

    Edited Autocomplete textbox using jquery and asp.net

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Created Autocomplete textbox using jquery and asp.net

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Autocomplete textbox using jquery and asp.net

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Marked Solved Status for Error 403 (uploading on somee.com, asp.net webhost)

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Gave Reputation to JorgeM in Error 403 (uploading on somee.com, asp.net webhost)

    Yes you have to upload your aspx and code behind files, web.config at the least. If you have dlls, controls, etc... That are required in your project upload them too. …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Error 403 (uploading on somee.com, asp.net webhost)

    So in other words you re saying that I have to upload my default.aspx along with other files that are needed for the default.aspx to function and then I can …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Error 403 (uploading on somee.com, asp.net webhost)

    Actually what I did, I uploaded all the files to the root directory without the folders which i had before. Now I m able to see my page but can …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Error 403 (uploading on somee.com, asp.net webhost)

    Thank you guys for your quick answer, here is the directory so that you can see and maybe point to towards the error.
  • Member Avatar for castajiz_2
    castajiz_2

    Created Error 403 (uploading on somee.com, asp.net webhost)

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching Error 403 (uploading on somee.com, asp.net webhost)

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching read the content of web page

    I want to write a program that do this: It should receive the URL (Wikipedia 's URL) from input and download that web page And read the content of that …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in read the content of web page

    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 …
  • Member Avatar for castajiz_2
    castajiz_2

    Marked Solved Status for how does javascript work exactly?

    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 = …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in how does javascript work exactly?

    yea yea i figured it out by now but tnx for the further explanation!
  • Member Avatar for castajiz_2
    castajiz_2

    Created how does javascript work exactly?

    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 = …
  • Member Avatar for castajiz_2
    castajiz_2

    Began Watching how does javascript work exactly?

    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 = …
  • Member Avatar for castajiz_2
    castajiz_2

    Replied To a Post in Downloading content from another webpage

    Will try that tomorow tnx

The End.