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

    Small question about greasemonkey

    Is it possible to make tab-specific variable? Let's say you open two time the same website in different tabs, when you use GM_setValue, it's gonna change the data for both tabs. I've been looking for some time on google, but I couldn't find anything, or maybe I didn't formulate it correctly...
  2. iranor

    Outlook XP strange crash

    Hi, i'm having a small problem with outlook 2002 (on XP SP3). On some computers at my job, outlook crashes one time out of two runs.. The first run goes fine, but when I close it and re-open it, after 5 sec it crashes without notice. It doesn't even remember lastest opened folders. I tried...
  3. iranor

    Problem with datagridview Frozen property

    Hi, i'm having a strange problem here. I have a big datagridview with like 2000 rows. If I freeze the first rows, no problem, the row will be frozen and i'll be able to scroll through the other entries. However, if I scroll down to the 100th entry for example, and freeze it, the scrollbar will...
  4. iranor

    Little help on a query..!

    Heya, I have two tables. The first one: articles, with the fields ArticleID, Title, Content. The second one: comments, with the fields EntryID, ArticleID, Rank. What I want to do is select all the articles from the table and order them by rank (which is, the sum of all "Rank" fields divided...
  5. iranor

    Calendar Range

    I'm looking for a calendar that allows you to select a range of dates and highlight them. Let's say you select january 5, and then you select january 15, in the calendar all days between january 5 and 15 would be highlighted and the 2 dates would be in different input box. For single date...
  6. iranor

    ASP get loop array HTML fields

    Hi, I have some fields dynamically generated and I don't know how many. Let say that I create 10 fields on an HTML page with asp: <input type="text" name="Field[1]"> <input type="text" name="Field[2]"> <input type="text" name="Field[3]"> ... Using PHP, I could loop on the Field value and get...
  7. iranor

    Get folder permission

    At my job, I have to check a list of approximately 480 users ans folders to make sure every user has a folder, and every folder has a user. I decided to code something in c# to make my life easier... I can't find how to check if a user has access on a certain folder. I'd like to do something...
  8. iranor

    Get file title

    Is it possible to get the file title of a file with vbsscript? like when you click Properties then Resume and set the title. This is my actual code. <% Dim objFSO Dim objFolder Dim objFile Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.GetFolder("C:/test")...
  9. iranor

    Bind enter key to a edit control

    So I have that RichEdit box created with the CreateWindow method. I want to bind the enter key on it, so when someone press Enter, I want to execute a method called ProcessCommand. I tried to put the WM_KEYDOWN event on my main wnd proc, but it just works as long as the focus is not on the edit...
  10. iranor

    Add text to rich edit control

    Ok, so I created an empty c++ project on visual studio. I created the main window, now I just added a Rich Edit control on it. I don't know how to write text to it using code... I don't want to use an mfc app btw. I tried hTextZone->ReplaceSel("sometext"); and hTextZone->Lines->Add("text")...
  11. iranor

    Regexp question

    I have a string that looks like this: $Data = 'Sometext {value1} text {value2} bla'; With a function, I replace {value1} with some text, but I don't replace {value2} and I want to remove that text. I can't find the right regular expression to remove all { } with the text inside... Tried...
  12. iranor

    Octogone-shaped clips..

    Is it possible to create a clip that has another shape than rectangular? I'm creating a small flash application, I have 7 octagones stick together (image: http://img413.imageshack.us/img413/1860/octagoneos9.jpg). The problem is that, I need to stick them together, or else some part of the...
  13. iranor

    Hide part of a table..

    I can't seems to find a way to hide only a part of a table. Look to the code below: [code] <table> <tr> <td>col1</td> <td>col2</td> </tr> <div id="bla" style="display: none"> <tr> <td>col1content</td> <td>col2content</td> </tr> </div> </table> I'm used with...
  14. iranor

    Combobox

    I've been looking for 3 days on google and the msdn library for that, but i couldn't find any informations. Is it possible to add a different color for each elements of a combobox? Like the first element is red, the second blue... a way to set the foreground and background color of each item?
  15. iranor

    ComboBox questions

    So I have 2 questions about the combobox component. The first one is, how can I add a different color for each item in the combo box? Like the first one the background color is red, the second blue, etc. The second one, is there a way to associate a value with an item? Like in html there is...
  16. iranor

    Clip link..

    Hi everyone. I have a swf file that contains only clips, numbered from 1 to 20. Another swf file need to load that file and display the different clips in a small "clip holder" resizing them to display. (clip holder is a two-piece clip, that displays the number on the bottom and the image on...
  17. iranor

    Bug with .net and flash

    Hi, my friend has built a small program which loads a Flash movie. The problem is that everytime I try to run it, it crashes. Any .NET application that uses Flash, it will crash. I have no problems with vb6 and flash however. Config: XP x64, .net framework 2.0 x64 Any idea?
  18. iranor

    htmlText and img src problem

    I have a small chat zone in one of my clip. I use htmlText on it, I display an image before each line. The text output is like: <br><img src="MyLibraryImage"><font color="red">MyText</font> <br><img src="MyLibraryImage"><font color="red">MyText2</font> <br><font color="red">Sometext</font>...
  19. iranor

    Somehow &quot;link&quot; a field in two tables

    I have a table named 'accounts' with fields UserId and Username. I have another table called 'logs', where there are fields EventId, UserId, LogDate, EventParams. Is it possible to somehow 'link' the UserId of both tables? Like, I would like to search throught the logs using the username. I...
  20. iranor

    Question about Scrollpane

    Hi, I was wondering if this could be possible using the scrollpane object. I would like to use a Tree component, that would load the selected clip in a Scrollpane component. 1. Is it possible to create the images in the clip when it is loaded? (by using attachMovie in the first frame, I...

Part and Inventory Search

Back
Top