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. n0nick

    Div height 100%

    Yes, thats exactly what i want. Div4 has to take the remaining places of the browser window that is left after displaying div1,2,3 and 5.
  2. n0nick

    Div height 100%

    100% height of the browser window and yes, they are supposed to be below each other.
  3. n0nick

    Div height 100%

    Then scrollbars should appear and div5 will of course get pushed down.
  4. n0nick

    Div height 100%

    Hello! I want to make a web-page with this layout: div1: with=900px, height: 30px; div2: width=900px, height: 100px; div3: width=900px, height: 50px; div4: width=900px, height: 100%; div5: width=900px, height: 30px; Biggest problem is to make div4 height = 100% without getting scrollbars in...
  5. n0nick

    Bosnian characters in PHOTOSHOP CS

    When I write a word that contains one Bosnian character in Photoshop CS and then choose the Font family to "Bradley Hand ITC" ( or some other Font Family ) all characters gets this font family but not this bosnian. I know that this Font family has this character and when i write the same word in...
  6. n0nick

    Difficult SELECT Statement

    Ok, thanks a lot! I will take closer look on you code! But I think that i can do this much easier with a loop in C# ( ASP.NET ). Beacuse i'm not just displaying the data, but I also make it possible to add/remove a depart_weekday in GridView ( ASP.NET ). But again, thank you very much!
  7. n0nick

    Difficult SELECT Statement

    I got three tables: ----------------------------------- tbl_depart primary key: DEPART_ID name ----------------------------------- tbl_depart_weekday primary key: DEPART_WEEKDAY_ID foreign key: DEPART_ID foreign key: WEEKDAY_ID ----------------------------------- tbl_weekday primary...
  8. n0nick

    Char Pointer in c++

    I have some questions about char-pointers in c++. I have made a image <img src="http://www.slomic.no/char_pointers.gif"> of what i THINK is happening when i write char c[] = "hello"; char* c2= c; and char c = "hello"; char* c2= c; Is this image correct? How can adress of "c" be the same...
  9. n0nick

    Getting Identity after SQL-&quot;INSERT&quot;

    How can I get AutoNumber that Access made for the new post after a INSERT statement, back to the ASP? Im using ADO objects to connect and get data from Access DB.
  10. n0nick

    HorizontalAlignment with Access VBA

    Ok, I have been listening to xlbo and keep just object xlapp, so i just need to realese it. But why do i also have to write xlapp.quit?
  11. n0nick

    HorizontalAlignment with Access VBA

    I see your points. I have experiance in programming in Java so I know all this about object referances. I am new in programming in VBA so I need little bit help with getting a picture of all objects. RoyVidar: Im realesing object xlApp at the end: Set xlApp = Nothing This is enough?
  12. n0nick

    HorizontalAlignment with Access VBA

    Oh, i didn't know of the object model by pressing F2.. i was actually searching after a object model in the Help file.. Not i understand how this object works.. I have to write like this when i want to create new Excel file: Set xlApp = CreateObject("Excel.Application") Set xlWoorkbook =...
  13. n0nick

    HorizontalAlignment with Access VBA

    But the code i wrote in my last message: Set xlApp = CreateObject("Excel.Application") Set xlSheet = xlApp.Workbooks.OPEN("test.xls").Sheets(1) requires a already created Excel file named "test.xls". But i want to create new Excel file in the code, how should i write then?
  14. n0nick

    HorizontalAlignment with Access VBA

    Ok, now I understand you. If I write something like this: Set xlApp = CreateObject("Excel.Application") Set xlSheet = xlApp.Workbooks.OPEN("test.xls").Sheets(1) xlSheet.cells(1, 1).Value = "Test" Is this what you mean? How do you mean I should set horizontalalignment to center? Like...
  15. n0nick

    HorizontalAlignment with Access VBA

    Hello..Tnx for your answer! I found the answer by myself. I wrote: ExcelSheet.Application.Rows(1).HorizontalAlignment = xlCenter But when I'm in a Access VBA window Access dont cannot find variable "xlCenter", that is a Excel VB constant, so I just wrote value instedof variablename and it...
  16. n0nick

    HorizontalAlignment with Access VBA

    I create a Excel file and try to alignment text to the middle in the cells for the first row with this code: Dim ExcelSheet As Object Set ExcelSheet = CreateObject("Excel.Sheet") ExcelSheet.Application.Cells(1, 1).Value = "Test" ExcelSheet.Application.Rows(1).HorizontalAlignment = xlCenter...
  17. n0nick

    How to set Cell background

    How to set Cell background in Excel VBA?
  18. n0nick

    Formatting Excel cells from Access VB window

    Thank you, this was that i was looking for. But how do i close the file. Beacuse after i run this code the excel file is still opened so i need to close it before i can open it to see how it looks. I have tried this code: fvobj_Excel.Workbooks.Close and i think it's working, but i get message...
  19. n0nick

    Formatting Excel cells from Access VB window

    How can I access a already made Excel file and format its cells from Access VB window? I know how to format Excel cells when I am in a Excel VB window, but how to do it from Access VB window?
  20. n0nick

    Create Excel file, format cells and export data

    I want to do this: 1. Create a new Excel file 2. Format cells in this new file ( fonts, color etc. ) 3. Export data from a SQL query or table from MS Access. I would like to do all this things from Access form. I got a form where user have to fill some information, and when he is finished...

Part and Inventory Search

Back
Top