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 strongm 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: *

  1. talon121

    Divide Task Into a Day

    Thanks, a friend also suggested to keep it small... I think I figured it out from the postings everyone has helped with:
  2. talon121

    Divide Task Into a Day

    Thanks, that sounds like a plan.. However, I think I am more lost on how to divide or schedule a task (via code)... ie. Run x times per day. or loop and execute on a particular interval.. (maybe Im over thinkin)
  3. talon121

    Divide Task Into a Day

    Thanks Andy, This is the dillema I think, I am trying to execute a task x times per day via Code... I dont know if thats vague or if Im just explaining it wrong. I have a threaded program, so each thread should execute a task x times per day and remember where it left off.
  4. talon121

    Divide Task Into a Day

    Do you have information on how to programatically add new Windows Scheduled Tasks ? and is it pretty limited by OS? ie. Vista / XP / Win 7 + support? I would love to do similiar via coding if that's possible... It's hard to figure out the logic behind dividing time into a task.
  5. talon121

    Divide Task Into a Day

    How would I use a timer or function to calculate or divide a task into a day. ie. execute task x times per day.
  6. talon121

    Logic Question/Architecture

    Question, I am developing a specific application that needs to execute a task "n" number of times per day with a set maximum.. But without a set time. Can this be done? What is the preferred method of doing so?? in vb.net or C#.net
  7. talon121

    ASP.net SQL Notification Services? Help

    NotSupportedException: Notifications require SQL Server 9.0 or later.] Trying to remove this from showing up.Only shows on application startup. (when I visit the site)Any idea how to remove this? Its on a hosted provider (shared hosting)... and wondering how I can fix / remove this from...
  8. talon121

    GDI Detect Horizontal or Vertical Image

    Okay, fixed it. Simple fix, just didnt know where to put the offending code... Public Function ConvertTIFtoPDF(ByVal SourceFilename As String, ByVal TargetFile As String) As Boolean Try If File.Exists(SourceFilename) Then Dim document As Document = New...
  9. talon121

    GDI Detect Horizontal or Vertical Image

    Im using the itextsharp library, Wondering on a multi-page tif, right now my code is producing vertical pages only... Even for pages within the TIF that are horizontal; I am lost as to why, and a way to fix this.... Public Function ConvertTIFtoPDF(ByVal SourceFilename As String, ByVal...
  10. talon121

    Split field with seperator

    Any idea in SQL Express 2005 (9.0.4053)? says "The CROSS APPLY SQL construct or statement is not supported". Any idea from there?
  11. talon121

    Split field with seperator

    Thanks, but when I attempt calling it.. I get error. SELECT FileNameaa AS Expr1, Subjectaa AS Expr2, dbo.ufn_Alines(Expr2, SPACE(1)) AS Expr3 Is what im using.. But I get the error that Alines is missing or ambiguous. (Am I calling it right?)
  12. talon121

    Split field with seperator

    Trying to split a field. ie [Field1] Sample The dog jumped the fence Example output: Field(1) + 'asd ' + Expr(2) The asd dog Not sure if what I typed is correct.. Hopefully it helps. Trying to take one field, and break into array so I can build a new output in another...
  13. talon121

    Stored Procedure - ID to renamed file

    Oh Im sorry, Im fairly new with SP's Done them in the past, but trying to back into it.. Trying to take a file from a table ie. [Table] ID field1 field2 ex: 1,titleofmybook1,summaryofbook1,booklocationfilePath1 2,titleofmybook2,summaryofbook2,booklocationfilePath2...
  14. talon121

    Stored Procedure - ID to renamed file

    I'd like to retrieve the rows from the db, and change the ID to a renamed file based on fields in the table, then execute a rename on the file... right now files are stored in the db as ID.ext ... any way to use a stored procedure and change to field1.ext ?? I figure that a stored procedure...
  15. talon121

    Data Bind Flex app to grid

    I need someone to if they can provide me a sample app that will auto increment a data field..ie. http://website/file1.jpg http://website/file2.jpg http://website/file3.jpg up to 100, and fill a grid with images based on that data... Can anyone help me? Im having a hard time trying to figure...
  16. talon121

    SSIS XML/RSS Data flow problem

    Okay my problem seems to be importing an XML/RSS feed using the Data Flow of the SQL Integration services. It imports everything except the title and description from what I can see.. Ive noticed the CDATA in both of those, any way to tell SSIS to use that? Ive tried almost everything, and im...
  17. talon121

    Query interpreting single quote as

    You can always just change any statements within the quotes that need quotes to a single ' . That should fix any errors, the replies above also look like good answers for that. -- --- "Thought Id throw in my two pennies" Jason --- LexiMedia, LLC Development Group www.leximedia.net
  18. talon121

    ASP.net - TabList control

    Im trying to programatically add a Tab control to the tab list and automatically goto that tab as selected. MY code below isnt working to do this.. Dim Tab1 As New Microsoft.Web.UI.WebControls.Tab() Tab1 = New Microsoft.Web.UI.WebControls.Tab() Tab1.Text = "Privacy Policy" 'Add...
  19. talon121

    ASP.NET cache dependency/files for data set..

    I have a website in ASP.Net that uses a gallery I created, that creates HTML for each cell in a table. using datalist control. However, Im lost at where I start with caching the graphics (I use the system.graphic manipulation to create thumb of images). Is there any way to cache the images I...
  20. talon121

    Forms Authentication / problem..

    Sub LoginBtn_Click (sender as Object, e as EventArgs) If Page.IsValid Then If DBAuthenticate(uemailaddress.text, upassword.Text ) > 0 Then FormsAuthentication.RedirectFromLoginPage( uemailaddress.text, False) End If 'response.redirect(Request.Params("ReturnURL")) End If...

Part and Inventory Search

Back
Top