Search results

  1. C

    Using Visual Studio on Unix

    Hello, I am new in this but I have a Question. I have a web site which is on a Unix server with linux software. I have FrontPage Extentions. I think I cannot use the Visual Studio.Net to create my web site and upload it. Can you confirm this to me pls. Thanks in advance
  2. C

    Looping a case validation

    I have this code below but there is an error on it. Private Sub Worksheet_Change(ByVal Target As Range) If Target.Row = 7 And Target.Column = 3 Then Select Case Cells(5, 3).Value Case "Á:0-1650cc" If Target.Value >= 0 And Target.Value <= 1650 Then...
  3. C

    Producing reports

    I have created many queries from a table with differend fields in each query. Is there any way to produce a report which will show all the queries together instead of oppenning each query seperetly in order to see the value of each one. There about 30 queries thats why I need this kind of...
  4. C

    Replace data of a query with data of another table

    I have imported one table witch is split using queries. Later I have created another table with values witch represents values of queries wich needs to be replace with values of table. The attached file is reference. I dont know how to make the queries retrieve the values of the second table and...
  5. C

    Left Function to Extract First Four Characters

    Try this one Part from Table: Mid([Table name],1,4) Number 1 is the starting place and number 4 is the counting from starting place. In this one is 4 digits from the first charachter. This expression must be entered on the field of the query.
  6. C

    Conditional Validation in Excel

    I want after my selection the C7 cell to accept only a range of values
  7. C

    Conditional Validation in Excel

    Because I want a conditional validation in excel I decided to do it with VB. Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Sheets("MAIN").Range("C5").Value = "A:0-1650" Then Sheets("MAIN").Range("C7").Value = "> 0" Sheets("MAIN").Range("C7").Value = "<1650"...
  8. C

    Hardware novice concerning ram

    I want some information about RAM pls. I want to knos what is the difference between RAM and DRAM. Is DDR consider as DRAM? What other types of RAM exist exept from RAM and DRAM and how can I destinguish the different types only by seing them? Thanks in advance
  9. C

    Table with Pictures in it

    I want to create a table where I can enter data and in each row to be able to import multible ficture. Those pictures if possible to be entered by a user by browsing and importing them. Do you know how I can do this? Finally I will make it a web form so to be shared to multible users.
  10. C

    Outlook Express passwords

    I want to enter a password in outlook express in order to avoid unauthorised access to it. In case a password for my email is not added still other people can see my previous messages. It only prevents the download of new emails. Is there any way to required a passord in Outlook Express in order...
  11. C

    Microsoft of Outlook worning

    How can I configure Microsoft of Outlook to popup a message and a sound when a new message arrives?
  12. C

    Remove from windows 2000 default games

    This does not worlk. I don´t know why. Deleting the folder wont do for me.
  13. C

    Remove from windows 2000 default games

    I want to remove windows 2000 default game from my computer. (Freecell, Pinball etc.) I search the internet and I found some information about it to delete "Hide" from the file "sysoc.inf". I tried this but it does not work. Any ideas. Thanks
  14. C

    Remove from windows 2000 default games

    Hello, I have windows 2000 and I want to remove the default games from it. (solitaire, freecell, Minesweeper and pinball) I have search the internet and I found some information about it telling me to delete the "hide" word from the file "sysoc.inf ". It doesn' t seem to work for me. Any...
  15. C

    Table AutoNumbering Problem

    Table Auto Number Thanks for your reply. It wasnt what I was looking for but this will work just fine also. I will make some adjustment on my database and make it Work with this. Again thanks for your replies.
  16. C

    Table AutoNumbering Problem

    Table updating to autonumbering Any help pls on this issue?
  17. C

    Table AutoNumbering Problem

    Table AutoNumber Problem The reason that I want to do this is that after I validate the data and correct them I export the file to its original format. As far as I know I cannot export a I cannot export this report to its original format as a Delimited format. Thats why I wanted to make this...
  18. C

    Table AutoNumbering Problem

    Why am I doing this I have some date in a text form and in order to validate them I am importing them into Access table where I use some creteria to and is in a more readable form. The data goes like this: 1;12345;;HL;123;TRUE;ATHENS; 2;12345;12;IM;123;FALSE;PARIS; Those date are entered into...
  19. C

    Table AutoNumbering Problem

    I have some data that I import them to Access into a predefined table. The first colum of this data is A/A (lets say from 1-500). I do this in order to validate some data. The problem is that when I want to delete one row (lets say row 99) then the numbering is left as it is (.....97, 98, 100...
  20. C

    Option Group Values selection

    This realy work Thanks very much for your responce
Back
Top Bottom