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

    All of my Text Dissapeared?

    I have a decent sized project about 1000 frames and 20 layers. I just opened it up and all of my Text has dissapeared?? All of the frames / keyframes / motion tweens are there..but the text are gone. Does anyone know what could cause this? Or more importantly how i could get it back? Flash...
  2. spons

    How To Back up With DTS

    How can I use DTS To Automate a Backup of a specific database every nite
  3. spons

    How to send smtp mail with smtp authentication

    in the System.Web.Mail namespace I cant find where I can send mail when the smtp server uses authentication. I only get an error saying cannot access cdo object. Anyone have a solution for this ?
  4. spons

    SqlDataReader and Comma Seperated Values

    Is there an easy way to Retrive Data With A DataReader and Convert it into Comma Seperated Values? I remember reading about something like this before and now I need to use it.
  5. spons

    Help with a complicated Join Clause

    I am trying to figure out how to get this query to return an EFT Amount also the Sum of the Direct Deposit Amounts. Sometimes there are no direct deposit Amounts, So i need to use Outer Joins. I almost have it figured out, but im getting an extra row with all of the Direct Deposits in the data...
  6. spons

    Help with a Join Clause

    select SalesReps.SalesRepId,sum(InvoiceItemCommissions.Amount) + sum(ToolCheckCommissions.Amount) From SalesReps inner join Commissions On Commissions.SalesRepId = SalesReps.SalesRepId inner join InvoiceItemCommissions On Commissions.CommissionId = InvoiceItemCommissions.CommissionId inner join...
  7. spons

    Typed Array Question

    I am using a typed array i.e. ACHS[] where ACHS is a class I defined. I need to add functions for Add and Remove. I need to have functionality like AddAT and removeAT, is there an easier way to do this with the collections namespace or anything? Currently I search the Array for an ID that I...
  8. spons

    Iterate through Records in stored procedure

    I have a need to Iterate through records in an ms sql stored procedure and insert a record per row. Is this possible? something like.. select Name From users foreach (user) { insert into UserData(test,UserName)values('test',user.Name) } Any help would be greatly appreciated, I know I could...

Part and Inventory Search

Back
Top