User Profile

Collapse

Profile Sidebar

Collapse
siddhanta
siddhanta
Last Activity: Jan 8 '12, 06:44 PM
Joined: Oct 31 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hi
    thanks for the replies.

    I tried above things still the same issue. A blank output.
    Is there any way to check what is the 'brand' value in php. I mean something like alert box in jscript. So that i can figure out if the 'brand' value is actually passed from jscript to php.

    Thanks
    See more | Go to post

    Leave a comment:


  • sorry i missed it.
    Error is, instead of expected value, only a blank value is inserted in my second drop list.
    I have checked the 'brand' value using alert box in jscript and its working fine.
    also i have included some dummy output like $options_mobile .="<OPTION VALUE>Choose11" .'</option>'; in php file. its too working fine.

    thanks..
    See more | Go to post

    Leave a comment:


  • POST & GET - Passing a string value from javascipt to php

    hi,
    i have two drop down list.
    First one is populated from database and its working fine.
    Second one will also be populated from database but as per the value selected from the first drop-down list.

    Code:
    <head>
    <script type="text/javascript">
    function xyz_list()
    {
    
    // xyz_list is the id of my first drop-down list
      var xyz_list=document.getElementById("mob_list");
    ...
    See more | Go to post

  • siddhanta
    replied to read extended ascii values
    thanx for the tips
    but i was expeting the solution
    See more | Go to post

    Leave a comment:


  • siddhanta
    started a topic read extended ascii values

    read extended ascii values

    hi,
    i read the ascii value from a file and wrote the decimal one in other file.
    But values above "127" i.e. extended ascii are printed as" 65533."
    here ais wat i did:
    Code:
    private void button1_Click(object sender, EventArgs e)
            {
                int[] b = new int[100000];
                StreamReader sw = new StreamReader("c: \\28D.09N");
                for (int i = 0; i < 5000;
    ...
    See more | Go to post
    Last edited by tlhintoq; Dec 12 '09, 09:41 AM. Reason: [CODE] ...Your code goes between code tags [/CODE]

  • siddhanta
    started a topic read a hex file

    read a hex file

    hi,
    i have a .hex file and i have to read it and convert and sasve it in decimal format.
    any ideas plzzz
    See more | Go to post

  • siddhanta
    started a topic key down event in panel

    key down event in panel

    hi,
    i have drew a graph with many points in panel. Now i want to create a cursor in panel which will move along the graph (or the points) while pressing the left or right key. But there is no keydown event in the panel. can i use the forms keydown event or there is any other alternatives...
    thanx
    See more | Go to post

  • flickering problem when using scrollbar in panel

    hi
    i used a scrollbar in my panel. but when i scrollup or down the panel flickered.
    See more | Go to post

  • siddhanta
    replied to line graph
    get co-ordinates using mouse hover

    hi,
    how can i display the co-ordinates of the form when the mouse is placed there
    See more | Go to post

    Leave a comment:


  • siddhanta
    replied to mdi
    reference to parent form

    hi
    how to get the reference of parent form. Actually i want to call a method of parent form through the child form.
    See more | Go to post

    Leave a comment:


  • siddhanta
    replied to line graph
    co ordinates

    hi
    i have a line graph in and i wanna display the co-ordinates of the graph when the mouse cursor is placed at the point on the graph
    See more | Go to post

    Leave a comment:


  • siddhanta
    started a topic mdi

    mdi

    i wanna create a mdi form. but to make the other form as child of the main i cant find any mdiparent property in the properties list. i m using vs 2010.
    help plzzz

    leave it
    i understood how to do it
    See more | Go to post

  • siddhanta
    started a topic line graph

    line graph

    hi,
    i have arrays of x and y values to draw a line graph. I dont have any idea regarding graph in c sharp. So, can help from where to proceed.
    See more | Go to post

  • siddhanta
    replied to format exception was unhandled"
    hi,
    There is nothing being lazy, the only thing is that i thought its better to write point 2 point, so i didnt wrote much. but in line no. 14 the question was mentioned. Also, i should have mentioned that at top to highlight it.
    sorry to confuse you
    See more | Go to post

    Leave a comment:


  • siddhanta
    replied to notepad
    split function

    hi,
    to seperate two integers in a line seperated by space i used the following function:
    string[] variables = s.Split(' ');
    but the problem is integers are seperated by more than one space, where the above functiion gives error. Also i cant use more than one space in split.
    so, can u help plzz.....
    See more | Go to post

    Leave a comment:


  • siddhanta
    started a topic format exception was unhandled"

    format exception was unhandled"

    Code:
    float[] x = new float[10000];
    float[] y = new float[10000];
    int c=0;
    
    using (StreamReader sr = new StreamReader("e: \\CuPeak.dat"))
    {
    
    while (!sr.EndOfStream)
    {
    
    string s = sr.ReadLine();
    
    string[] variables = s.Split(' ');
    x[c] = float.Parse(variables[0]);//run time ERROR in this line " format exception was unhandled"
    y[c] = float.Parse(variables[1]);
    ...
    See more | Go to post

  • siddhanta
    replied to notepad
    read notepad

    hi,
    to read from a notepad i hv used the following code.
    bt the problem is, it will not read the next line.
    so how to read line by line.....
    Code:
    using (StreamReader sr = new StreamReader("c: \\key.txt"))
    {
    
      string s = sr.ReadLine();
      //etc.
      Console.WriteLine(s);//its showing the output
    
      string[] variables = s.Split(' ');
      float
    ...
    See more | Go to post
    Last edited by Frinavale; Dec 9 '09, 08:49 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.

    Leave a comment:


  • siddhanta
    replied to notepad
    split value

    hi,
    i used the following code but getting problem with it.
    wat i wanna do is to store a line from notepad having two float values seperated by Space.
    private void button1_Click(o bject sender, EventArgs e)
    {
    StreamReader sw = new StreamReader("c : \\key.txt");
    line = sw.ReadLine();
    Console.WriteLi ne(line);//its showing...
    See more | Go to post

    Leave a comment:


  • siddhanta
    replied to notepad
    i have a .dat file where the values are save. i want to store this values one by one in variables.
    See more | Go to post

    Leave a comment:


  • siddhanta
    replied to notepad
    notepad

    hi,
    how to take a value from notepad and save it in any variable.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...