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

  • Users: YoelBenYossef
  • Order by date
  1. YoelBenYossef

    Connecting to a phone line

    Hi there, I'm working on a project where I need to send a message to my pager. I'm trying to find a tutorial or set of commands that explain how to use my modem to open a line, dial my pager number, wait 10 seconds, and dial a second set of digits before hanging up. I really appreciate it...
  2. YoelBenYossef

    Rights and permissions

    Hi there, We had an occurence that I can't explain on our system last week, and I was wondering if anyone could help me find the cause. One of our users tried to create and a System DSN connection to an ODBC database to which they have access. The database itself uses sql and server logins, and...
  3. YoelBenYossef

    Counting records in a row

    Actually, the trick is that I need to know how many in order are true ... It's a little rough. I'm using legacy data from an old medical recording machine. I need to know how long an even lasts ... Thanks Eric
  4. YoelBenYossef

    Counting records in a row

    Hi there, I'm working on a database with legacy data. I want to be able to tell how many records in a row answer a boolean criteria. Is there any way to do that? Eric
  5. YoelBenYossef

    Sql issue updating values

    Hi there, I'm having a problem with one of my updates. I'm using Access to write an epidimeologie assignment, and I start by updating all the date. One of my queries is: UPDATE tblRecords SET tblRecords.recordsRightAbove = true where [tblRecords].[recordsMRN]=tblBaseline.[baselineMRN] and...
  6. YoelBenYossef

    Adding a new address to user

    Hi there, We have an employee that just left, and we need his e-mail address to go to another employee. Our sysadmin is on a cruise right now, and we're trying to figure out how we normally do this. Thanks Eric
  7. YoelBenYossef

    Project 2003 Workgroup mail - Sending MTM files

    Hi there, Project 2003 does not support Workgroup mail. Microsoft has an unsupported work-around that we've implemented, but it sends mtm files. Mtm seems to be winamp files. http://support.microsoft.com/kb/818337/en-us Has anyone seen this before or have a fix for it? Eric
  8. YoelBenYossef

    Protecting the Data

    None of those stop a user from holding the shift key down when booting to stop a user from altering the data, which is my primary concern. I've split the DB in two parts the front end and back end but they're still connected and easy to access. Eric
  9. YoelBenYossef

    Protecting the Data

    Hi there, I wrote a database with a front end form. On startup it opens to the form with no problem. I'm unfortunately worried that someone may hold down the shift key while opening the db and altering the data. I've tried putting a password on the database, but then the user needs the pw to...
  10. YoelBenYossef

    Date Formatting

    Hi there, I've been migrating an application from windows 98 to Windows Server 2003. I've found one bug in the program though. Server 2003 uses date formats that don't exist in Windows XP or 2000. Therefore I need to force it to use a certain format, rather than relying on VBShort, or VBLong...
  11. YoelBenYossef

    ASP/VBScript timeout issue

    Count is initialised to 1. There usually are about 20 records, but it should be able to handle 0 records. Here's the program in it's entirety: <%@ LANGUAGE="VBSCRIPT" %> <%OPTION EXPLICIT%> <%Response.Expires = -1 Dim Parms Sub ListEntries Dim DBConn Dim RS Dim SQLString Dim objTime...
  12. YoelBenYossef

    ASP/VBScript timeout issue

    Hi there, I'm working on some legacy code written in VBScript in an ASP page. It works fine with IIS in Windows XP, and Windows 2000, but on Server 2003, it just times out. The error that I get is: Error Type: Active Server Pages, ASP 0113 (0x80004005) The maximum amount of time for a script to...
  13. YoelBenYossef

    Automatic page changing

    Hi There, I'm updating some legacy code that's dynamically created using ASP. The old page would display the calender, and the start again. The new page should be diplaying the calender, then a security warning page. Unfortunately, it no longer changes pages, and I'm not sure why, so I'm posting...
  14. YoelBenYossef

    Automatic page changing

    Hi There, I'm updating some legacy code that's dynamically created using ASP. The old page would display the calender, and the start again. The new page should be diplaying the calender, then a security warning page. Unfortunately, it no longer changes pages, and I'm not sure why, so I'm posting...
  15. YoelBenYossef

    Active Directory Logon Script

    Hey there, My boss wants me to write an actual program so that people only need to click on it once. She also wants me to be able to track when the disclaimer was agreed to, for legal reasons. Thanks Eric
  16. YoelBenYossef

    Active Directory Logon Script

    Hi there, I'm trying to write a logon script for our active server environment. The point of the logon is to have everyone click the accept button at the bottom of a proper use policy. Ideally, I'd like to have the information uploaded into a database, and the question no be asked again once...
  17. YoelBenYossef

    ASP and Access: Combo boxes

    Hi there, I'm currently writing a program that uses ASP to request information and put it into an Access DB. The problem arises when I use the checkboxes. The access fields are boolean yes/no fields. When I use: rst("JobEmail")=request.form("chkEmail") it works perfectly if the checkbox is...
  18. YoelBenYossef

    Time comparison using ASP

    Hi there, I wrote a program this year that allows us to to enter data through an asp form which is stored in a DB, and e-mailed to certain users. I've now been asked to send an e-mail automatically to all users who send in a request after noon Friday that their request will be attended to on...
  19. YoelBenYossef

    If statement with multiple conditions

    Hi there, I'm using Javascript in an ASP application. I'm trying to get it to use multiple conditions for the if, and I can't remember the syntax for it. Is it && or And? I've currently written it like this: else if (frmIronMountainRequest.Send.checked ==false) &&...
  20. YoelBenYossef

    ASP and Access: Memo Fields

    Thanks, it works great. I used it like this: rst("OrderBarcodes").AppendChunk (request.form("txtBringBackBarcodes")) Eric

Part and Inventory Search

Back
Top