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

    datagrid paging without postback - how?

    Good morning! I have a web form with a datagrid on it and I was wondering how to implement paging without postback (like the new Infragistics webgrid). I mean, I'm using Ajax to transfer the code to an aspx page, I'm querying the database to fetch the new data but then... what? xml? How do I...
  2. patrickdrd

    flash + javascript + ajaxcall

    Hi everyone! My colleague has written a flash to be acting like a tab (4 options for the user), and we would like to be able to know when a user presses a specific "tab", calling then a function "AjaxCall" (the function itself is included in the original aspx page) to pass the pressed tab index...
  3. patrickdrd

    flash to asp.net? how?

    Hi guys! I have a flash control like a tab, and I want to post to asp.net in order to know which tab the user clicked! How can this be done? Thanks in advance!
  4. patrickdrd

    global variables not working in visual studio 2005!

    Hi guys! What has happened to visual studio 2005 regarding global variables? Can't we use them anymore? I have created a "GlobalDeclaration.vb" file (in app_code folder) to place an enum and when I try to declare a variable of that enum in a code-behind file, vb complains "is not defined"...
  5. patrickdrd

    e-ticketing project

    Hi everyone! Right with the start of the new year, I'll be working on a new project (e-ticketing), I'll be writing it from scratch... (I've been a software engineer for the last 4 years) What are your expreriences on such a project? Is is going to be easy? What should I consider? Thanks in...
  6. patrickdrd

    Way to download an activex on client silently and register it

    Hello all! I have written a VB 6 project which validates an ini file and, if it is well-formed, load it on a database table. However, I am working on an asp.net project now and I what I had in mind is: turn the old project into an activex dll, download that activex in the client's computer...
  7. patrickdrd

    Problem with procedure compilation

    Hi guys, I am writing a procedure to update a table, passing an array from asp.net of id's, which could be delimited with comma (",") or "-" (for a range of id's), the code follows: CREATE PROCEDURE sp_upd_cards ( @array VARCHAR(8000) = NULL ,@assignedtocust BIT...
  8. patrickdrd

    Service Pack 4 turned my sql server CASE SENSITIVE!

    Hi guys! After installing SQL Server SP4, the whole server turned into case sensitive, even though I have a GREEK_CI_AS (CI: case insensitive) collation! As a result, I get compilation errors when trying to compile procedures, which define variables as @groupid and use them later as...
  9. patrickdrd

    IIS security settings and configuration for asp.net

    Hi everyone! I am developing a (relatively small) asp.net site for my company, however I am experiencing some problems with iis and asp.net security settings along the way. For a example, I was getting an "access denied" message on an assemply that I had build myself, when trying to run the...
  10. patrickdrd

    How to "clone" the error object?

    Hello everyone! I need a way to "clone" (copy) the error object in order to prevent it from the code that's inside the error handler, i.e. so that it isn't reset, if the code inside, has routines that have error handling themselves. For example, consider the following code: Option Explicit...
  11. patrickdrd

    Copy of an object without reference?

    Hi everyone! I need to get a copy of an object, I do not want Set obj2 = obj1 because the new obj2 contains the reference of obj1 and changes are reflected to obj1. I do not want to have the changes reflected to obj1. Thanks in advance!
  12. patrickdrd

    Using a ComboBox Control to Edit Data in a ListView Control?

    Hello everyone! I am looking for a way to add a combobox inside a listview control in order to let the user change data. I have found the following code from google: http://www.kbalertz.com/kb_Q320342.aspx but I' m having problems converting it into VB6, especially with the mouseup event of...
  13. patrickdrd

    Form_MouseMove over "x" button? Way to know?

    Hi everyone! Is there a way to know (in Form_MouseMove event) when the mouse passes over the "x" button? I' m looking of a way to change the vbhourglass pointer when the mouse passes over the "x" button to vbdefault. Thanks in advance!
  14. patrickdrd

    SQL query to join prefix with full number

    Good morning to all! I work in a Telecom company, SQL Server database. I have two tables, the first one holding the country's prefix, e.g. 123 for normal phone and 1234 for mobile. The other table holds the calls, i.e. called number 123456789. I want to write a query to join the call with the...
  15. patrickdrd

    Help with INSERT INTO - SELECT problem

    Good Morning to everyone! I want to insert into a table using the following select: SELECT DECODE(A.e02_code, '045934', '045935') e02_code, A.* FROM TESTC A WHERE A.e02_code = '045934' My problem is that I have one more column in the select query (the table I want to insert into has the...
  16. patrickdrd

    Way to connect to a remote pc, other than net use command?

    Hi to all! Is there any other way to connect to a remote pc other that net use? I am working on a script at the time, and I found a way using the command: NET USE DEVICENAME \\COMPUTERNAME\SHARENAME password /USER:DOMAINNAME\username Is there any other way, without the need to map the drive...
  17. patrickdrd

    How do I setup Terminal Services (Client & Server)?

    Hi to all! I saw the amazing capabilities of Terminal Services recently and I want to setup them on my local network (Win 2000 Server). Will I be able to access the server from a Windows XP / Windows 2000 (Prof/Server) pc? Do they both have the Remote Desktop app? Does anyone know where I can...
  18. patrickdrd

    IDM Desktop 3.1 Client Setup crash: OleMainThreadWndName

    Hi to all! When trying to setup FileNET IDM Desktop 3.1 (Image Services ONLY) on a Windows NT Service Pack 6 (with all hotfixes), I get the following crash before setup manages to finish (Stage: Registering Components or something): Application Error OleMainThreadWndName: 00022100._MP...
  19. patrickdrd

    Macintosh - Powerpoint Incompatibility???

    Hi everyone! I sent a project written in Powerpoint (Version 2000, PC ?? Windows XP) to my professor and he said that he cannot open it! He told me that maybe the reason is the fact that he uses a Macintosh PC and there may exist an incompatibility. What should I do? He must open it! Thanks in...
  20. patrickdrd

    KMODE_EXCEPTION_NOT_HANDLED error! help!

    Good Morning to all! Sometimes I get blue screens with the above message. Either with a driver name, or without one. I have searched in Google and found this from Microsoft: http://support.microsoft.com/kb/275678/EN-US/ but cannot make it disappear! I reinstalled all the drivers, from the...

Part and Inventory Search

Back
Top