Search:

Type: Posts; User: szlamany

Page 1 of 13 1 2 3 4

Search: Search took 0.24 seconds.

  1. VS 2012 Re: Built in Webforms security - Access or Sql Server?

    Where does IIS run in that?
  2. VS 2012 Re: Built in Webforms security - Access or Sql Server?

    They have to have IIS installed on the server - right?

    I would imagine that SQL Express is installed along with IIS - since it seems the authentication relies on it.

    Hopefully someone with more...
  3. VS 2012 Re: Built in Webforms security - Access or Sql Server?

    Wow - really? The dev lead wants that? MS has a really cool security layer and needs ms sql express to power the backend of that.

    If you want to host your data in ACCESS in your backend that's...
  4. VS 2010 Latest MS Update - changed http.sys - and now I'm getting strange behavior

    Ok - been working for a long time on an app - working a backend service. When I debug this app it starts 4 services in the IDE and they all talk via http to each other. This has been working great...
  5. Replies
    7
    Views
    175

    Re: Criticize my UI design

    It's always good to consider mouse-movement that you make required by having buttons in various places.

    The user should be able to make the shortest mouse movements to achieve the desired...
  6. Re: Some kind of caching has got me down

    Back when table variables were first introduced (SQL 2000 was the first - right) the memory aspect was the selling point to developers. To have a down-and-dirty not-logged in-memory quick place for...
  7. Re: Some kind of caching has got me down

    Actually the difference that stands out in my mind most is that TABLE VARIABLES cannot be part of transactions - they do not rollback. That distinction lives in the part of of my brains that...
  8. Replies
    45
    Views
    534

    Re: Visual Basic 1 code?

    MSX Basic?

    http://en.wikipedia.org/wiki/MSX_BASIC

    nvm - that's not it - sorry...
  9. Replies
    15
    Views
    250

    Re: Programming jobs

    I am hour away from having a prototype - really looking forward to the visual pop. Saw a MS calculator demo app that is really cool.

    At any rate - everyone is kind of telling you the same thing. ...
  10. Possible to search for two words with RegExp

    This is not my code - but appears to be how a jQuery autocomplete can fill the array that shows when you start typing.


    var matcher = new...
  11. Re: Want to get this DIV to appear under the textbox and button in this jQuery Accord

    I changed it to this:


    $("<div id='" + strNewErrMsg + "' class='acs-tracker-below'></div>").appendTo("#" + strNewAccordionDiv);And created CSS that looks like this:


    .acs-tracker-below
    {
    ...
  12. Replies
    14
    Views
    288

    Re: Discussion regarding gregorian calender

    I worked as a consultant during the Y2K era - somehow got people to think I knew COBOL... Helped a company that was going to SAC but would not be ready by 2000 and had lots of IF conditions in code...
  13. Replies
    15
    Views
    250

    Re: Programming jobs

    http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/7edc8165-e1a6-4451-ac9c-f112d1d17957

    Go to the bottom of that blog...
  14. Want to get this DIV to appear under the textbox and button in this jQuery Accordian

    I've am trying to add a DIV in an existing - very complicated - jQuery/JS app. I want this DIV to appear under the textbox and button - see attached image.

    I'm adding the DIV with the second...
  15. Thread: Great read

    by szlamany
    Replies
    0
    Views
    63

    Great read

    I'm glad I know how to do some taping...

    http://www.nytimes.com/2013/05/21/science/mit-scholars-1949-essay-on-machine-age-is-found.html?smid=tw-nytimesscience&seid=auto
  16. Replies
    15
    Views
    250

    Re: Programming jobs

    So - entry level - that's fine. Sometimes you need that type of programmer.

    But to be considered for a staffing agency I cannot imagine you not needing a resume of some sort - and that little...
  17. Replies
    15
    Views
    250

    Re: Programming jobs

    I've used staffing agencies for a variety of programmers. I've had people with nearly no experience - just out of college, for instance. I pay around $40 an hour for that type of person - I'm sure...
  18. Re: Writing an "empty" string to a MS SQL 7 database.

    Well...

    Show us the code anyway - who cares if it's a non MS language - I still want to see what you are doing.

    How could I suggest a solution without seeing what you are trying?
  19. VS 2008 Re: rdp auto connect with username and password ?

    I've used RDP for a long time - many ways - VPN, locally - and a couple of years ago with OWA.

    If you are talking about OWA - then it's not web based at all - it's the regular old MSTSC.exe...
  20. Thread: Google Glass

    by szlamany
    Replies
    13
    Views
    184

    Re: Google Glass

    Isn't the whole interweb business model based on that?

    Something to do with Al Gore - right?

    Or was it Woody Allen in the Sleeper...
  21. Thread: Google Glass

    by szlamany
    Replies
    13
    Views
    184

    Re: Google Glass

    It gets worse :eek:

    http://www.youtube.com/watch?v=k1j1RYcrLbQ
  22. Re: How to obtain the name of the dynamically created label your clicking on

    Why does that not help you? Have you never set a BREAK POINT and run your code and had it stop at that point to examine what is available in the objects you are working with?

    If not - then you...
  23. Re: How to obtain the name of the dynamically created label your clicking on

    Do you ever use the WATCH or QUICK WATCH windows?

    Set a break point where you want to change the color to green and then put Form1 into the Watch window - click the plus sign to open the object -...
  24. Re: How to obtain the name of the dynamically created label your clicking on

    When you are in the label click - put sender into the TIMER1.TAG

    Timer1.Tag = Sender

    Now when you are in the timer event - you have the SENDER from the original label click
  25. Replies
    3
    Views
    79

    Re: Need help trapping Enter key

    Been a long time since I did VB6 - but don't you have to enable ENTER key trapping on the properties of the FORM itself?
  26. Re: How to obtain the name of the dynamically created label your clicking on

    SENDER come in to you as the PARAMETER of the event function already


    Private Sub label_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs)

    You simply use the DirectCast...
  27. Thread: SQL Help

    by szlamany
    Replies
    9
    Views
    334

    Re: SQL Help

    I don't have an C# examples - but in VB it's this


    Using sdrReader As SqlDataReader = cmd.ExecuteReader
    While sdrReader.Read
    ...
  28. Re: How to obtain the name of the dynamically created label your clicking on

    No problem! We are all talking big-stuff around a little problem of the OP not realizing SENDER is the object already available to serve the need.
  29. Re: How to obtain the name of the dynamically created label your clicking on

    I certainly wasn't saying to put the NAME value in the TAG property!! I was indicating that I would use the TAG for it's purpose of storing additional info about the control.

    Sorry if I was too...
  30. Replies
    1
    Views
    101

    Re: CHECK data file by date

    IS this MS SQL or ACCESS or what? What is the type of database??

    This thread needs to be moved to the DB forum also - you posted in VB6 and this is not a VB6 question. PM a moderator to move it.
  31. Re: How to obtain the name of the dynamically created label your clicking on

    I thought he was adding them dynamically - thus the need for a NAME at runtime is kind of useless - right? The name is for the IDE and you to get along - right?

    And I agree - the TAG property is...
  32. Re: How to obtain the name of the dynamically created label your clicking on

    @tg - I'm curious...

    If you are going to have "centralized" events for handling lots of labels that you added to a form - what is the downfall of not naming them. You access them through the...
  33. Replies
    7
    Views
    295

    Re: Help with sending E-mails through VB.NET

    From my experience most email services will mark you as a spammer if you send too many emails in a short period - or to the same address. You will get blacklisted - doing something like this. Be...
  34. Re: Testing whether a SQL statement is valid - SQL Server 2000

    If you use SELECT like that what is the difference between

    SELECT 123

    and

    SELECT DatePart(yyyy,GetDate())

    Won't it always work now - regardless??
  35. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    Thank you very much for info - I really appreciate.

    It's amazing how many times us developers have to switch coats and learn a new language/paradigm!
  36. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    I've only got VS 2010 - never got 2012 since I've been coding mostly Javascript and C++ the past year or so.

    Does 2010 have the same XAML editor??

    MVVM scares me (although I've not looked at it...
  37. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    The examples online are really hard to wrap my arms around - I've got a book coming from Barnes and Noble on Monday - hoping to follow that through some sample apps.

    This is not a database driven...
  38. VS 2008 Re: Mix Of Uppercase And LowerCase

    What a horrible footnote at the bottom of that link on TitleCase

    If this bothers you at all then write an unmanaged function in C++ and do it yourself!
  39. Replies
    24
    Views
    336

    Re: Color Selection Design Question

    Have to recreate to create - as my wife is always telling me!
  40. Thread: Pc v/s laptop

    by szlamany
    Replies
    9
    Views
    192

    Re: Pc v/s laptop

    The PC is my tool - like a lawn guy has a lawn mower. Self-employed here - so I gotta stay top of the line. It's actually the only expense I consider important - I'm wearing t-shirts and such that...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4