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: tb
  • Content: Threads
  • Order by date
  1. tb

    Custom Workflow - Windows server 2008 64bit

    Hi guys, So the time actually arrived where I had to write my first custom workflow ... what a struggle .. Scenario: Windows Server 2008 64bit ... VS 2008 / 2010 So by now I know that I cannot create a sharepoint workflow and I'm using the wsp builder to accomplish the task ... but alas no...
  2. tb

    Page Viewer Web Part

    Hi all, Hope someone can shed some light on my frustration... I have a Page Viewer web part linked to an external URL. The external site has it's own login page. So, when the users try to login from the IFRAME, nothing happens... Yes, it works when the user adds the URL to trusted sites, but...
  3. tb

    Report from Sharepoint(2007) list using VS 2008

    I have gotten as far as creating a service (web service) link to the site ... http://myserver/mysite/_vti_bin/lists.asmx I have used this service in creating a datasource. I have put some fields on the report ... but NOTHING Anybody done this before? Any links / tips to share? I was standing...
  4. tb

    Multiple document linking

    Hi there, Is it possible to link (reference/add relationships) multiple documents to a master document within the same Document Library. eg. Contact_A is linked to SLA_1, SLA_2, SLC_1 and SLC_2. My client's need is to be able to see the relationship, just by looking at the documents listed and...
  5. tb

    Text export to .csv

    I am exporting text to a csv file using stringbuilder. (C#) The problem that is that some text (from the Database originates from multiline textbox) have \r\n in them. Thus opening in Excel is looks terrible. Is there a way to replace \r\n with ALT + \r\n - which would be acceptable for Excel...
  6. tb

    C# - File access

    Hi all, Need some help ... Have a system (glorified telephone directory) that will display a person's photo with some contact information. The photos, currently, reside on the same server and is displayed via an Image control (std Web Control). imgPhoto.ImageUrl =...
  7. tb

    IIF Function in Dataset

    Hi all, (Newbie) I am trying to build my WHERE clause with the IIF function. I have 4 parameters that include a "ALL" option and that is what I am trying to cater for. Have done is successfully when there is only one parameter involved, IIF (Parameters!Rep.Value = "0", " WHERE A.Region = '" &...
  8. tb

    Generic Query Designer

    Hi all, Can anyone tell me what I am doing wrong in this query? (Generic Query Designer) Basicaaly what I want to achieve is ... When "ALL" Sales Rep name is selected it will only use Region as part of the WHERE clause otherwise it must use both the Region and Sales Rep selections in the WHERE...
  9. tb

    Dynamic Query in a Report (Newbie)

    Hi guys, This has just landed in my lap, so here goes ... We have 8 different databases - so to define the data between them we have a region field. The first parameter is my Region. No I want my other parameters to take that into account. I found a topic in the Help file and tried to apply...
  10. tb

    Web Setup Project **Newbie

    Hi all, I have created a setup package for a C# project with the Web Setup Project in Visual Studio .Net 2003. It all works well, except for the fact that we use Infragistics controls. In my setup package I have now added a special folder (Custom Folder) to add the neccessay files and script...
  11. tb

    Infragistics - Active Tab - AddControl Method

    Hi all, This is my scenario ... I have a form that contains the following Infragistics controls: Active Tab (2 tabs by default - "Sample 1" and "Add New") Active panel Ultra grid On the click of the "Add New" tab I create another tab on the fly and rename it to "Sample 2" and change the...
  12. tb

    Crystal 10 - Export to PDF

    Hi all, I am experiencing a weird problem when exporting a Crystal 10 report to PDF through code. I must admit that I didn't write the code - and that the programmer that did has left the company ... But the code is simple and straight forward. crReport.DisplayProgressDialog = True...
  13. tb

    Parameter Prompting - Crystal 10

    Hi all, How can I stop the parameter prompting when I open a Crystal 10 report from VB via the Crystal ActiveX Report Viewer? I clear the RecordSelectionFormula (.RecordSelectionFormula = "") Then I loop through the Parameter Fields and user the ClearCurrentValueAndRange method, then I then...
  14. tb

    Execute Package Task objects from VB

    I have managed to find a way to execute certain tasks within a DTS package through code. Most of the code examples only shows how to create new tasks and execute the entire package. This code example will show you how to identify the task names and to execute them. Hope someone will find this...
  15. tb

    Execute Package Task object & VB

    Hi all, I need to execute only certain steps/tasks within my DTS package from VB. To be precise ... **ActiveX Script **Transform Data Task (1) **Transform Data Task (2) There may be several Transform Data Task, but only 2 that will be applicable. (I think) I know what I need to do ...its just...
  16. tb

    User Date after Logon

    Hi everyone, If this is not the correct forum .. I do appologise in advance... I need to obtain the User date from Great Plains - this is for 3rd party development through VB. Is this date stored anywhere? In a SYxxx table or is it part of Great Plains global variables? Any ideas would be...
  17. tb

    Syntax for Across Server query

    Hi everyone, I'm in need of some assistance in the above regard. (Bit of back ground ... SQL 2000 VB GUI) I have a Database on Server A and a Database on Server B which contains the information I need to combine in a table on the Database on Server A. As far as I know it is not linked servers...
  18. tb

    Create Hierarchical Recordset Dynamically

    Hi all, As the subject suggest this is exactly what I'm trying to do...Create Hierarchical Recordset Dynamically I have got the part for creating the recordset dynamically - which is a piece of cake With myrs .Fields.Append "Customer", adVarChar, 20, adFldFixed .Open End with I...
  19. tb

    SQL DMO - Transfer Object

    Hi all, I have the following code to transfer a table from one database to another on the same server ... Private myServer As SQLDMO.SQLServer Private myFromDatabase As SQLDMO.Database Private myTransfer As SQLDMO.Transfer ============================================ Set...
  20. tb

    Excel - Repositioning combobox in cells (dynamically)

    Hi everyone, I am quite new to VBA ... I've been programming mainly in VB for quite some time. My problem is the following ... I need to display a combo box in Column D when and if the user moves to that spesific cell. (not be displayed the whole time) I've manage to determine when I am on...

Part and Inventory Search

Back
Top