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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sa5cha

  1. sa5cha

    VBS: Write to Word2003 Doc / Search and Replace in a Doc

    Hi jges, nice the link you have posted works, and solves much of my problems. But I still got two issues: Do you have any ideas on how to read/write word properties like the document title for example ? I need a function like instr which returns me the position of the searched word, because...
  2. sa5cha

    VBS: Write to Word2003 Doc / Search and Replace in a Doc

    Hi jges, thank you for the link, it looks good ill have a try. Thank you. Sascha
  3. sa5cha

    VBS: Write to Word2003 Doc / Search and Replace in a Doc

    Hi, can someone help me and paste some lines on how to manipulate a word 2003 document via vbs ? I Need to update 3k documents - text and document properties :-( I can't find anything, cant believe it. I just need a quick info on how. Sascha
  4. sa5cha

    Center the Start Button in Windows 7, Desktop Res. 5992x1200

    Hi Jim, >>I'm going to assume you're in a multiple monitor setup? yes you are right, three 22" Screens. >>>Ultramon to help with placement of message boxes, >>>menus, default app-opening screens, I know UltraMon, I had already reviewed it. I think I will have a closer look on that app again...
  5. sa5cha

    Center the Start Button in Windows 7, Desktop Res. 5992x1200

    Hi, is it possible to center the Start Button (and the start menue that will pop up) right in the middle of the Windows 7 Taskbar ? I am running Windows 7 at high resolutions like 5992x1200. I have found no hints or programms that will do that, is it possible ? Or is it codeable with...
  6. sa5cha

    Problem dynamically rendering DropDownList in custom control...

    Can you shortly tell how ? Tank you Sascha
  7. sa5cha

    How to set the Selected.Index of an asp:DropDownList in ViewState?

    Hi, can someone help me ? I need to select the correct value of an ASP:DropdownList after an autopostback ? The following wont work : Protected Sub ddl_printout_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) ddl_printout.SelectedIndex =...
  8. sa5cha

    app_code

    Hi, just add a new class into that app_code folder (vb or c#), and put the following code in the folder. Public Class MyClass Public Shared Function IsThereSomeone() As String IsThereSomeone = "Yep i am here!" End Function End Class After that you can access that classe from...
  9. sa5cha

    How to generate a text file via ASP.NET & make it avail. for download?

    Hi Jason, thank you for your help. I managed to write the code. Here's an example for others, just copy&pasted it into an empty aspx Webpage. <%@ Page Language="VB" %> <%@ Import Namespace="System.Xml" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  10. sa5cha

    How to generate a text file via ASP.NET &amp; make it avail. for download?

    Hi, I need to generate a simple XML File on the fly via ASP.NET. The user should be able to download that file to his local harddrive. I just need the mechanism how to generate a downloadable file ? Is that possible ? Please point me in the right direction or post an VB.NET example. Thank...
  11. sa5cha

    How can I access a function from a file in the &quot;App_Code&quot; directory ?

    Thank you both for your fast replies, it helped solving my problem. Sascha
  12. sa5cha

    How can I access a function from a file in the &quot;App_Code&quot; directory ?

    I mean: I can't access my function called MyFunction
  13. sa5cha

    How can I access a function from a file in the &quot;App_Code&quot; directory ?

    Hi, I have just a little question, I just need a little push towards the right direction: I have a file "my_app.vb" located in the "App_Code" directory of my ASP.NET application. I now want to access a function which is located in that my_app.vb file from all over my aspx pages of my...
  14. sa5cha

    How to delete the Inventory Collection for all *.pst files ?

    Thank you for your response. But my problem is that I have files in my software inventory which doesnt exists since month anymore. The pst Files are deleted, and the folder is deleted. But these PST files are still shown in my report. I just want to get rid of these file entries in the...
  15. sa5cha

    How to delete the Inventory Collection for all *.pst files ?

    Hi, i created a report about all pst files on our clients hard disks. But the report reported also pst file locations that dont exists anymore. How do i get rid of those database entries ? Is there a way to clear all entries for *.pst files ? I have scheduled the to run the "Delete Aged...

Part and Inventory Search

Back
Top