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 Wanet Telecoms Ltd 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: Rexxx
  • Content: Threads
  • Order by date
  1. Rexxx

    IM mapping to a custom field

    I'm using Integration Manager to integrate a General Journal. The General Journal form has a custom field (customer id) that I need to map integration to. Does anyone out there run IM that maps to a custom field that help?
  2. Rexxx

    Import question

    I've got expense data to import into GP on a regular basis. The version of GP I have is 7.50g30. I have Integration Manager available to use. First, I know I've got to have the data parsed to import correctly. I thought I'd use Visual Basic to get this routine accomplished. I've looked...
  3. Rexxx

    Creating Org Chart

    I've got an Excel database with the following five columns: Full name, job title, department name, supervisor, location What I would like to have happen is for a program to take this information and create an organization chart from it automatically. What I don't want to have to do is have a...
  4. Rexxx

    Crystal and GP Report menu

    I create a Great Plain report in Crystal how do I add the report to the Great Plain report menu? In other words, the report file must be stored then called by report menu item .. what is the most efficent way to do this?
  5. Rexxx

    GP Smartlist

    In regard to GP v7.5 and Smartlist v7.5, using GP HR module the payroll folders do not include columns needed for export such as paycode description. Is it correct that in order to add a custom table as a folder or add columns to existing folders an addon tool is required such as Any View or...
  6. Rexxx

    How to start a multiple column dropdownlist with what already there

    Below I have an array that populates a dropdown list box and inserts, as a first item of the array, that item of the array which is already part of the record which the user will then either leave as is or select another item in the array to change: Dim selectCMD7 As SqlCommand = New...
  7. Rexxx

    Replace chararcter in dataset (vb)

    I have a dataset named company and I am trying to replace every character (^) in the rows of a certain column (coname) with another character ('). Code I have is follows: For i = 0 to ds.Tables.Count -1 Replace(ds.Tables("company").Rows(i).Item("coname"), "^&quot...
  8. Rexxx

    CustomError message problem

    For some reason I keep getting a customerror message when I load an asp.net site that has an error. This changed overnight. If I logoff and back on as a different user I do not get the customerror message. The Web.Config file has CustomErrors mode = "Off". I cleared the browser...
  9. Rexxx

    databinder help with nested datalist

    I have the following code: <tr bordercolor=&quot;0&quot;> <td valign=&quot;top&quot; class=&quot;apartmentinside&quot;>&nbsp; Members/Shareholders:</td> <td class=&quot;apartmentinside&quot;> <asp:DataList runat=&quot;server&quot...
  10. Rexxx

    Need help to print one record after another

    I am using repeaters and I need for each record to print one after another (vertically). As of now, I can loop through the dataset but all I get displayed (printed) is the last record in the dataset. Somehow I need to get the display to loop too. Very much like a datalist would do ... but...
  11. Rexxx

    Help with a loop

    I need to loop through the number of rows in a dataset by changing the row number of the following: coDS.tables(&quot;company&quot;).Rows(0).Item(&quot;coname&quot;) First, how do I stop a loop in a dataset once it reaches last record? Second, do I change the &quot;Rows(0)&quot; to this...
  12. Rexxx

    How do I add a blank value selection to my array? (vb)

    I have the following array (see below) and it populates a dropdownlist. The way it works now is without an initial selection the dropdownlist displays a blank (&quot;&quot;) value. Once the user makes a selection from the dropdownlist and updates accordingly then wishes to go back and clear...
  13. Rexxx

    Excel VBA to email attachments

    I am having some trouble coding VBA to email an Excel attachment. My vba sub copies cells to an excel form then emails the form as an excel file which is working swell but when the email with attachment opens it will not allow me to paste my Excel email recipients address (grabbed from an Excel...
  14. Rexxx

    Validator help

    I'm using a panel form and if a certain textbox has an entry then I need for another certain textbox to require an entry. This validator is to be I believe a client side validator so that tabbing through the form will display the error (i.e.,not the need to display the error by submission of the...
  15. Rexxx

    How to build a range from the last occupied cell in column?

    What is the VB command to build a range (in Excel) beginning with the last occupied cell in a certain column plus 170 rows?
  16. Rexxx

    How to build a range from the last occupied cell in column?

    What is the VB command to build a range beginning with the last occupied cell in a certain column plus 170 rows?
  17. Rexxx

    Popup message

    Within my aspx file I need to code it to display a popup message (as opposed to using an html page message) to inform the user whether a certain record was successfully entered into an SQL database. As of now my sql stored procedure to add a record returns a value -1 if the record is...
  18. Rexxx

    Help inserting asp Html email code

    I am emailing a form but need to nest in an asp value. The following line has a problem: HTML = HTML & &quot;<input type=&quot;&quot;text&quot;&quot; name=&quot;&quot;cname&quot;&quot; value=&quot;&quot;<%=Request(&quot;&quot;cname&quot;&quot;)%>&quot;&quot; size=94 maxlength=100>&quot...
  19. Rexxx

    Word capitalizes 1st letter of gif names

    How can I make it so that when I convert a Word document (which contains links to Excel) to html to name the links it turns into gifs without capitalizing the first letter?
  20. Rexxx

    Making change to Public calendar event

    I have a Public calendar and when I send a meeting request to it then later decide to either cancel it or change it the Public calendar treats the change by creating a new item on the calendar as opposed to modifying the original or deleting it. So when a change happens there becomes at least...

Part and Inventory Search

Back
Top