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

    Drag and Drop implementation inside one picturebox control

    Hi, anyone who has implemented this or any idea about implementing both drag and drop within a single picture box control? I have created a usercontrol that works like a treeview using a custom drawn lines and text, and I would like to give it a feature of drag and drop. Thanks in advance.
  2. redshadow

    Collection problem

    Hi, I am trying to create a hierarchical structure for my collection class but I got an error on the third one. Here's my structure class1 class1collection class2 class2collection class3 class3collection class2 collection and class3 collection contains almost the same code : for class2...
  3. redshadow

    Reading DLL Information using VB6

    Hi All, I would like to create a dll which will act as a plug-in to my application, however, I don't know how to read DLL information in VB6 as this is to be developed in VB6. What I want exactly is to know the version number and the public functions and variables inside of the DLL so that my...
  4. redshadow

    Integrating Crystal Reports

    Hi all, I am new to Crystal Reports for Visual Studio .net. Can anyone please give me a sample code in order to 1. connect my application to crystal as well as filter. I tried some sample codes but it prompts the user for database logon and I don't find it nice. 2. be able to pass a sql...
  5. redshadow

    File Sharing Problem

    I have networked two computers and configured as: - via hub - assign static IP for each - both have direct internet connection - one PC has one lan card, the other has two but one is disabled. - both has gateways and dns defined as required to connect to the ISP - both has the same user names...
  6. redshadow

    Property Grid

    Hi All, Please can anyone give me a simple example of how can I access a value from a propertygrid without the use of any extensions. For example I have a Windows Form that contains a single propertygrid and has a property name called Greetings and a command button that says 'Show Greetings'...
  7. redshadow

    How to fetch selected item from a listview

    Hi All, How can I fetch the item selected by the user as well as the subitem/s from the listview.
  8. redshadow

    Could not see the changes after updating.

    Hi all, I am using VB6 with ado data control and ado code and MS Access as the database. I used ado control to hold selected records such as specific journal number. I used ado code to insert and delete records off ado control data. My objective here is to select specific journal group, and...
  9. redshadow

    Date wasn't printed in Crystal

    Hi all, I tried to test print my application developed in vb6 using crystal 9 with ms access database. To my surprise, datetime data types aren't printed by crystal. I tried to trace if data were not captured by vb6 but it is being captured correctly. I use active data and from my vb code I...
  10. redshadow

    Packaging issue on ADO

    Hi All, Anyone encountered problem packaging your program in VB 6 using either PDW or VS Installer successfully but upon deployment on the client workstations, "Activex Can't Create Object" pops-up. This happens to me and I wonder why, after receiving this message, I tried to find the...
  11. redshadow

    Request Timeout when issuing SQL statement

    Hi All, I am using SQL Sever 2000 and Visual Basic 6. When I tried to query a database using about 6 tables, I stablished inner join to 4 of them, outer join for the remaining. This query runs for about 2 minutes and outputs about 12000 records using SQL Query Analyzer. Upon pasting it to...
  12. redshadow

    Memory Allocation error

    Hi All, Does anyone encountered a Memory Allocation error while running a crystal report from any other product like Visual Basic or other programming languages? I tried calling a crystal report from one of my application. The report file's size is about 120KB with a lot of formula (about...
  13. redshadow

    How can I extract current and previous months,combine them in a report

    I am writing one payroll report in Crystal and the situation is that there are two groups in the employee and each group has different payroll period. I have to extract data for a particular group of employees from a previous month and combine it with group of employees for the current month...
  14. redshadow

    Multiple Active Data

    Hi All, I have seen a lot of samples using active data with visual basic, but is it possible to use more than one active data source in crystal using VB or other programming languages? If so, can you please give me at least an example on how this is carried out? Thanks in advance.
  15. redshadow

    Novice Question about N' in a T-SQL

    Hi to all, I just want to clarify myself what is N' used for? Let's say: if exists (select * from sysobjects where id = object_id(N'[dbo].[objName]') I browsed all topics on SQL Server and I couldn't find any explanation about the purpose of N'. Thanks in advance for the enlightenment.
  16. redshadow

    dynamically filling-up a combo box

    I would like to make a form the same as hotmail.com's sign-up form, when the user selects a country, the city combo box is filled only with the cities related to that country. Anyone can help me please on how to implement this in Coldfusion?
  17. redshadow

    Can't connect to outside pop- based mail server

    hi, I am a newbie on this scenario and I would like to ask if anyone can explain why I can't ping outside, say ping www.yahoo.com from my network. This makes my pop mail inaccessible also. We currently have IP addresses supplied by our DHCP server, and we have our mail server located at...
  18. redshadow

    Problem regarding radio buttons and check boxes

    Hi, Can anyone explain why do CF can't see form fields for radio buttons and check boxes when the user did not click on it, and help me how to get around this thing pls.? for example: I have a cfm file entry.cfm that contains the form tag <input type=&quot;radio&quot; name=&quot;test&quot;>...
  19. redshadow

    Winsock and TCP/IP

    Is it possible to use Winsock to transfer files from a user client machine to a server and vice versa? The client uses dial-up connection in order to connect to the server.
  20. redshadow

    Strings

    I am just wondering why this code produces different results #include <stdio.h> #include <string.h> char names[5][25],temp[25]; int x; void main() { for (x=0;x<=4;x++) { scanf(&quot;%s&quot;,names[x]); } for (x = 0;x<=4;x++) { printf(&quot;%s&quot;,names[x]); } // the above works...

Part and Inventory Search

Back
Top