User Profile

Collapse

Profile Sidebar

Collapse
OuTCasT
OuTCasT
Last Activity: Mar 25 '11, 06:21 AM
Joined: Jan 2 '08
Location: South Africa
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • OuTCasT
    replied to Save File
    Hey Rabbit

    Thanks I ended up using this code
    Code:
     'Open File Location
            OpenFileDialog1.ShowDialog()
            lblLocation.Text = OpenFileDialog1.FileName
            'Set Save location
            SaveFileDialog1.FileName = OpenFileDialog1.FileName
            'Set file filters
            SaveFileDialog1.Filter = "PDF(*.pdf)|*.pdf|Word Document old(*.doc)|*.doc|Excel(*.xls)|*.xls|All Files(*.*)|*.*"
    ...
    See more | Go to post

    Leave a comment:


  • OuTCasT
    started a topic Save File

    Save File

    Hi
    So i want a user to be able to create a new folder or choose folder where the document lies(pdf, .doc etc)

    then save the document to another folder of the users choice.

    So in essence when creating a new record in the database, I would like the user permission to link a document to that entry, so once the entry is created they can link a file to it, under a folder which location is also saved in the database....
    See more | Go to post

  • Crystal Reports Change Datasource dynamically

    Hi I dont understand why this code does not change the Crystal Reports Datasource and Database at runtime.
    I have used it before but for some reason it doesnt want to work.

    Code:
    Dim report As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            Dim connection As IConnectionInfo
            Dim OldServerName As String = [OLD Servername]
            Dim NewServerName As String = [NEW SERVERName]
            Dim
    ...
    See more | Go to post

  • Crystal Reports Merge Modules Visual Studio 2010

    Hi
    I have recently ugraded to VS2010 and downloaded Crystal Reports for VS2010.
    Now when i build setup application and install on client pc i get errors that the Crystal Report cannot be loaded and

    Code:
    Could not load file or assembly 'CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, Public Key Token=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
    I have...
    See more | Go to post

  • What happens is, when they first use the application they create a company/database. I did some debugging and found that the application was being installed under program files, and then when i tried to create the database in the application folder it gave a access denied error.
    So either set security on the program folder or install application directly into C:\Program Name.
    See more | Go to post

    Leave a comment:


  • Problem is with access rights to create the database.
    See more | Go to post

    Leave a comment:


  • How to get connectionstring to connect to SQL Express 2005 on the client PCs?

    Hi.
    I have a application that i want to deploy to multiple pcs.
    Included sql express 2005 to the prerequisites and is installed first time.

    My pc has Sql Server 2005 and manager. The solution works 100% on my pc.
    The connectionstrin g is the problem with the client pc.
    I need the connectionstrin g to connect to sql express 2005 on the pc's that the solution will be installed on.

    At the moment...
    See more | Go to post

  • SQL Connection String When deploying application

    Good Morning all.

    I have an application that needs to be deployed with SQL Server Express Edition that i add to my Visual Studio project as a prerequisite.

    I have used the following connectionstrin g within the application.

    Code:
    Data Source=localhost;Initial Catalog=dbName;Persist Security Info=True;Integrated Security=SSPI
    When i install the software on a test machine i get error cannot open...
    See more | Go to post

  • OuTCasT
    started a topic Update a column

    Update a column

    Hi

    Is it possible to update a columns data in a row to another columns data when that row is inserted ?
    For example i have a incremented column and i want to set the Job ID column equal to the incremented column when the row is inserted.

    so each row will have the incremented value and the same value of that column in the jobid column of the same row.

    Thanks
    See more | Go to post

  • Crystal Reports Formula field = parameter field

    Hi.
    I have successfully sent a parameter through to Crystal Reports.
    But i seem to be getting an error when trying to set a value equal to another within the crystal report.

    I have a databse field calld JobId that is on the report. and an Unbound string formula field call UBWONo.

    I have set the expert record of the JobID as such
    {jobcards.jobid } = {@UBWONo} and it says no errors found in the formula...
    See more | Go to post

  • OuTCasT
    replied to Sorting
    They gave me 2 columns to sort...
    Region and Contacts

    That is what is on the sheet, the original is the top data, now they said write sql query to rearrange the data in the new order which is at the bottom.

    I dunno if that is possible. I also looked and there is no logical order of the data.

    Kind Regards
    D.Kruger
    See more | Go to post

    Leave a comment:


  • OuTCasT
    started a topic Sorting

    Sorting

    I have been asked to rearrange the data in a table to display from

    Region Contacts
    ---------------------------------------
    Cape Town John
    Cape Town Ruby
    Cape Town Anna
    Durban Joe
    Durban Allison
    Johannesburg Derrick


    To This

    Region Contacts
    ----------------------------------------...
    See more | Go to post

  • OuTCasT
    started a topic Regular Expression

    Regular Expression

    Hi
    I need to do a check on telephone numbers entered into a textbox.
    I know the regular expression for an email address but not to check a telephone number like such (000)000-0000
    See more | Go to post

  • OuTCasT
    replied to iCal export
    Hi Frinny

    Sorry man, I was just testing the date in that txtLocation textbox.
    I retrieve the date from a gridview and then assign it to a variable which replaces the txtLocation.

    When i read the string back everything seems to be right.

    BEGIN: VCALENDAR BEGIN: VEVENT
    DTSTART:2009112 7T9000Z
    DTEND:20091127T 9000Z
    LOCATION;ENCODI NG=QUOTED-PRINTABLE:2009-11-27 09:00:00 AM UID:...
    See more | Go to post

    Leave a comment:


  • OuTCasT
    started a topic iCal export

    iCal export

    Hi im using this code to export appointments from a scheduler to outlook iCal file.

    The date doesnt pull through correctly




    Code:
     
     Private Function GetAsTwoDigit(ByVal val As String) As String
    
            If val.Length = 1 Then
                Return "0" & val
            Else
                Return val
            End If
    
        End Function
    ...
    See more | Go to post

  • OuTCasT
    replied to Windows Application
    Maybe cause its a demo project....
    See more | Go to post

    Leave a comment:


  • OuTCasT
    replied to Windows Application
    For some reason this project is not editable..
    if i delete or change anything and debug it, the solution runs as it would normally. Even if i delete the main form from the project and then debug it, the main form still loads...

    could i maybe give u link and u can check it out for me please.

    Dunno whats wong here, confused.

    Kind Regards.
    See more | Go to post

    Leave a comment:


  • OuTCasT
    replied to Windows Application
    ok i found a perfect example of a popup notifier.
    Now just need to integrate that with my app that I have already created.

    Check here

    Thanks guys.
    See more | Go to post

    Leave a comment:


  • OuTCasT
    replied to Animated Giff Loading Page
    in .NET
    Hi Frinny

    The page is not found,


    Kind Regards
    OuTCasT...
    See more | Go to post

    Leave a comment:


  • OuTCasT
    replied to Windows Application
    What the solution basically does is.
    When a new campaign is loaded onto the system, the user needs to be notified that there is a new campaign to be approved.

    Would it be best to create a service, drag a timer onto the design and set it to check the database for new campaigns every 1 hour.

    Could this be done ? and how would the service notify the user that he/she needs to go and approve a campaign.
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...