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 TouchToneTommy 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: *

  • Users: tg2003
  • Content: Threads
  • Order by date
  1. tg2003

    JS not working

    Hi people, Here's my question: I have this JS line that opens a new HTML.It workes on one of my pages but not in the index page. I can't figure this out. Here it is: <code> <a href="javascript:;" onClick="MM_openBrWindow('1.html','Demo','width=820,height=580')"><img src="btn_arrow.gif"...
  2. tg2003

    Sending mail by SMTP with no password

    Hi, I'm trying to send a mail by SMTP client. It works for me, but the problem that I must specify a password of the sender. How can I send it without specifying password? I think it should be possible. Dim msg As New System.Net.Mail.MailMessage() msg.To.Add("me@mycompany.com") msg.From = New...
  3. tg2003

    marquee embed on HTML site

    Hi everyone, I've been trying to add a "recent News" section using the marquee tag in my HTML site, but I don't know how to place it at the side of the page without dragging lower all the content. In adition, on Firefox the marquee text is shown "fully" on load and then start to move correctly...
  4. tg2003

    How to redirect? It doesn't work for me

    Hi, I have 3 domains which points to the same place: http://midjet.net http://midjet.biz http://GoMidjets.com I'm trying to redirect one of the domains (http://gomidjets.com) to another page (http://gomidjets.com/site) by using .htaccess file. Redirect 301 http://gomidjets.com/index.htm...
  5. tg2003

    Configuration management and web sites

    Hi, I have a blog about configuration and Application Lifecycle Management (CM and ALM). I'm writing a post about web sites and configuration management. In hence I'm doing a little poll: 1. Do you use any configuration management tool to keep your web site files? In such case - which one? 2...
  6. tg2003

    Copy menu to all pages in site

    Hi, I'm working on a new menu (tool-bar) in my site. Here it is: http://midjet.net/site/fsmenu_1 I would like to know if I can use it as a function in all other site pages. What I mean is to avoid of copying the menu code to each page. I know it's possible if I'd use PHP - but since I'm using...
  7. tg2003

    How to retrieve day name by date for multi-language?

    Hello, I have to retrieve the day name by the absolute date. e.g. Today is 11/17/2008, so I need that this function(?) will retrieve "Monday". Currently I'm using Dim day As String = DateTime.Today.ToString("ddd") which makes the work only if I use "English" as may regional language (it...
  8. tg2003

    How to read &quot;Regional and language option&quot;?

    Hello, I'd like to let my app run only if the Regional settings is in English format (US/UK is OK). How can I read it? I'm using VB.NET 2008 See the link: http://midjet.net/download/eng.JPG Thanks!
  9. tg2003

    Drop down menu on FireFox

    Hi, I'm a beginner web designer. I used a script for an HTML+Css menu, but the nested menu items do not appear on Firefox. It remains completely static, but of course on IE7 it works fine.. What am I missing here? thanks, (Link is attached)
  10. tg2003

    Running &quot;df -k &quot; on all platforms

    Hi, I'm writing a wrapper that tells me the free space and percentage on some file systems. I need it to work on all UNIX and Linux platforms. Currently I'm thinking about a good regular expression that covers all platforms by using "df -k", but I'm not sure it's the best. It's a lot of work...
  11. tg2003

    Problem that happens in FireFox only

    Hi, I'm a rookie web designer, and I have the following strange behavior: I have a flash toolbar. When I browse through IE, it looks good. However, if I browse by using FireFox, its edge is not aligned to the table below, as you can see here: http://midjet.net/toolbar.JPG The page and site...
  12. tg2003

    How do I know which day is today?

    I'm looking for a built-in function that tells me what day is today. I mean to its name - Sunday, Monday and so forth. I'm using VB.NET 2008 Is there anything? Or should I use some function that can calculate it by the full date? Thanks in advance!
  13. tg2003

    Problem with splash screen

    Hi, I've added a splash screen to my form-based app (vb.net 2008): Sub main() SplashScreen1.Show() ' splash form . . . Application.Run(Form1) ' the "real" app form End Sub I'm starting my app with sub main() because this application works also as a GUI and as a console...
  14. tg2003

    Changing the system cursor

    Hello all, I have a vb.net 2008 app that starts with "sub main()", and then it opens a form. I want to change the mouse cursor (to wait cursor) just as the sub main starts. Currently I can change the mouse cursor just when the form is start loading (Me.cursor), but it's too late... How can I...
  15. tg2003

    Use resource file with Emails

    Hi, I'm currently using the following to use a jpg inside a mail that I send by VB.NET (2008): Dim logo As New LinkedResource(My.Application.Info.DirectoryPath & "\myfile.jpg") I want not to let the users to change this jpg file contents, so I want to use a resource file instead. I know how I...
  16. tg2003

    GUI and console application

    Hello, I'm a VB.NET rookie. I have a Windows-forms application that has runs GUI and backend. Now I'm planning to add the option to run the application by command-line (CLI) only, with no GUI. I have the following questions please: 1. I see that I can just hide the main form (me.visible =...
  17. tg2003

    Using PowerPacks

    Hello, I'm a VB.NET rookie, and I'm trying to package an app that I'm writing in VS 2008. My package is missing Microsoft.VisualBasic.PowerPacks.Vs.Version 9.0.0.0 (c:\program files\common files\Microsoft shared\Visual Studio PowerPacks\1.1\Microsoft.VisualBasic.PowerPacks.Vs.dll) This DLL is...
  18. tg2003

    Why I must enter a password to login into samba?

    Hello, My PC is connected to UNIX Solaris with samba 3.2. The problem is that it works only if I enter username and password. I have to enter them both after each reboot of the PC. I know this login can be done automatically, but I can't find how. Please help. My PC is Windows XP SP2 . No...
  19. tg2003

    Using Tabcontrol

    Hi, I'm using tabcontrol. I can't find how to start the application with a specific tab. What is the relevant property/method? Thanks !
  20. tg2003

    How to lock combobox?

    Hi, How can I lock the combobox? I don't want to let the users add or change the text inside. In VB6 it was "locked" or "style" property. It has been changed in .NET and I can't find the equivalent one. Thanks!

Part and Inventory Search

Back
Top