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

  1. koraykazgan

    Call WebService over https via proxy...

    Hi all, I have written an ASP.Net 2.0 Web Project Application, which is consuming a Web Service of a company. The first method will be called over https, because its the authentification method. All other methods are called over http. On my local computer, where I have direct access to the...
  2. koraykazgan

    UpdatePanel Trigger - DefaultButton in ASCX Problem...

    Hi all, I have a user control (ASCX). In that user control there is a panel, and inside that panel there is a textbox and a button. The panel has a DefaultButton property set, which is set to the button inside it. I also have a page, and on that page there are two instances of that user...
  3. koraykazgan

    Save two files on the client

    Hi all, I have to solve the following scenario. On my webpage, the user is able to view some text content. I have to put a "Save Document" button on that page. If the user wants to save that document, she clicks "Save Document" and then I have to pop up the Save As Dialog. When the user selects...
  4. koraykazgan

    Events with IIS hosted remoting

    Hi again, I have a class which is inherited from MarshalByRefObject. I have defined a delegate outside the class. Besides I have written a class which is deriving from eventargs. So I have defined an event in the remotable class. You have told, that you have not used remoting in IIS. It would...
  5. koraykazgan

    Events with IIS hosted remoting

    Hi there, I want to program a remoting application, where the remotable object will be hosted in IIS. This should be a singleton object, because I need to exchange information between users. Besides I will have a winForms application, which will activate that object and use it, as it were...
  6. koraykazgan

    Dynamic Control Placing

    Hi there, My problem is: I have a Web Custom Control, a LinkLabel. It is a component which takes an ID of any entity in my program. It gets the text from DB by using the given ID and displays it on the page. When the user clicks on that label, the page will navigate to a new page, displaying...
  7. koraykazgan

    Problem in DAL

    Hi again, I am planning to write a football manager game. In the system there should be a person entity. Also there should be many positions like User, Player, Coach, Doctor, Staff, etc. Each of this people share common properties like name and id, etc. Therefore I have designed a class names...
  8. koraykazgan

    Problem in DAL

    Hi there, I am trying to write a data access layer for my programm. In my programm I have 3 classes: Entity - my empty, base class for all objects in the programm Person - this class is derived from entity and has ID, LastName and FirstName properties User - this class is derived from...
  9. koraykazgan

    Nested Web Server Controls

    Hi there, i want to program a web custom control which can contain other custom controls including itself. I want to be able to use drag and drop in the designer and also to use HTML tags to nest the controls on the page. These controls should be visible at design-time and of course at...
  10. koraykazgan

    'Rows' could not be initialized in web control...

    Hi there, I am a C# programmer and want to create a Grid Web Control. I am about to finish the grid except rendering the control. I have a grid class, a row class and a cell class. The Grid contains the rows, and the rows the cells. For the rows I have created a collection, inherited from...
  11. koraykazgan

    Add rows to custom grid

    Hi there, I am programming a grid web control in C#. The DropDownList control is possible to add Items to the DropDownList. In the properties window, when the control is selected, there is a property called Items. When I open the dialog, I have the ability to add Items to the list. When I then...
  12. koraykazgan

    getting design time events in web controls

    Hi there, I am programming a Grid Control (Web Control Library) in C#. I have 3 classes in my prpject: MyCell, MyRow and MyGrid. The MyGrid class is the Web Control. It has a MaxCol and a MaxRow property. The MyGrid class has a MyRow array. In one grid there can be many rows, and each MyRow...
  13. koraykazgan

    Creating events in a web control library

    Hi there, I have programmed a Web User Control Button. I am Rendering the control in the Render method of the class with only html tags. The button is made of a table with 3 rows and 3 cells per row. I have 8 small images for drawing the border of the button. I put the images in the cells. Only...
  14. koraykazgan

    How to embed images in a Web Control Library

    Hi there, I am programming a Web Control Library in C#. I have included my images for my custom button control in the project, and wrote the html code to render the control. But when I compile the project to a DLL I have to copy the used images into a folder, to be able to use it. I figured...
  15. koraykazgan

    Message Handler for Dialog

    It compiles without any errors or warnings, but the dialog isn't shown on screen. When I set the lpDialogFunc parameter in CreateDialog to null, then the dialog is shown, but it responds to no message, because it doesn't have any message handler set. So I wrote a message handler and set the...
  16. koraykazgan

    Message Handler for Dialog

    Hi there, I like to programm a Win32 application, without using MFC. I can create a Window by code, but it is not easy to design the entire window with all its controls on it. So I want to use a resource and put the controls onto the dialog resource. Then I want to use this resource as template...
  17. koraykazgan

    Get HWND of Ressource

    Hi there, I am a VC++ Newbie. More than once I have tried to learn VC++, but I failed because MFC was too complex for me. I am a programmer who wants to know every written line in the code. When I start a Hello World tutorial in VC++, there are to many lines of code, which i don't understand...

Part and Inventory Search

Back
Top