Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ragnarox
  • Content: Threads
  • Order by date
  1. Ragnarox

    Start program from program

    Hello all, I am writing a startup program for everyon to use and here is what it does. 1. Check and make sure local exe is same as server exe 2. If not save copy server files to local directory 3. Start next program I cant figure out how to start up that second program, so if...
  2. Ragnarox

    Passing parameters from VB.Net to Crystal to a stored Procedure

    Hello all, I have created a report in CR9 that is an invoice for our customres. This invoice is not a static item, it can have anywhere from 2 to 6 different columns in the middle of the report. Basically the report is set up like this Col 1 to Col 3 - set standard for each report Col 4...
  3. Ragnarox

    Selecting Between Two Different Tables

    Hello all, My report needs to get information from 1 of 2 tables depending on a specific value. Whenever i place that second table into the else statement all i get is a blank report, except for my text objects. It just will not run with a table selection in my formula. Anyway here is my...
  4. Ragnarox

    Coding a click event for LinkLabel

    Hello all, I have a number of linklabels in my program and in certain instances I would like to have them run, without the user having to actualyy click on the link. Buttons have the PerformClick event that you can call in code, but i have not found anything like that for a linklabel. Is...
  5. Ragnarox

    Combobox Problems - To Dynamically Create or Not

    Hello all, I am having a problem with my combobox. I am setting its datasource to a class that I have created. Everytime that I try and reset the combobox with the following code cmbPDFItems.Text = "" cmbPDFItems.DataSource = Nothing If cmbPDFItems.Items.Count > 0 Then...
  6. Ragnarox

    Out of range error when hit Return

    Hello all, I am getting the following error: [COLOR=red]Specified value out of range of acceptable values[/color red] I get this after i have cleared all the forms within my project. When i am filling out the form a second time the textbox where i am getting this error has the...
  7. Ragnarox

    Group Suppression

    Hello all, I am probably missing something very obvious but i can not see it. I am trying to supress a Group Header iff all 3 details sections are supressed. Is this possible? If it is how can i accomplish this? Any help, as always, is greatly appreciated. Brian
  8. Ragnarox

    Section Suppression

    Hello all, I have a two column report that has 4 detail fields. The first one holds a name and email address. The next three hold licensing information. The licenses expire at different times and they can have more than 1 ( we currently keep track of 3 ). The problem that I am having is...
  9. Ragnarox

    Crystal SQL Designer for CR 9

    Hello all, I am trying to create query for a report i am needing. The problem that i am having is that the SQL Designer is not able to connect to my database. It will not go onto our network and establish the connection. The Crystal Directory will connect to the database though. Is...
  10. Ragnarox

    Textbox Data Masks

    Hello all, I have set up a mask for a textbox, that will display an integer as money. The problem is that when i go to save it it tries to save the mask into the database as well. Do the masks in VB.Net not get stripped out when you are saving, or is there a place that i have to set it up to...
  11. Ragnarox

    Clearing datasets

    Hello all, I have a dataset that has a number of tables that i want to clear. In my parent form i have a menuitem called Clear All. Within this event i have the following code : dataset.tables.clear(). Am i correct in assuming that this should clear out all the tables of information? If it...
  12. Ragnarox

    Dynamically Formating Datagrids

    Hello all, I have a datagrid that I have already defined a table style and column styles for. The problem is that i get fill the dataset dynamically and can not get the datagrid to use the table style. I know that this has to be able to be done dynamically but I can not figure it out. I...
  13. Ragnarox

    Pause a sub till certain button click on new form

    Hello all, I have a program that needs to open a second form in some cases. When this second form opens I want to suspend the processing of the sub that called the second form until 1 of 2 items are clicked (out of a possible four items to click), then return the focus to the calling sub...
  14. Ragnarox

    Retreiving output from a query

    Hello all, I have a stored procedure that is returning some variables. I already have those variables declared as outputs within the procedure. I have tried just seting up the variable's direction as output within vb but this has not worked. Is there something else that I need to do in...
  15. Ragnarox

    Best way to Increase Programming Skills

    Hi all, I searched through the last half year and saw nothing in regards to this so I hope it has not already been covered recently. I have been programming in VB.Net for almost a year and know that there is a lot that I do not know. I want to take full advantage of the power of the .Net...
  16. Ragnarox

    Program will not start on some systems

    Hello all, We are having a problem during our testing phase on getting the program to run on some but not all of the computers in our network. The Windows XP Installer works fine and the program gets loaded without any errors. As soon as you click on the icon though the following error...
  17. Ragnarox

    Update Empty Storage DB with different Dataset

    Hello all, I am attempting to update an empty database with information from another database. I have tried many different approaches as follows (shortened for general understanding) : 1. while loop drStore = New rows for storage ds drInfo = info ds row at count...
  18. Ragnarox

    Getting only Relevant Columns on DataGrid

    Hello all, I have a datagrid that I setup a table style on. I put into it only the columns that I wanted to show. The other columns are used elsewhere on the page and are not needed in the DataGrid. The problem is that the columns that I do not want on the DataGrid are still showing up...
  19. Ragnarox

    Combo Box Selection Problem

    Hello all, I have numerous combo boxes in my program where users can type in and as they are typing the closest match appears. The problem is that once the first key is pressed and a match is found by the FindString method, that is what the program holds onto, even if that is not what is...
  20. Ragnarox

    Clearing TextBoxes within GroupBoxes

    Hi all, I am trying to clear all the textboxes on my form. The problem that I am having is that the textboxes are inside of GroupBoxes and the following code only sees the GroupBoxes. Dim ctl As Control For Each ctl In Controls If TypeOf ctl Is TextBox Then ctl.Text = "" End...

Part and Inventory Search

Back
Top