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 Mike Lewis 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. psandekian

    Problem with CD-WR

    Ok. Windows Explorer lists out the drive letter but when I insert one of her photo cd's, it says "Insert a disk in drive E:". The photo cd works fine on her plain cd-rom. I did take one of my new rw cd's that worked on my pc over there but it did not recognize a disk in the drive...
  2. psandekian

    Problem with CD-WR

    ok. So I've done some more investigation. Windows ME is weird to me so it's making this more difficult than I think is necessary. Here's what's happening: 1. The DVD/CD-RW is not reading the disks that are made for writing on. 2. It reads other disks just fine (i.e. Microsoft Office comes...
  3. psandekian

    Problem with CD-WR

    The drive letter is there and it works for cd's from manufacturers such as microsoft but not for the cd's that it made. There were no problems listed for the cd driver in the device manager. I thought I would reload the driver (I'm an NT user so I'm familiar with reloading drivers) so I...
  4. psandekian

    Problem with CD-WR

    Hi. I'm trying to repair my Mom's pc. She lost the use of her CD-RW. I had her remove the driver and restart the pc. It now recognizes the cd-wr as a cd-rom but it does not recognize the writable cd's. I can not write to a new cd and it does not read any of the cd's previously written to by...
  5. psandekian

    Multiselect list to table

    Ok. So I got the type mismatch fixed but now my form does not show anything when I open it. It's all there in design view but not in form view. Is this related to having the form associated with several tables? Do I need to use VBA to show the form? Thanks! Patty psandekian@earhtlink.net
  6. psandekian

    Multiselect list to table

    Jeff, I added tables that you suggested so now I have: Samples, Artists, Colors, ColorField, Occassions, OccassionsField, Stamp Sets, StampSetsField, Supplies, SuppliesField, Techniques, TechniquesField. The ones with Field on the end are the ones that will be written to. The ones without...
  7. psandekian

    Multiselect list to table

    Thanks Jeff. I am new to Access but not VB so I should be able to keep up. Here's my set up: I have 6 tables and 1 form. The tables are: colors, artists, occassions, stamp sets, supplies, techniques, and samples. The idea is to make my life a little easier by allowing me to select in my...
  8. psandekian

    Multiselect list to table

    Hi. I am using Access 97 and I have several tables set up to help me populate a different table using a form. My form has 4 list boxes that allow the user to make multiple selections in each. After making the selections, I look at the table and there is nothing there from those list boxes...
  9. psandekian

    Sending email to multiple addresses question

    I have a client who wants to set up a group in his email account so that he can select one email address to send to the entire group. He also wants another person to be able to use this group. One uses Outlook 97 and the other uses Eudora. Their email is supported by their host for their...
  10. psandekian

    Problems with CSS

    Thanks! I removed the style tags and my empty h6 tag and it works. It also passed the validation without changing my h4 tag colors. Thanks!
  11. psandekian

    Problems with CSS

    Hi. I'm having two problems with my CSS. Here's my CSS file: <STYLE type=&quot;text/css&quot;> <!-- H6 { } H1 { font-weight: 500; font-size: medium; TEXT-ALIGN: center; } body { background-image: url(&quot;Texture_lt_gray_004.jpg&quot;); background-color: #E1E1E1...
  12. psandekian

    Creating a DLL - newbie

    So I tried to create something in VC++ to see if my dll was working and it doesn't seem to. Here's what I wrote: typedef long (CALLBACK* AIMUXCONFIG)(short,short); HINSTANCE hDLL; // Handle to DLL AIMUXCONFIG AI_Mux_Config; // Function pointer short sSlot; short...
  13. psandekian

    Creating a DLL - newbie

    I believe I did. Here's the code from my module: Declare Function AI_Mux_Config Lib &quot;e:\SCXI1126\nidll\nidll\Debug\nidll.dll&quot; (ByVal slot As Integer, ByVal numMuxBrds As Integer) Thx. Patty
  14. psandekian

    Creating a DLL - newbie

    Ok. So I created a new project, added my .h files and I created a main .c file like this #include <windows.h> #include <stdio.h> #include <math.h> #ifdef WIN32 #include <conio.h> // for _kbhit #include <mmsystem.h> // for timeGetTime #endif #ifdef WIN16...
  15. psandekian

    Creating a DLL - newbie

    Hi, I'm new to VC++ and I need to create a DLL using only ANSI C and the functions I have are in a .h file. Can anyone point me in the right direction? Thanks. Patty
  16. psandekian

    NT Workstation 4.0 SP6a Setup for Interdev?

    Can anyone tell me what is required to use Interdev on NT Workstation 4.0 SP6a? I've tried installing Peer Web Services and NT Option Pack. After I installed the NT Option Pack, it changed to Personal Web Service which is running. Do I need a network card? Do I need IIS? I cannot get past...
  17. psandekian

    Compiling and Executing Question - Newbie

    Hi from a Newbie. I'm using C on a UNIX-like system called REGULUS(it's antique but I have to use it do the complex application that I'm trying to update). I'm trying to use #ifdef to write some variable constants to my console window so I can see where my error is occurring but every time I...
  18. psandekian

    Windows Installer Arguments

    Hi. Can anyone point me to a KB article on the arguments available when installing an application? I am trying to install an application when my VB application is installed but Windows Installer doesn't like my arguments. I'm thinking that it must be related to the application that is being...
  19. psandekian

    Memory Dump &amp; Print File Not Found

    I just had another memory dump. I ran the Dumpexam.exe and here's the results: **************************************************************** ** ** Windows NT Crash Dump Analysis ** **************************************************************** * Filename . . . . . . .C:\WINNT\MEMORY.DMP...
  20. psandekian

    newbie: for loop question

    Hi, I'm new to C and I'm reviewing some code that's written in C in a UNIX environment. I was wondering if someone might be able to explain this statement: for (y = 1970, Y += (Y < 70) ? 2000 : 1900; y < Y; y++) I understand the general principles of the for loop. for y = 1970 while y < Y...

Part and Inventory Search

Back
Top