Jump to content
Xtreme .Net Talk

BlueJay924

Avatar/Signature
  • Posts

    46
  • Joined

  • Last visited

BlueJay924's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. How would i go about doing this?
  2. from my datatable, i've queried the datatable and i have my rows that i want to put into a new dataset. now, to put it into a brand new dataset, do i still have to call the fill procedure?
  3. I am installing my program first in administrative mode. then when i want to place the program on each local machine, i want to be able to get the location of where i placed it on the network. how do i get that location rather than the target location?
  4. Is there anyway to write code in vb.net to alter the the IFieldObject. I'd like to be able to adjust the height or width and to remove any border colors. any help would be appreciated.
  5. I'm using crystal reports in my vb.net application. is it possible to write code that would move the location of a fieldbox or textbox in a report (section 2 and 3)? i want to be able to move and then resize the fields depending on if the user has selected landscape or portrait paper orientation.
  6. When i try to open my crystal report, i get the error "Class Not Registered". It was working fine before and now all of a sudden i can't open my reports. HELP!!!
  7. how can i change the location of where an xml file is located and have it reflected back into the code. i.e. when i install my app into directory1, crystal report only looks at my xml file from where i initially created it, say directoryA. how can i, on report load, set the location of the xml to where i want it?
  8. your bit about it being 1/0s is right but let me go a litte more into what i'm trying to do supp i have my array a : 1, 2, 3, 4 i want to be able to get all the possible combinations (the array size may vary) result would be 1 12 13 14 123 124 134 1234 2 23 24 234 3 34 4 but is there a an algorithm that will give me this combination because if there is my brain just does not want to see it.
  9. is there an algorithm for 2^n-1? i'm trying to get all the possibilities from an array and store each combination into an arraylist. is there a name for this algorithm? help would be appreciated
  10. my problem: i start off padding several strings and placing them into an xml file. in a crystal report, i'm pulling the same strings out of the xml file. my problem, they aren't lining up correctly. is there something that i'm doing wrong.
  11. I keep see this message in my output The thread '<No Name>' (0x9d4) has exited with code 0 (0x0). Does anyone know what it means? is this a concern?
  12. Did you ever find a solution to this problem?
  13. We are currently creating a vb.net application and want to place an Access DB on the server. Is this okay to do? not too many people will be using the application, and we don't have the funds to get a sql server.
  14. When i place my database on the server, my application tends to run slower. When i'm running a query, i'm not placing it in a dataset. i place the data into a combo box. would it be faster for me to place the returned data into a dataset first and then into the combo box? i've never placed anything in a dataset before and i read somewhere that this would speed things up? Actually, the article was for recordsets.
  15. if you have one connection open, and you want to run multiple queries, do you call cmd = connection.createCommand (where cmd is of type IDBCommand) more than once if you're running a couple of queries? or is once enough?
×
×
  • Create New...