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 SkipVought 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. tickko

    go to the previous page.

    You could use a session variable to pass the redirect information along. Heres a senerio: You have an error on page 'a.aspx', so you redirect the user to a the 'err.aspx' page. 'a.aspx' Page Private Sub ErrHandler(ByVal err as Boolean) If err Then ' Set the page that...
  2. tickko

    Datagrid - Linkbutton Redirect Function

    Answered my own question... Instead of using js to redirect the page, I should be using the datagrids 'ItemCommand' sub. By including it in the 'BehindCode', I also have the ability to pass session variables along with it. If e.Item.Cells(0).Controls.Count > 0 Then ' Edit Link...
  3. tickko

    Datagrid - Linkbutton Redirect Function

    I'm sure that this is possible, just can't seem to get it to work. Within a ASP.Net page I have a datagrid. Within that datagrid I want to redirect the user to an edit page, sending the 'index' key along with the address using javascript. I've successfully opened a new window with a...
  4. tickko

    Calling a VB Class from ASP.NET (VB Client Side)

    hi, i'm working on learning vb scripting in asp.net client side, and i've run into a little snag. i'm sure its possible, how would you call / instantiate a class in vb script. i know you can call it in the code behind but i need to work on client side. Code: <script language="VB"...
  5. tickko

    Binary Conversion Not Matching Up

    with that being said...i have no way of importing the password unless i can get the encryption string?
  6. tickko

    Binary Conversion Not Matching Up

    hello, i'm hoping that someone can help with this little problem. i have an third party app with a gui interface and sql back end. the app has the capablities of entering in users through the front end but i have created a sql script that reads an alternative table of users and inserts them...
  7. tickko

    Convert .ps to .pdf & ASP.Net

    Thanks for the information, is there any examples when it comes to setting up the form / creation? I have everything loaded but can't seem to get it working (using the examples that they have provided for work, excel, what not). Any ideas? Thanks! t
  8. tickko

    Convert .ps to .pdf & ASP.Net

    Hi! I'm learning the .net world (vb6er), and was wondering if any of you brains out there know if there is a way to convert a .ps (postscript) file to .pdf file within ASP.Net. I'm looking to recreate what Adobe calls their distiller. I'm not partial to Adobe in anyway, so if there is a...
  9. tickko

    StrikeThrough Field

    i guess i could write a function to programmatically stretch the width of the line according to the value count...but i'll probably save that for a rainy day! thanks! t
  10. tickko

    StrikeThrough Field

    thats what i figured...your idea is what i was currently using...so it must be a good one. the strikethrough would be great because the cost could be $10,000.00 or $1,000,000.00, so it could size to the value. thanks! t
  11. tickko

    StrikeThrough Field

    i know this is probably simple but i am looking to strike through a field based on the value of another field in a report in access. basically the outcome would be if the estimate column is 'yes' then the cost is striken-through. any ideas would be greatly appricated! t
  12. tickko

    Have Information automatically fill in

    if you're openning up an additional form from the main form you can connect an index (from the main table) to a number field (in the sub table) Called a parent to child relationship...Access 101. then if you place the fields from the main table in the query of sub table, the main information...
  13. tickko

    Save Long Binary as *.jpg

    How would I determine the orginal format? I know that the pictures are embedded in the access database, because the database is offline. Would it be in the orginal format if the image will not display in a bound field in an Access form but it will display in a VB6 image field? I have...
  14. tickko

    Save Long Binary as *.jpg

    I have an Access DB with OLE Object fields and i'm looking for a way to export / saveas those embedded objects (pictures) as jpeg files. Is this possible to do? If so, how would I go about programming it? Can I do it in either Access or VB6? Thanks!
  15. tickko

    Setting Margins in VBA

    i constantly have to update the orientation and margins, sometimes it will stick but the majoritity of the time it resets to the default. i know that i can change the global options in Access but that only works for the margins. thanks, j
  16. tickko

    Setting Margins in VBA

    Just wondering if theres a way to program margins of a report during the open sub? In a few of my databases with complex reports, the page is set to landscape with .25 margins. When openning the report, the page is set back to portrait and 1 inch margins. Any help would be greatly...
  17. tickko

    Field Justfication

    thats exactly what i was looking for...thank you for your help! is there some type of points system (awarded) within this forum? j
  18. tickko

    Field Justfication

    hi...i'm looking for a way to justify a field according to another fields value. if a field {justification field} = LJ then another field will be &quot;left justified&quot;. is there anyway to write a formula to set a field justification according to that justification field? i'm fairly new...
  19. tickko

    Passing Variables to a Fomula Field

    k - thank you for your help. i feel as if my code is rusty, eventhough i code in vb everyday because i am not familiar with crystal functions. thanks, t

Part and Inventory Search

Back
Top