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

    Replacing a frameset with another page

    This will be a bit complicated to explain, but here it goes. I have a page with 2 frames; one is called "code" and has all my JavaScript code and has size 0. The other one, "main", is large and displays the text "loading..." while all the code loads. After all the...
  2. branko

    How to add text to a window?

    Thanks Jeff! I checked and innerHTML works from NS6. The strange thing is that when I call the function WriteMessage, the previous message does stay, so the document has not been overwritten. Well, anyhow I will try your advice. Branko
  3. branko

    How to add text to a window?

    Hi, To start, I am not a JavaScript expert. I am writing an internet page that should be supported by IE 4 and higher and Netscape 4 and higher. I am using several frames and I want to add text to one frame on actions performed in another frame. Like a status report or so. I use the following...
  4. branko

    prevent table resize word?

    Thanks for your reply AngO! I tried your solution. The problem is that this way the user can add only text. What I would like to do is to give a template and the user can add pictures, drawings text in all sizes, colors, fonts and directions. The table is there to show where the perforations in...
  5. branko

    prevent table resize word?

    Hi, I would like to make a word template. This template should contain a table with fixed measures. It will be used to print on special perforated paper, so I would like to prevent the user from resizing the table. Does anybody have any suggestions how to prevent that? I am working with Word...
  6. branko

    Compile Error When Entering Office 97

    Have you tried to find the module "autoexec" in the VB editor? Branko
  7. branko

    insert column

    I have no experience with Coldfusion, but you could try to use the UPDATE TABLE statement. But I think I have to raise the question: why? Are you sure it is a wise thing to do? Well, that is none of my business Branko
  8. branko

    Update Multiple Records

    With an update-statement and a join this can be done. My SQL is getting a bit rusty lately, so I suggest you look in BOL or so for the exact statement Branko
  9. branko

    How to export data automatically?

    You could use bcp Branko
  10. branko

    Why does my curser have errors

    Hi, I don't have much time, not enough to study your code. What I did notice quickly is that you put the fetch next in the first line of your while-loop. This way you are skipping the first record, that you already fetched right after opening the cursor. I think it is better to put the fetch at...
  11. branko

    difference with printing in win98 or 2000

    Hi, I noticed that there is a difference when I print rotated text under windows 2000 or under the earlier windows versions. I set the rotation by assigning the same angle to lfOrientation and lfEscapement in the LOGFONT structure. I noticed that in W2k rotation is positive for Clockwise, and...
  12. branko

    What's This? Help pop-ups not appearing consistently

    Hi, I had a problem with calling help, not the pop ups. The problem occurred when I opened a file from a different directory than the program directory before using help. When I called help then, it could not be found. I solved it like this:(from MSDN) //First free the string allocated by MFC...
  13. branko

    array of records

    in main: print_details(player[MAX]) you pass just one record to the function. You should pass the whole array (leave the MAX out). Branko
  14. branko

    array of records

    Hi, void print_details(GOLFER player) should be : void print_details(GOLFER player[]). (in the header) Branko
  15. branko

    returning arrays

    Why don't you pass the array, or a pointer to the array, as a variable? getDescription(char* description) { .... }
  16. branko

    Visio export

    I only have some experience with Visio 2000. There it depended on the version if this was possible. I think the enterprise edition was needed. Then, when you create a database diagram there is a menu "database" where there are options to synchronise, up- download etc. I don't have the...
  17. branko

    Run stored procedure from Access??

    thanks bperry. I learned something too. I didn't know about the pass through query. Branko
  18. branko

    Run stored procedure from Access??

    That is the code you need indeed! Branko
  19. branko

    Run stored procedure from Access??

    You can use VBA. Look in the help for more info Branko
  20. branko

    Add entries to "Look in" control of CFileDialog

    Hi, I don't know if if this helps you: You can use SPY++ to get the Control ID of the ComboBox in the FileOpen Dialog. With GetDlgItem() you can then get access to the ComboBox. From there you are on your own... Branko

Part and Inventory Search

Back
Top