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

    PDF upload and view works for one pdf but not the other pdf

    Hi, I have two pdf that I was given to use for testing. They have are both pdf files however they show different icons on my desktop. They both open without problems while on my desktop. One of them doesn't work after I upload them and then try to view them via the application. The pdf on...
  2. AWEinCA

    Window Title for application\pdf ContentType

    I am sending a pdf to the client's browser. I am unable to change the title that shows in the browser window. It shows the URL of the PDF. I would like to change the title of the pdf window. Here is what I am doing: { Response.ClearContent(); Response.ClearHeaders(); Response.Buffer =...
  3. AWEinCA

    VPN to a Workgroup?

    Hi, New to VPN's... Can you connect to a Workgroup network via a VPN? I haven't found anything that says no, but I haven't found anything that says yes either. I want to connect to our small network at work which has been configured as a Workgroup and not a Domain. Thanks in advance, Aaron
  4. AWEinCA

    joining on text fields with different formats

    I have two (2) tables that I want to JOIN together: One (1) table has SSN formatted as "111223333" The other table has SSN formatted as "111-22-333" These are not technically equal. How do I JOIN these two (2) tables on SSN? I have tried but it doesn't work: SELECT ...
  5. AWEinCA

    join on text fields with different formats...

    I have two (2) tables that I want to JOIN together: One (1) table has SSN formatted as "111223333" The other table has SSN formatted as "111-22-333" These are not technically equal. How do I JOIN these two (2) tables on SSN? I have tried but it doesn't work: SELECT ...
  6. AWEinCA

    onclick to new page

    I want to use a button to redirect my browser to a new page. I can do this by opening the new page in a new window, but I don't want a new window. I would like the button to open the new page in the same window. Would someone know how to do this? Thanks in advance, Aaron
  7. AWEinCA

    I appologize if this isn't the appr

    I appologize if this isn't the appropriate place to post this question. We looking into purchasing an MSDN subscription. The sales rep at CDW was very help about saving us money. Instead of purchasing, what she called, the "boxed" product...
  8. AWEinCA

    Keyword Search Tab Working?

    Is there a problem with the Search Engine on the Keyword Search Tab? Just making sure that it isn't me or that I am using it wrong.
  9. AWEinCA

    querying a timestamp field...

    I get the following error when running my query: “Server: Msg 260, Level 16, State 1, Line 1 Disallowed implicit conversion from data type datetime to data type timestamp, table 'trading.dbo.pricechg', column 'timestamp'. Use the CONVERT function to run this query.” SELECT commodity_code...
  10. AWEinCA

    Exiting a For Each Next loop

    I have: For Each <file> in <directory> 'Find InStr(&quot;text&quot;,<file>) Next Once I find the &quot;text&quot; in the <file> name. I want to stop looping through the <file>s in the <directory>. You know...like a while loop...except for folder and file objects. Is there a way I can exit...
  11. AWEinCA

    open web page shortcut in new browser

    I have a web page shortcut that bugs the heck out of me. I will be looking at a webpage in the browser, but then I want to open up my webpage shortcut keeping the current browser where it is. WHen I click on the shortcut, it opens in this browser that I already had open. Does anyone know how...
  12. AWEinCA

    Changing textbox colors on continuous forms

    Hello! I have continuous forms that I want to change the color of a text box. However, I don't know where to put the code. I have tried several places but all the textboxes show up the same color on every form. I want them to be different colors depending on the date. This is my code. Does...
  13. AWEinCA

    Finding records in a lookup that ARE NOT reference in a main table

    I am have a difficult time trying to write this SQL statement. Would someone give me a hand with it? I have three tables linked linearly: Borrowers CodeCompletions Codes (Lookup Table) A Borrower has to complete all of the codes in the Codes table. As the codes are being completed a record is...
  14. AWEinCA

    Changing the Title Bar Color of an Application

    How do I change the title bar color of my application? I saw this question, with the same subject, in this forum but it really didn't answer the question. Would someone help me? Thanks in advance, Aaron
  15. AWEinCA

    won't add numbers

    I am fairly new with Flash. I got one of those beginer books. I followed the directions exactly and can't figure out why I can't add 2 different numbers from to different input text boxes and assign the sum to a dynamic text box. This is the actionscript in the on(release) handler of a button...
  16. AWEinCA

    &quot;Invalid character value for cast specification&quot;

    This is the error I get when I try to assign a default SQL statement to my application: &quot;Invalid character value for cast specification&quot; This is what the function looked like before: CString CAccountSet::GetDefaultSQL() { return _T(&quot;[dbo].[table]&quot;); } This is what the...
  17. AWEinCA

    &quot;Invalid character value for cast specification&quot;

    This is the error I get when I try to assign a default SQL statement to my application: &quot;Invalid character value for cast specification&quot; This is what the function looked like before: CString CAccountSet::GetDefaultSQL() { return _T(&quot;[dbo].[table]&quot;); } This is what the...
  18. AWEinCA

    sp_who results

    Would someone be willing to share the syntax of how to put the sp_who result set into a temp table? I am a newbe with t-sql:) Any help would be appreciated, Aaron
  19. AWEinCA

    Accessing dbname in result set from sp_who.

    If I want to loop through a sp_who result set, how would I look at what database a user is logged into? Syntax??? while sp_who Begin if (sp_who.dbname = 'testdb') . . . END
  20. AWEinCA

    Logging off users Programmatically...

    Is there a way to disconnect all currently connected users through a stored procedure except the connection that called the stored procedure?

Part and Inventory Search

Back
Top