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

    Fulltextindex, order by score and weight the records with phone number more.

    Hi, I have already made a fulltextindex and it works pretty well with score and distance (calculating distance from the user and the record). However I would further like to improve this search by giving first the records with phone numbers and the ones that are "reserved". I tried adding more...
  2. Olavxxx

    Create a C# function that replicates an oracle function

    Hi, I need to recreate this function (oracle) in C#: FUNCTION dec2hex (N in number) RETURN varchar2 IS hexval varchar2(64); N2 number := N; digit number; hexdigit char; BEGIN while ( N2 > 0 ) loop digit := mod(N2, 36); if digit > 9 then hexdigit :=...
  3. Olavxxx

    fn_varbintohexstr (decimal to hexadecimal) - help get expected output

    Hi, In oracle, there is a function: dec2hex(). If I feed it with the integer value: 5044857 select dec2hex(5044857) from dual; It returns the value: 304MX In SQL (SQL 2008 I believe it is), there are two ways I have tried doing the same: SELECT 5044857...
  4. Olavxxx

    Analyzing tables/data

    Hi, I hope this is the correct forum for my question. Before I ask it, here is what I want to do: I want to analyze and visualize tables, some fields (Primary Key, Foreign key) and understand data of tables. Then I would like this in a visual way, maybe grouped by color. I know this means a...
  5. Olavxxx

    404s in the error log

    Hi, I have some 404's in my error log: /nav.txt 132 http://www.bilder.raskt.net/vevindeks.loopback /footer.txt 132 http://www.bilder.raskt.net/vevindeks.loopback /header.txt 131 http://www.bilder.raskt.net/vevindeks.loopback /robots.txt 89 - I have never made the footer.txt, header.txt...
  6. Olavxxx

    Clipboard.GetDataObject is working - but one step behind!

    Ok, so this is a quite hard thing to google for. I found only one person who had the same issue, but he had posted it on that lame forum we all know.. the one who wants you to pay and register, to read on the forums.. Anyhow, Here is my issue: I have made a "copybrowser", eg. it is a webbrowser...
  7. Olavxxx

    Fill form inside <iframe> with values (OPERA)

    Hi, I need to fill form fields with values (Opera). I want it to work like this: The users on my website are already registerred, so I know theire name and email adress. I want my users to be able to vote on a form (offsite). The form is kaptcha protected, so regarding abuse/spam on my form...
  8. Olavxxx

    ASP converts the htmlentity?

    Hi, I have/had problems with Norwegian characters like æ å and the ø (theese are the html-entities). I know there is a function in ASP, the Server.HTMLEncode(), which can convert theese and more. The problem is that I also have HTML inside the string, as this is my custom...
  9. Olavxxx

    ASP.NET + XML - Good for small news-script?

    Hi, I converted/rebuilt this sample for an asp.net / xml guestbook into a news-script. Only one thing.. I know I have to use CDATA to store HTML in XML. Should I use XML or go for Access db? I dont have admin access to a sql db on the server, so I prefer a file I can access via the LAN, as I...
  10. Olavxxx

    Article / news script

    Hi, I need an article / news script. What I need: I need to have an good article/news script, which is not too advanced. Preferrably it uses an msaccess database or maybe XML (not sql). There is sql on the server and asp.net 2.0. Are there any good ones (opensource / free / gpl), or do I have...
  11. Olavxxx

    onresize - makes IE 6 hang some times?

    Hi, I use this code: <div class="colboxmiddle_BDA82ACF" id="contentDiv" onresize="document.getElementById('optimalgrid').innerHTML = ('&lt;br /&gt;&lt;div style=&quot;float:left;&quot;&gt;&lt;img src=&quot;images/size.gif&quot; /&gt;&lt;/div&gt; &lt;strong&gt;Vinduet har blitt...
  12. Olavxxx

    Connectionstring with integrated security

    Hi, I develop in vs.net 2005, but when porting the website to the live enviorment, the sql server suddenly is no longer a local file, but it's on another server in the park. When I use this code (in the Web.config): <add name="connString" connectionString="Network Library=DBMSSOCN;Data...
  13. Olavxxx

    Table Design - I want your inputs!

    Hi, The thing is that I'm currently programming this sales-system. The system has like x amounts of tables, I've mostly added to the product-tables, changed queries, views and stored procedures. Ofcourse, I've also edited asp.net code, etc. Made html input, and so on. However, one part of...
  14. Olavxxx

    Loop thru controls and set visible

    Hi, I am looping thru a textlist, based on a variable. The asp.net then opens the file (same filename as variable). The file has one line per item, like so: blah foo bar The thing is that if I have the inputs blah, foo, bar, etc. I want the fields which correspond to be set to visible. I...
  15. Olavxxx

    XFORMS - Are we there yet?

    Hi, First off all, I have already read up on XFORMS, on w3c.org and other resources. I have also briefly tried XFORMS. When reading about it, I simply love the theory. When trying it, I became slightly dissapointed! Why? Well, Mostly because of browser support or rather lack off. Yes, there...
  16. Olavxxx

    Varying input-forms (based on input)

    Hi, Im currently making an input form and i have a .dtd, where some input-fields vary on tags. This might be the case: <!ELEMENT blah (a*,b*,c?))> <!ELEMENT foo (d*,e*,f?))> <!ELEMENT bar (g*,h?))> eg. if element blah is there, show input fields a, b and c if element foo is there, show input...
  17. Olavxxx

    Beginning SOAP - Any tuts/examples/tips?

    Hi, I wish to learn SOAP ASAP! However, when I google for SOAP, I mainly find xml examples specifying "this is the body of the xml", "this is the head of the xml", etc. I've also found some examples, but they are usually either too heavy or not working at all.. I hope someone can help me with...
  18. Olavxxx

    I want that &quot;wow&quot; effect - tips for GUI please?

    Hi, I'm developing a .net application (2005 .net) and I'm using a really slick GUI with docking windows, etc. I'm also using some cool effects as system.settings, resizing layout (tables), etc. and giving the user options for saving resized inputs (sized in width!), also right-click...
  19. Olavxxx

    Convert from PHPNuke to SMF forums

    Hi, I'm trying to convert from phpnuke to SMF forums. I used the convert-script, but it failed. Converting... Converting ranks... Successful. Converting groups... Successful. Converting members... Unsuccessful! This query: SELECT u.user_id AS ID_MEMBER, SUBSTRING(u.username, 1, 80) AS...
  20. Olavxxx

    Creating/Administrering XML-Datase for Adobe illustrator CS?

    Hi, I wish to create / administer XML for Adobe illustrator CS, from vb.net After some googling, looking at the XML document, etc. I think it's called XAML? Anyhow, I wish to create a "xml dataset" for the illustrator and after googling for while, I found no examples which where relevant for...

Part and Inventory Search

Back
Top