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

    Aggregate function question

    Hi, I've got a problem with SQL in Access (though this is not an access issue) and I'd be glad to get some help. I have 2 tables. the first is Table1, the second Table2. Table2 has the Table1.id and a "place" counter for each item (for placing items in a menu and allowing to move it). Now, when...
  2. BomberMan2K

    DOS emulation in web pages

    Hi, I want to create the ability to run DOS application on my server, using the web browser. I need not only execute them, but really use them online, although they are DOS. I've thought about using JAVA applets for this. the problem is - I don't know Java and don't know if this is possible. So...
  3. BomberMan2K

    running DOS software in a browser

    Hi, I've got a client who has a DOS software that he wishes to run from a browser (and thus from any location). Can this be accomplished somehow? I thought about embedding a Java Applet in my ASP pages to do this task - but couldn't find any applet that does that. Is it possible at all? Thanks...
  4. BomberMan2K

    Remove a line from a string

    Hi, I'm building a very simple Whois client in c# and need to remove the non-relevant lines of response from the whois server. Every comment-line is preceded by a "%" char and I want to remove the whole line. I get the response into a string var - and would like to print it to a textbox without...
  5. BomberMan2K

    Getting an empty field

    Hi, I have this weird problem that i would be grateful if any one could help. I've moved from an Access DB to SQL Server using SQL Server Migration tool. All is fine, but a certain field field just doesn't send back when I try to get it using ASP code. That's a nvarchar(MAX) field. It seems that...
  6. BomberMan2K

    SQL Server 2005 Express Connection String

    Hey guys, I've built an ASP web site using SQL Server Developer Edition, and now have to move it to an Express Edition. For some reason I can't connect to the DB using a connection string, my guess because is that I can't get the "Data Source" right. When I power up MSSQL I get that the instance...
  7. BomberMan2K

    Randomizing Query Results

    Hi, I'm having an issue with randomizing an ACCESS query results. I have an index of people, which I want to show in random order each time the page loads (the page is written in ASP of course). I've tried the RND() approach - but it always returns the same result (even if I use a random key...
  8. BomberMan2K

    NotifyIcon - Left / Right Click Only

    Hi, I'm trying to make my application to act differently on left or right click on it's tray icon. I'm using the Click Event - I want my form to show/hide when I left click it, and show a context menu when I right click it. For now - It all happens at the same time. Is there a solution for...
  9. BomberMan2K

    Listing the ToDo folder from Outlook

    Hey, I'm trying to list the To-Do Folder in Outlook into a ListBox in C# WinForm. I'm using the default folder olFolderToDo, but can't cast the items in it to a suitable cast. When I use the Tasks Folder, I cast into Microsoft.Office.Interop.Outlook._TaskItem, but it doesn't work in the ToDo...
  10. BomberMan2K

    Connecting to Outlook from C# external app

    Hi, I want to connect to an outlook 2007 (or 2003) app installed on a given machine, fetch the To-Do List and show it in my c# application (and if possible, manipulate it). Can this be accomplished? if so, how? Thank you, Roman.
  11. BomberMan2K

    Executing an ASP script using VBScript

    Hi, I need to execute an ASP script using windows scheduler at my hosting company. They told me they need an .VBS file to do so. I've tried to figure out how to execute an ASP script (which is a web file) using VBS. My idea was to use XMLHTTP (because I can't really open an explorer on their...
  12. BomberMan2K

    Regex for SPSS field input

    Hi guys, I'm trying to build this little nifty form to get field names for SPSS software. The catch is it can only start with an alphachar (a-zA-z), continue with alphanumeric chars (a-z, A-Z, 0-9, _ - underscope) and can end with only alphanumeric char (not with an underscope). suppose "val"...
  13. BomberMan2K

    Cross Site JavaScript

    Hi guys, I've seen this javascript being embedded across different sites. Like google does with ti's adwords and google analytics. I want my javascript code to be embedded in other sites as well, so they can get html code from me to be displayed at their site, according to the parameters they...
  14. BomberMan2K

    RegExp in Javascript - Negating chars

    Hi, I want to validate a field for SPSS - i.e I want it to be only alphanumeric include under-scope, but it can't start with a number or an under-scope (and can't end with it). I use the following regex: /^[a-zA-Z0-9_]+$/ But it only validates for alphanumerics. no negation like i want. Please...
  15. BomberMan2K

    Transposing a table in vbscript/ASP

    Hi, I have this little tricky problem and I just can't find a logical solution. maybe someone can help. I have to create a table, but in a way that I have to create it by columns and not by rows. i.e - When creating a table in ASP using HTML I must go each row and create it. I have to do it by...
  16. BomberMan2K

    Using generated identity value in another column

    Hi, I'm want to take a generated identity value in a given record, and in the same insert operation put that value in another column. For example - I have the ID column, and I want to insert a new record and put the ID value generated in the NEWID column as well. Is there any way to...
  17. BomberMan2K

    Identity return failure

    Hi, I'm moving to MSSQL2005 from Access and having a small problem. I use ASP and ADO to work with MSSQL. When i create a new record through ASP, in a table which has an identity column - i can't get the identity column which is generated automaticaly. After I update the newly created record, i...

Part and Inventory Search

Back
Top