Search results for query: *

  • Users: rockwell
  • Content: Threads
  • Order by date
  1. R

    post xml string from vb.net to php

    Hello all, i was wondering if i can post an xml string from vb.net using xmlhttp or anything else .... Thanks for your time ....
  2. R

    escape '<' in vb

    hello all, i am trying to post a string to an other program(php), the string is actually xml tags, when i send the string as below str = "config=<?xml version='1.0' encoding='UTF-8'?><map>name</map>" but when im recieving an empty string at the other end, when i remove the first "<" then i...
  3. R

    Change the color of the form

    Hello all, i was wondering how do we change the color of the form from the code, like i am able to just set the color of the form to the colors like lightgray, white etc... but i want to set the color to controllight which is shown in the properties box and this i want to do it in the code ...
  4. R

    Create a vb.net dll

    Hello all, i was trying to figure out how to create a dll out of a vb.net application. I couldnt find a proper link or a posting where i can do this. Can anyone provide me with one ... Thanks for your time ....
  5. R

    set a time limit on a function

    Hello all, can we set a time limit on a function or a snippet of code. For example a function have to give the output in 5 seconds, if it takes more than 5 seconds to process the control shud exit the function and carry on to the next statement. I am not sure if this can be done ... Any...
  6. R

    print a form vb.net

    Hello all, i was wondering how do we print a form using some event in vb.net. I mean the code to print it out. Thanks for your time .... --kris
  7. R

    insert an empty string into a database

    hi all, i am using ms access as my database. I have many textboxes for user entry and some of those text boxes might me empty too. So i just tested if i can insert a null value into a database if the textfield is empty with 4 textboxes. For Each control As Control In Me.Controls If...
  8. R

    vb.net help

    Hi, i have 10 textboxes names txtbox1 to txtbox10. want to assign a value 1 in the first textbox, 2 in the second and soon. I wrote a for loop and tried to concat i with txtbox but gave an error for i=0 to 11 txtbox & i.text = i next the above code gave an error, if some one can help...
  9. R

    Menu creation in vb.net

    Hi all, i created a menu as we usually do in vb but when i run the application the menu i created doesnt showup on the screen, is menu creation different in vb.net from vb. I al ready set the visible property to true, though the ,menu cannot be seen. Any suggestions please ..
  10. R

    Object reference not set to an instance of an object

    Hi all, i am getting this error when i am trying to display a textbox data from a subform on to a textbox on a main form, i will explain the senario. I have a search button on the main form which brings up a subform where i search a row with an id, for now i am putting the value in a textbox and...
  11. R

    Cannot access a disposed object

    Hello all, i am getting an error when trying to access the sub form in vb.net. I created a sub form in vb.net and if i click a button its coming up by calling "subform.Show()", when i close the sub form and try to reopen it its giving me an error saying "Cannot access a disposed object sunform"...
  12. R

    selecting multiple items in a listbox

    Hello all, im really not sure how to select multiple items in a listbox. I have searched about this but couldnt find anything which helps me. Can anyone please help me how to select multiple items in a listbox and store them in an array. Thanks in advance
  13. R

    eliminate duplicate entries from a list box

    hi all i am new to vb.net and i dont know how to eliminate duplicate entries in a list box. Could anyone please help me out in this. Thanks in advance
Back
Top