without

ASP.NET - Can you use Dynamic Data without Linq to SQL?

I have an application that creates database tables on the fly. I'd like to create an interface to CRUD this data. But because the tables are created as the application runs, I can’t create the Linq to SQL classes by dragging them onto the designer. However, I do know in my code what the tables I want to edit are. Can anyone tell me if ...

Launch Internet Explorer 7 in a new process without toolbars

Hi All, I need to run a web application in IE so it at least looks similar to a stand-alone application. I also need to be able to run multiple instances of this web application at the same time in separate sessions. To achieve this look I'd like to always launch Internet Explorer 7 in a new process without toolbars/statusbar from a s...

What do Google think about links without text, with only background?

Like this one: <a href="/" id="logo"></a> Or should I do like this instead and change the font-size to zero: <a href="/" id="logo">Home</a> Edit: No one here seems to understand my question. So I'll post some CSS too: #logo { display: block; width: 326px; height: 69px; background-image: url(images/logo.gif); ba...

HOW TO make test.php continue with rest of coding without waiting for a function to complete task?

Hi there, This is the case. At test.php, I have a function dotask(a,b,c,d); This function need to do task that need 2-4 minutes to complete. Task including insert new record into db, curl call to other url to do task and etc. However, I want test.php to: Just make sure dotask(a,b,c,d) is called, no need to wait until task completed th...

QT4 Drag Window Without Title Bar

The application I'm working on has a custom UI that required me to remove the title bar from the main window. Unfortunately, I can't figure out how to make it so I can move the application on the screen :) The code I have which is removing the title bar is the following: MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent...

javascript regex: replace url text link with image,but not in html tags

Hi this is my pice of code: <div style="overflow: hidden; width: 445px;">[IMG]http://i29.tinypic.com/mydog.png[/IMG] tak si to http://i29.tinypic.com/mycat.png Lorem ipsum loremai <img width="15" border="0" align="middle" src="images/smejo.gif" valign="middle"/> <img src=http://www.example.com/index.png alt> <img sr...

Visual Studio C# WPF run without debugging - nothing happens

I am new to Visual Studio 2008, and I am learning the old "Hello World" application using a WPF application. When I click 'Start without Debugging' I see a window open for a half-second on my taskbar, and then close. I dont get any window that stays open with my application in it. I cannot figure out why this is happening. If I trying op...

Decompile without CLI header?

Is it possible to decompile an executable that when trying to decompile w/ Reflector, errors out with "Module ... does not contain a CLI header.", and if so, how to decompile this to C#? Thank you. ...

How to send post data to any url (with redirection) without using curl or fsocket in php

Hello, I would like my page to be redirected to new url with some post data being sent to it. I don't want to use curl or fsocket because they will not redirect user to that new url. Is there any alternative for header("Location: blahblahblah"); to send post data? I tried with document.form.submit(); and it worked but some users are fa...

How to place a navigation controoler upon a tabBar controller in iPhone without using Interface Builder?

Hello, Can you provide me some good link or example, on how to place a navigation controller upon a tabBar controller in iPhone without using Interface builder. i know to create tabBar controller . Plese tel me how to place a navigation in the view provided by tabBar controller. ...

Protect Windows folder without encrypting the contents

Hi, I want to protect the "www" folder in my Apache server. Checked some tools on the net like TrueCrypt, FolderEncrypt etc. All these encrypt the folder contents. If the www folder is encrypted, then my php won't work. Is there a way to lock the folder in windows without encrypting its contents.[ A little harder to crack then no lock at...

Refresh User Control without Refreshing the Page

hi, I have a page and on that page i have a button and a user control. I want to refresh the user control without refreshing the page. I know i cannot do it otherwise so i did is... (wrapped my user control inside the Update Panel.) <asp:TextBox ID="txtName" runat="server"></asp:TextBox><br /> <asp:Button ID="btnAdd" runat="server" T...

SplitView in iPad -- Maintain two views without popover

Hi all In a switch view mode in iPad, is it possible to maintain the two views in landscape mode and also in portrait mode without having to use the popover?(Maybe just adjust the width of each views in portrait, instead of the popover) How would I do that? ...

Print a specific image from webpages without popup window or new window?

Hi, Is there any possible to print a specific image from webpages without popup window or new window? Suppose i have four images in my application. Just i need to print second image only. And also i want to implement large page like some textarea, some text box, more images etc... So many code available with pop up window or new window...

MS Word like Editor without using office libraries

Is it possinle to create an editor in c# without using office libraries which should includes all the features of a Dic file including tagging fascility. please suggest? ...

How to obtain the default browser without registry lookup in .NET ?

Does anybody knows a way how to get the default browser without doing a lookup on the registry using the .NET framework? ...

ASP.NET Development WITHOUT Visual Studio.

Hi All, I have a website that I hand coded myself, and now I want to use ASP.NET, so a few weeks ago I opened my html files inside Web Developer, and to my surprise as I made changes to the files in the Designer, everything just went out of whack. Things weren't where they were supposed to be etc. So, are there any sites online (I'd pre...

Marquee without Space

Hello, I have a marquee that is scrolling upwards. <marquee scrollamount="2" scrolldelay="0" direction="up"> Element One<br/> Element Two<br/> ... Element Five Hundred and Thrty-Seven <!-- ;) --> </marquee> Now, what I want, is to achieve that, when the elements end, there is no space until the last element is no longer displayed, b...

Password protect a page without db access with php

Is it possible to password protect a page without db access? I may have only few pages. But I should be able to change password and also save sessions etc. And I want a secure way as it's for production site! How is it to store in a config.php after md5: <?php username="admin"; password="1a1dc91c907325c69271ddf0c944bc72"; ?> If ...

Ipad Application without nib starts and then immediately closes

Im writing an ipad application. So far what I have is a Delegate and Root view controller which initializes the menu screen that starts the game. I am not using a nib, so in my main class, i start the application with UIApplicationMain(argc, argv, nil, @"PictionaryAppDelegate"); In my delegate, I have a applicationDidFinishLaunching...