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

    Reconnecting network drive on wireless connection

    Hi, We're having a painful problem here. There is a network drive on the workstation mapped to a share on a server, say, \\server\myShare. The connection between workstation and server is wireless - workstation connects to a Linksys AP. The drive is set to reconnect after windows restart. The...
  2. paskuda

    Control .AVI playback in the movie

    Hello, I'm a total beginner, so sorry if I'm asking a stupid question, but I've been googling for two hours now on and can't find the answer. My problem is: I imported a movie into the cast, it's a DivX movie. I placed it on the Stage and it's playing fine, as soon as I start the movie. What...
  3. paskuda

    A little different table rotation ...

    Suppose I have a table like this: ID NAME 1 John 2 Ann 3 Mike etc, etc ... ID column is unique I need a query to return a table like this: 1 2 3 John Ann Mike The IDs become the column names and there is only one row of data. Any ideas? I...
  4. paskuda

    Requirements for dtsx execution

    Hi, recently I had an opportunity to talk to MS trainer about SSIS, he told me that an advantage of .dtsx packages is that it's possible to run them from any computer - I just have to prepare a package and then I can distribute it to other computers and run it. Some things are a mystery to me...
  5. paskuda

    Line drawing problem - pen changing color

    Hello, I just started learning C# and have a problem with drawing. I have a small piece of code where I draw to a bitmap defined in memory and then draw the bitmap on the form using the Paint event. I have a piece of code like this : Graphics objGraphics; Pen mypen; // some code I cut mypen =...
  6. paskuda

    Database design question - 1:2 relation

    Hello, I'm designing a small database where soccer results are going to be stored. I have created following tables: FB_Teams, with primary key I_TEAM_ID, storing team data. FB_Competitions, with primary key I_COMPETITION_ID, where I want to keep details of leagues, cups, etc. As most of you...
  7. paskuda

    Formatting query output in Query Analyzer

    I think I have accidentally changed something in query analyzer settings and can't find the way to return to previous settings. Whenever I select data from integer type columns return is formatted as a float value. For example - if value stored in a row is "20" then the result in output table is...
  8. paskuda

    Enterprise Manager in SQL 2000 suddenly stopped working, any ideas ?

    Hello, I'm having a problem with my SQL Server 2000 (SP4) Enterprise Manager. It was working fine until today, when it suddenly stopped. When I try to start it from the start menu nothing happens. I checked the process list and found that mmc process is running. I killed it, tried again - same...
  9. paskuda

    Licensing question - local connections

    Hello, I've been reading a little bit on SQL Server licensing issues and got a little bit confused. Let's say I want to use Server license + CALs. I read that each machine connecting to SQL Server (or each user, depending on CAL type) needs a separate CAL. What should I do if all software...
  10. paskuda

    fstream problem

    Here's a little piece of code I'm trying to get to work: char *bzium; bzium = dupa.getHeader(); fstream xx("c:\\ble.dat",ios::binary|ios::out|ios::app|ios::trunc); xx.write(bzium,strlen(bzium)); xx.close(); bzium is a non-empty null terminated string, c:\ble.dat exists and is not empty. What...
  11. paskuda

    CCNA preparation course benefits

    Does anyone know if finishing official CCNA preparation course (in CISCO net academy) gives students any benefits (of course, except the knowledge and practice) during the certificate examination ? Mike
  12. paskuda

    Problem displaying char with ASCII code 255

    I'm having that probably very stupid problem, yet I can't find an answer, so ... My application has to make a hex dump of some buffer (read from binary file). I have a pointer to that buffer: char *headerPtr; To read it byte by byte I wrote a function char header::getByteAtPos(int pos){ if(...
  13. paskuda

    Strange system hangs, probably caused by memory

    I'm having strange problems with my computer. When I bought it, it had 3 256 DDR chips (all the same). Everything seemed to work fine, but after a while I encountered blue screens. After some investigation I decided RAM was the issue. I removed all chips but one and everything was fine. My...
  14. paskuda

    Problems connecting to SQLBase using SQLTalk

    Hey there. We're using at our company SQLBase Server 7.5.1. It has just one, yet huge database, which is designed to work with specialised software we get from public health department. I've been trying to connect to this database using SQLTalk, because we need some reports on patients that are...

Part and Inventory Search

Back
Top