- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 22
- Posts with Upvotes
- 21
- Upvoting Members
- 9
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: What are you using? Webforms, WPF, Winforms, MVC? | |
Re: Perhaps this code will help you, found at [SharePoint Code Snippets by Sudarsan](http://sharepointcodesnippetsbysudarsan.blogspot.ca/2012/10/absolute-url-of-list-list-item-in.html) Example- Get Full Url Of A SharePoint List SPUtility.GetFullUrl(SPContext.Current.Site, listobj.DefaultDisplayFormUrl); Example- Get Full Url Of A SharePoint ListItem SPUtility.GetFullUrl(SPContext.Current.Site,"/"+ itemobj.Url); | |
Re: I would add Unity to the list of choices. I recently created my first basic game in Unity. It took me about 4 evenings to get it to beta status. The biggest plus to unity is its multi-platform. 2nd is that you can do a lot of stuff by drag … | |
Hey folks. Great job on the new site! Reporting a strange overlay issue on the Homepage in Chrome 19.0.1084.46 m on 64bit Windows 7. There is a taller than normal header and a blank spot on the right sidebar that, on mouseover, displays an overlay on the screen. Like the … | |
Re: Why don't you use a SQL Statement instead? If you only need one record (oldest date) then it isn't efficient to bring back all records from the database. Amend your query to something, [CODE]SELECT TOP 1 [fieldname], [etc...], FROM tablename WHERE [column2] = '<listvalue>' ORDER BY [datefield][/CODE] That will give … | |
Re: [quote=Comatose]I think you have to manipulate the printer object directly.....[/quote] This is correct. Use: [CODE]Printer.Orientation = 2 Form1.PrintForm[/CODE] 1 for Portrait and 2 for Landscape. | |
Re: Try setting a css class to that column and setting the css style "visibility:hidden;". This way asp can still access the data but the user won't see it. If the data is confidential then your best bet is to pull the data from DB on post back and work with … | |
Re: Hmm, off the top of my head, name is depreciated. What browser are you trying? Swap out "name" for "id". Also, try [CODE]onclick="return clearVillage();"[/CODE] Some browsers, (IE usually), likes the return keyword at times. Also, Check to ensure the button isn't calling the function before the function is declared. (i.e. … | |
Re: High quality like that is rarely free. Just sayin. | |
A friend of my recently asked me to help him set up a web based radio. Upon doing some research I found he has only original content (not copy right stuff), all static mp3 files, not live talk, and wants to loop the audio. I've found sites like radionomy and … | |
Re: [QUOTE=freedom-impulse;488692]im having a problem in connecting data access with vb 6 enterprise edition i dont know how to connect trough ADO[/QUOTE] Read the sticky thread on this forum. Here is a link for your reading convenience: [URL="http://www.daniweb.com/forums/thread41057.html"]http://www.daniweb.com/forums/thread41057.html[/URL] | |
Re: CSS styled XHTML is much better for a blog. gridviews would probably just create too much extra html and probably even table tags.... :S | |
Re: [QUOTE=tet3828;1366284] Should this data be stored in an array? or an sql database? [/QUOTE] What you have there is meta data. The best way to get started from your level is to think about that data as an [URL="http://www.informit.com/articles/article.aspx?p=101373&seqNum=2"]object[/URL]. So, each picture will be an object with properties. Size, location … | |
Re: I think the grid view and detail view should do this for you. Check those controls out. | |
| Re: Where is it hosted? You usually have to order a Certificate from a provider like RapidSSL, GoDaddy, Geotrust, etc. The process will involve a bit of back and forth from your hosting provider unless you manager your own server. Some shared hosting accounts provide a free shared SSL, but that … |
Re: You can use an option group for multiple choice answers. A module or project level variable will hold the score. Give it your best shot and post your code if you have issues. | |
Re: This should get you on your way. [URL="http://www.codeproject.com/KB/GDI-plus/TransparentImageWatermark.aspx"]http://www.codeproject.com/KB/GDI-plus/TransparentImageWatermark.aspx[/URL] | |
Re: If your going to store the rules in SQL Server, why not store the data in SQL server? If you really can't move the data, you can use an XML file to store the validation rules and then compare the data in the text file. So your XML file would … | |
Re: The basic idea is this: Each port can only have 1 passive listening socket, but many active sockets. You code must listen for connections on the port, when one is detected, it must create a new socket to handle the active connection and then go back to passively listening for … | |
Re: Sounds like you need to take code out of the same table as category, might help make the system more usable. | |
Re: I feel your pain. We have several applications written in classic asp. We are starting all new projects in VS2008, .NET platform. All of our legacy asp code is maintained via Dreamweaver CS3 or CS4. While I know a complete port to .net is usually not cost effective, I would … | |
Re: Once you figure out the loops, i would kindly suggest that you initilize your random function before calling it. I'm sure one of the expert residents (nudge at comatose) can explain a lot more as i'm not 100% sure how this is done in VB, but each time you start … | |
Re: We use Isqsolutions.com as a reseller at work and find them very reliable. I can safely recommend them as a good choice for ASP and ASP.NET functionality. The also support MS Access, SQL Server and MySQL. | |
Re: [QUOTE=mohamed1;814947]thank u for reply so i think if site is not on my computer i just hired space and domain i must call the company i hired from and tell them to do as u told is that no other way because they are with very slow response?!?!?[/QUOTE] Most hosts … | |
Re: I did something similar recently. Basically a form which requires approval before being saved. So, I created a copy of the table which normally holds the form data. On save, the data is saved to the copied table. Once approved, the data gets copied to the original table and the … | |
Re: You should ask this question over in the .net forum.... | |
Re: With ASP, you want to use the QueryString Collection of the Request Object. [URL="http://www.w3schools.com/ASP/coll_querystring.asp"]http://www.w3schools.com/ASP/coll_querystring.asp[/URL] So, you would code something like this: [CODE] Dim email email = Request.QueryString("email") [/CODE] I would also suggest creating a hash (md5 or sha) from the email and using that in the querystrings. This just keeps … | |
Re: Can you post your form html? Thanks. There is probably just a disconnect between the form item names and your form processor code. | |
I must be getting soft.... How the heck to do I programmatically add new rows to a datagrid / flexgrid or whatever grid using VBA? It's not bound to anything and I'm trying to add data on the fly. Any ideas? |