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

    Best Code Font

    Can you give your opinion on what is a good code font and which font are you using. The reason for this is because i use Courier New but it is not the best font. I saw some good font but can't find it. I saw this font on one MSDN TV epizode. Here is the link...
  2. bobisto

    Scroll has gone

    I've a aspx page. On the body of the page I've set scroll=yes. The page contain a sumbit button. When the button is pressed, something is checked on the database and Server.Transfer is executed to target the same page. When the page is shown for the first time it has vertical scroll back. When...
  3. bobisto

    How to work on the same solution

    I have a solution with 5 projects. How to work with a team of 10 programmers on the same solution and not having problems with it.
  4. bobisto

    Very specific problem

    Computer is with Soltek 845 motherboard and have an Inno3D 440 64MB graphic card. The problem starts when I’ve put the parts together. The computer beeped like there isn't graphic card. So firs thing that I do was to clear cmos. After that the computer worked fine. From that time until now and...
  5. bobisto

    Instance class members by name

    I've a class with private members and public property on them. I want to be able to instance class members by name. For example. public class Position { private int _x; private int _y; public Position(){} public int x { get {return _x;} set {_x = value;} } public int y...
  6. bobisto

    XML file first element

    I'm receiving many different xml files but all of them have the same name of first element. For example: <order> . . . . . . </order> I've about 20 different file content files that have to read and insert into database. I want to create typed dataset for all different files. That is't a...
  7. bobisto

    Fields from Stored Proc don't show-up in field explorer

    If the last select in stored procedure is from temporary table then the fields don't show-up in field explorer. I've the same problem with Crystal Reports that came up with VS 2002 but I've solved with first patch. I can't believe that I've the same stupid problem with Crystal Report that comes...
  8. bobisto

    Non Unicode Code Text problem

    I'm from Macedonia and in code sometimes I send some message box with Macedonian Cyrillic Code page. I've a problem with code editor. At the beginning everything is fine. All characters are shown like it should. But if I change the Show Grid option, then after that all Cyrillic characters are...
  9. bobisto

    Outlining problem

    Outlining commands in Visual Basic code editor works on one region basis, not on whole code file basis like in C#. I'm using VS.2003. Is there is a setting to change or someting else. Please help.
  10. bobisto

    WHERE CURRENT OF Problem

    I've a stored procedure that select records from a table, inserts them into temporary table. First I create a temporary table like it should be. Then I create a primary key. Every thing except Totall look fine. Then I've a cursor that update a column in which I put the current account amount...
  11. bobisto

    Defining Property Problem

    I'm building MaskedEdit control and have many problems. I don't want to bodder you with all my problems except one. I have to define a property Format that have to be from enumeration type. But I need values to be special strings like #,##0.00;(#,##0.00), dd/MM/yyyy, HH:mm:ss and etc, same as...
  12. bobisto

    Defining Property Problem

    I'm building MaskedEdit control and have many problems. I don't want to bodder you with all my problems except one. I have to define a property Format that have to be from enumeration type. But I need values to be special strings like #,##0.00;(#,##0.00), dd/MM/yyyy, HH:mm:ss and etc, same as...
  13. bobisto

    Compare two char* like dates

    I have a function that accepts two variables CString In those variable i recieve strings like &quot;20030910&quot; and &quot;20051231&quot; and I should compare them like dates. What is the best way to do it? Currently my code is : BOOL VerifyExpirationDate(CString sExpirationDateFile, CString...
  14. bobisto

    Textbox content doesn't get selected on double click

    I have very stupid problem. In every text box when you do double click the content in the text box doesn't select whole but only part. For example if the textbox is filled with date value 01/08/2003 if you double click enywhere ordinary all caracters will be selected. You can try this in...
  15. bobisto

    Windows Service problem

    I have created a windows service that watch a folder that recieve files and than reads them and inserts a row in a database. But when a folder recieve more than 10 or some times 20 it stop working. So I try to implement a Threads but now I recieve a error message when I try to start a service...
  16. bobisto

    SQL Connect on another Machine

    I'm creating web project. I want to connect to Sql server on another machine but i've problem with connection sting. If I'm connecting on my machine then there is no problem. On my machine am connecting as 'Commp.name'\ASPNET and the connection string is: server='localhost'...
  17. bobisto

    Edit Webpage on IE from other app.

    I have created a form that have a webbrowser where a page is opened and a button that activate a sub which fill the input boxes on the page. That work OK. But I wonder is it possible to execute that same sub from other application and to fill the input boxes on the opened IE on the same page...

Part and Inventory Search

Back
Top