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: Technokrat
  • Content: Threads
  • Order by date
  1. Technokrat

    Can't access web site from IE 10 and IE 11 running on windows 8

    We recently went through a browser remediation effort to make sure our web site was accessible from XP to Windows 8 using Chrome, Firefox, and IE 7 through 11. Everything works/looks good up until Win 8 & 8.1 with the IE 10 & 11 browsers. The interesting thing is that in production things...
  2. Technokrat

    WCF error, System.ServiceModel.CommunicationException the maximum message size quota

    We are seeing this error related to an http file transfer request WCF error, System.ServiceModel.CommunicationException the maximum message size quota for incoming messages has been exceeded. I've seen several posts related to this message, with the general response of just bump it to the...
  3. Technokrat

    How to use MVC AntiForgeryToken with partial views

    My question is more driven by what is the proper approach when dealing with partial views. Is there a token for each partial view, or the container as a whole? Currently our form contains divs for 5 partial views. The user is responding to a list of certification questions, and based on...
  4. Technokrat

    return image or image url from the handler?

    I have a datagrid with a templated field that looks like the following: <asp:TemplateField HeaderText="Sunday"> <ItemTemplate> <asp:Image ID="Image1" runat="server" ImageUrl='<%# "AvailabilityButtonHandler.ashx?EmployeeId=1&DOW=0&ID=" + Eval("Sunday")%>' />...
  5. Technokrat

    newbie question - how to get text field value when embedded

    I'm new to web development, I'm using aspx, c# I'm trying to use this.txtHomePhone.text to get the value. This is working fine on simple forms, but it doesn't seem to work when the text field is in a container object, such as a table. It's like it can't resolve the "txtHomePhone" reference...
  6. Technokrat

    AfxBeginThread passed pointer information lost

    hello, I'm trying to use a thread to retrieve inventory level information from a db, and store it in a map. Below I have included the struct from the header file, and the call to the thread. I am initializing the structure with an inventory item id, and date range prior to the thread call...
  7. Technokrat

    future days

    Is there a way in a single select statement to return the Tuesdays for the next future (N) weeks from the current date?
  8. Technokrat

    How to reference checkbox on non-current tab of a tab control

    How do you reference a checkbox on the non-current tab of a tab control? I have 2 checkboxes on different tabs that are mutually exclusive. If the user checks checkbox 1 on Tab A, then a message is displayed, and checkbox 2 on Tab B should be automatically un-checked.
  9. Technokrat

    is there a dirty flag for property pages

    Is there a dirty flag for property pages. In other words what, or how does a property page communicate to its parent that it is dirty(data has changed)? I have a dialog with four tabs(property pages), and changes to the first tab are recognized by the dialog and it prompts the user with the...
  10. Technokrat

    version assignment / control for multiple EXEs/DLLs

    I work for a software firm with around 30 programmers. Our main product is comprised of 145 executables and 165 DLL's. To date, we have been using a common version.h file and including this in the .RC file to have all EXEs and DLLs have the same version for a given release. You can probably...
  11. Technokrat

    How do you default a checkbox to checked on 2nd property page

    How do you default a checkbox to checked on 2nd property page? I have a tab control page with 2 tabs. I have a checkbox on the 2nd tab that needs to default to checked when adding a new record. However, on an add, the handle for the checkbox isn't available until the user clicks NEXT after...
  12. Technokrat

    change const struct to variable?

    I have the following: // a struct for a combo box struct CboDef { LPCTSTR pszQryName; LPCTSTR pszFldDesc; LPCTSTR pszFldID; } ----------------------------- The existing cpp initiated the struct as a constant something like: const CboDef m_CboDef[] = { _T("select qry1")...
  13. Technokrat

    Best practice for one, multiple, ALL

    using CR 7.0, also new to developing for CR I'm working on an inventory/po system, and I was wondering what the best / recommended method is for handling the following: We have a dialog that allows the user to select one or more PO's for printing. How do we configure/control CR so it will...
  14. Technokrat

    Need to trap characters in Objective Grid Combobox

    I need to trap characters in Objective Grid Combobox, when the dropdown is active. The way the control currently works it that it is only catching and jumpting to the list based on one character. For example, lets say the user wants to select MUSTARD from the list and this is the 17th item...
  15. Technokrat

    Triggers and system tables?

    Does anybody know how/where trigger information is stored in the system tables/objects?
  16. Technokrat

    need a monitoring/watchdog script

    I need to create a script that will alert an operator when a trigger, stored proc, or scheduled process is missing? We have run into problems where a replication is re-initialized and critical triggers end up being dropped/lost. We want to create a script to monitor the process and notify...
  17. Technokrat

    CoCreateInstance opens &quot;Server Busy&quot;

    I have a COM call that seems to run fine on some machines, but not on other machines, the call to CoCreateInstance opens a "Server Busy" dialog with the "ReTry" and "Switch To" options. Why is this happening? What is the fix? The code is written in MS VC++ 6.0 and the problem seems to occur...
  18. Technokrat

    Multiple COM calls under a single transaction

    Is there a way to encapsulate multiple COM calls under a single transaction? So, its an ALL or NOTHING deal. For example, let say you have existing COM to handle updating records to six different tables. One is the master, and 5 tables are subordinate. Is there a way to embed the calls so...
  19. Technokrat

    TEXT concatenation

    I need to concatenate a TEXT datatype field from several rows, into one resulting output, and its fine for the output to be varchar (8000). How do I go about this? I've tried creating a cursor, but the problem is that it won't let me create a local var of type TEXT. I want to trancate my...
  20. Technokrat

    Excuse me, do you know what time it is?

    Does anybody know what keeps/controls the time for the domain? I used to think it was the PDC, but that's not the case. Our domain time is 10 minutes off of the correct time. I've set the PDC to the correct time, but it eventually switches back to the incorrect time, and trickles the...

Part and Inventory Search

Back
Top