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

    SqlDataSource Question

    Using control SqlDataSource in .NET 2.0, how do I search for parameter when it is provided, and return all results when parameter is not provided. For example: On my page I have TextBoxSearch. If user type something in, and then click search button, I would like to perform something like...
  2. mrkan

    runtime error: 'name' is a duplicate attribute name

    Every time I try to compile I get this error: ASP.NET runtime error: 'name' is a duplicate attribute name. Line 19, position 132. (C:\dev\myfolder\staging\web.config line 19) In web.config (line 19), there is nothing, no name tags, that could produce this error.... I tried to remove web.config...
  3. mrkan

    Floppy Disk problem on motherboard P5N-E SLI

    I have weird problem. I've just put my first (and last) system together. P5N-E SLI motherboard with Intel Quad and 2Gb of RAM. Here are other parts I have installed: - CD ROM as primary slave, - SATA 320Gb hd on SATA1 - Floppy drive Floppy is one creating trouble. When I boot from floppy, and...
  4. mrkan

    P5N-E SLI + SATA + XP, problem installing XP (blue screen)

    I have a lot of trouble recently with my new configuration with P5N-E SLI motherboard, SATA disk, and Intel Quad processor. My PC has secondary master CD ROM and sata hd on SATA1. BIOS is able to see my sata disk, and through XP installation I would push F6 to install sata/raid controller...
  5. mrkan

    SATA - CD ROM - Motherboard - how to connect

    I've just put together my first PC and I have several issues... My motherboard is P5N E SLI. It has 4 SATA connectors, 2 reds and 2 blacks. 1. Does it matter in which connector I plug my SATA HD (seagate 320mb)? My HD is on SATA1 as of now. 2. I have 1 CD-ROM and it exists on secondary IDE as...
  6. mrkan

    C# methods

    What's wrong with this code? I am getting that name IsNumeric does not exist in current contex. I found many examples like these online and non of them are working. So, how can I called this method properly. As far as I know, it should be static in order to call it directly: bool isNumeric =...
  7. mrkan

    Can't connect to SQL database

    Need help: I am doing simple Console Application, trying to connect to database and then to print records... whatever... I am failing to connect to database. There is some example here: http://support.microsoft.com/kb/307645, basically they suggest to use "Server=ComputerName, PortNumber", but...
  8. mrkan

    Can't connect to SQL database

    I am doing simple Console Application, trying to connect to database and then to print records... whatever... I am failing to connect to database. I am sure my code is correct, and my connection string is right. I copied it from "Server Explorer" properties where I am successfully seeing all...
  9. mrkan

    show cdp neighbors problem

    1. After I run show cdp nei I don't get anything... like there is no neighbors. I know for sure that there are some. show ip route shows nothing. I enabled CDP with cdp run and I set v-2 advertising. All my interfaces are down (Fa 0/0, Fa 0/1 and S 0/0) Am I doing something wrong? How can I...
  10. mrkan

    Cisco 2600 - novice question

    I have to configure two routers... So I have question: How do I assign IP address? I need to start Fast Ethernet 0/0, Fast Ethernet 0/1 and Serial Interface 0/0. I have no idea how to produce IP address for these. As far as I know, Fast Eth. 0/0 is for local IP addresses, and Fast Eth. 0/1...
  11. mrkan

    recreate accidentally deleted record

    I have a table with field pkID which is type AutoNumber. pkID is my primary key. I accidentally removed one record (pkID = 57) and now I am trying to put it back. How can I do that. I need to insert exact same pkID into my table. I tried temporary to change definition from AutoNumber to...
  12. mrkan

    Atom Feed

    Does anybody know how to read Atom Feed or where to look for some help? Thanks.
  13. mrkan

    access exlusive... issues

    When anybody open my access file (which is shared on the network drive) I am not able to do any changes on it. I have to ask everybody (50 people) that whoever is logged in to log out. So, how to work around this problem? Can I have admin privileges to open access file exclusively so if other...
  14. mrkan

    |= operator

    What is the difference here between these two lines: int a = funct(); int a |= funct(); (funct() returns integer value) Thanks.
  15. mrkan

    FILE open question

    I am calling c program like this: myprog < text.txt How do I handle content of text.txt in my c program? I could use gets but I need to use FILE pointer: FILE *fp and somehow to make this fp to point to text.txt Is this possible? Thanks
  16. mrkan

    How to Remove Reports Fields....

    Two questions: 1) I am updating some old reports and can't figure out how to remove reports fields. Let me explain: When you are creating report first time, you are asked to choose tables, then in the second step you select fields to be used in report. Let's say I have fileds a,b,c,d,e,f in my...
  17. mrkan

    trigger problem

    I am trying to test/learn how to use triggers. on mySql 5.0 (Server version: 5.0.37-log) If I do this: CREATE TABLE t (column1 TINYINT); CREATE TABLE t_test (column2 TINYINT); CREATE TRIGGER trigger_test AFTER INSERT ON t FOR EACH ROW BEGIN INSERT INTO t_test (column2) VALUES ('6'); END...
  18. mrkan

    Makefile problem....

    New to Linux/Ubuntu Edgy... I am trying to write my first makefile for last 3 hours. So far couldn't make it. I copied couple simple makefile examples and non of them worked: here is one: http://tlug.up.ac.za/old/csslug/writing_makefiles.html#makefile Tried one on the top and got message that...
  19. mrkan

    trivial char/string/malloc question

    I am beginner... can somebody help me/or explain how to do this. I am struggling with pointers... In main program I declare array of characters (or pointer to array)... Then I have function to which I pass size of the array. I malloc the space and then I populate array. I return success or...

Part and Inventory Search

Back
Top