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!

Search results for query: *

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

    Login (ASP.NET)

    I am new to asp.net and I faced some difficulties with the site I want to create. On the default.aspx page I want to put 2 textboxes ("UserName" and "password") and checkbox "Remember me" for users' login. When user check "Remember Me" he should automatically login on next visit and instead of...
  2. MickeD

    How to create SQL SRV database from given XSD file?

    Hi there, I need to store some data that I am recieving in XML format into the SQL Server 2000 database. Is there a simple way to automatically create relevant tables? I have XSD file and couple of samples of XML. Thanks,
  3. MickeD

    Urgent! Unbound DataGrid

    Hi all! How can I add/modify/delete data in datagrid if it's not connected to any database? This is a code: myDataSet = New DataSet("myDataSet") Dim tMap As DataTable tMap = New DataTable("Map") ' Create two columns Dim cSource As...
  4. MickeD

    "Localhost" not accessable!!!

    Hi all!!! I need urgent help! I'm trying to browse for http://localhost/ and getting HTTP 500 - Internal server error But if I browse for my IP address I get it. PLease help!!!
  5. MickeD

    Problem with IIS

    Hi, Installation of IIS on WIN XP Pro doesn't work. When I browse for "http://localhost"; I get "HTTP 500 - Internal server error". Reinstalling of iis didn't help. Please help!
  6. MickeD

    HTTP 500 - Internal server error

    Hi, Installation of IIS on WIN XP Pro doesn't work. When I browse for "http://localhost" I get "HTTP 500 - Internal server error". Reinstalling of iis didn't help. Please help!
  7. MickeD

    Can't establish network between 2 WinXP pro machines

    Hi, I have 2 computers - Desktop and laptop running winXP Pro SP1 and connected to internet via HUB. Everything is OK with internet but there is no connection between machines. Before installation of XP I had full LAN without problems. Any clue?
  8. MickeD

    IIS - HTTP 500 - Internal server error

    I'm running Win 2000 Pro with IIS installed. But I cannot use the IIS - I get HTTP 500 - Internal server error when I try http://localhost or http://127.0.0.1 addresses. I try to find some help on Microsoft's KB - nothing helpful. Just be sure that service is running. It IS. But it doesn't work...
  9. MickeD

    How to make CheckBox "ReadOnly" ?

    I have some TextBoxes and CheckBoxes on the form. In read only mode I set the "Locked" Property of TextBoxes to True . I need do the same for CheckBox (setting "Enabled" = False makes the checkBox to Grayed, it's not acceptable) May be some Third Part ActiveX Control has...
  10. MickeD

    URGENT!! PLEASE HELP WITH TRIGGER

    Hi, I need to create insert/update trigger that checks some value in another table and put the result in one of the fields in the updated table (after insert/update process) Here is a code i try: CREATE TRIGGER TR_Check_IF_Arrived ON tbl_Test FOR INSERT, UPDATE AS declare @stat char(2)...
  11. MickeD

    MDAC_TYP Install

    Hi, Is there an option to run MDAC_TYP.exe in background (silent) mode? I need to upgrade mdac to last version on more then 300 computers and i have to do it without user interaction
  12. MickeD

    Create Dll

    Hi, I'm VB programmer, i need to use in my project some code on C (ANSI) but i have no knowlage of C and havn't installed on my PC any "C/ C++" compiler. If anybody would so like to compile this code as dll for me? I hope this is not difficult to do it. This is very urgent issue...
  13. MickeD

    How can i enable 2 or 3 URL and disable all others

    Hi everybody! I need to disable inet for some users excluding 2 or 3 sites. Can I do it for win95/98, IE5.* ? Thanks
  14. MickeD

    User control containing a form

    Hi, I'm trying to create some control like combobox but instead a list of values I put a captionless form with grid (kind of multicolumn combo). I have 2 problems: 1. how can i position this form exactly under or below of textbox ? 2. how can i decide where to put it - under or below? In other...
  15. MickeD

    Prompting for parameters via WCS

    We are building an Intranet-based reporting system using Crystal reporter ver 8.0 (developer) + WCS. In cases which the report contaiins parameters (which we have to manually type in each time ruinning the report) the Web component doesn't open a dialog box prompting for the parameters. please...
  16. MickeD

    Menu ActiveX ?

    Hi all, Is anybody knows any third part menu control/ActiveX witch enables to create menu at the run-time. Or the only way to do this it's using API (AppendMenu() etc)
  17. MickeD

    How keep alive some .exe

    Hi, I have some EXE file doing some process (get messages and update database) This process is very important for our organisation and it must be alive 24 hours. How can i know from another app is this process alive? In case Error or other message I must be able to close it . If prosess is...
  18. MickeD

    Win API

    Hi, I need to "catch" click on the some button in some application. In other words, how can i get a message from Windows message queue that was sent to specified hwnd and how can i get this hwnd for given button ? The application what i wont to control is a third part app and i...
  19. MickeD

    Setting Date Format

    Hi, We are working with .DBF files :( and date format is dd/mm/yyyy. also we have a VB app that update DB records If date format on the computer is mm/dd/yyyy and days value <=12 VB revers days and months values ex. 01-Dec-2000 was stored as 12-Jan-2000. Is there any method to store date...
  20. MickeD

    Log File

    Hi, How can I insert row at the Top of text file? (Something like Error Log - Last ocurred error - on the first line of file) I try this way: For i = 1 To 5 f = FreeFile Open &quot;C:\Errors.log&quot; For Random Access Write As #f Seek #f, 1 txt = &quot;[&quot; & Now() &...

Part and Inventory Search

Back
Top