440 Posted Topics

Member Avatar for vmanojnair

[quote=varsha gupta;295033]plz help me sending a small project in c language for fulfilment of my 5 sem b tech course.... thanking u[/quote] [b]Varsha[/b] - We are here to assist and help, but not do the work for you. If you have some guidelines on the project requirements that can help …

Member Avatar for peter_budo
-4
675
Member Avatar for himerus
Member Avatar for Paladine

An example of using the ToString() DateTime Strings to produce common date & time output formats in Visual Basic.Net

Member Avatar for a.j.
-1
158
Member Avatar for Paladine
Member Avatar for Paladine
Member Avatar for usmanbssi
Member Avatar for nav33n
0
168
Member Avatar for Embeza

As you wanting to store this in the Database? You could us an old CGI standard? Or you could do something like this website shows (writing to a text file). [URL="http://www.c-sharpcorner.com/Code/2002/Aug/HitCounterAspNet.asp"]http://www.c-sharpcorner.com/Code/2002/Aug/HitCounterAspNet.asp[/URL] or another example [URL="http://www.asp101.com/samples/counter_aspx.asp"]http://www.asp101.com/samples/counter_aspx.asp[/URL]

Member Avatar for jeju
0
704
Member Avatar for c#dummie

Well ok, SQL 2005 Server Express is a good starting point. You could use Access, MySQL, or Oracle as other possible databases. Depends on your knowledge and experience. Knowing the differences between T-SQL and PL-SQL is also something to consider. For the size of the setup you are describing I …

Member Avatar for julien_h
0
113
Member Avatar for free_eagle

Basically it comes down to the difference between .Net 2.0 (2005) and .Net 3.5 (2008) Framework. Basically what you code in .Net 2.0 won't work the same if at all with .Net 3.5 framework. But fear not, with Visual Studio 2008 allows you to select .Net 2.0, .Net 3.0 or …

Member Avatar for jjoensuu
0
303
Member Avatar for AlexClifford

".[COLOR=DeepSkyBlue][I]. I don't mean to be critical of your style of coding, I know we all learn at different speeds and are all at different stages of development. One of the things i love about ASP and ASP.net is there are an almost unlimited number of ways to accomplish a …

Member Avatar for zoo999
0
858
Member Avatar for hunter007

OK this post is being done with and through the use of Knoppix Linux. Which I must say I am having a blast with. It is really kind of fun to have an operating system on a CD ready to go. :-) The only drawback I have with it, is …

Member Avatar for gnujohn
0
949
Member Avatar for cpopham
Member Avatar for serkan sendur
0
155
Member Avatar for Paladine

I am curious. When designing a website how do you know how wide you can make the page? Meaning, I use a 1280 x 1024 resolution, so making webpages just willy nilly I get a page that looks great for me but not on a machine that is 1024 X …

Member Avatar for almostbob
0
116
Member Avatar for Slade

Just a long shot but fix one thing and let me know the result: [code] <authentication mode="Forms" /> <Forms name=".ASPXSession" loginUrl="FacLogin.aspx" protection="All" /> <credentials passwordFormat = "Clear"> <user name="admin" password="admin"/> </credentials> </forms> [/code] change the <Forms name=".ASPXSession".... to [b]<forms name=".ASPXSession"... [/b] it can be as simple as a [u]capital letter[/u] …

Member Avatar for priyesh.gupta
0
257
Member Avatar for Wallace Tait

[b]Wallace[/b] - one simple & obvious question : [u]What do you plan to install onto the harddrive after formating it?[/u] Or are you just wanting to wipe the drive clean for resale reasons?

Member Avatar for bluedevices
-2
204
Member Avatar for madelein

Just off the top of my head your connection string to the DB is far to long , and complicated for what you are doing. Replace it with this : "Provider = Microsoft.Jet.OLEDB.4.0;Data Source=F:\relayMaster.mdb;User Id=Admin;Password=;" And second, you dont put single quotes inside the double quotes, and your may work. …

Member Avatar for Abhay Joshi
0
585
Member Avatar for nubs

Well I wouldn't store any required files in the bin directory, but rather the application root directory. Move the files their and adjust the links or mappings accordingly and try again.

Member Avatar for Comatose
0
160
Member Avatar for npasma

Well first off you have the second parameter of the Add Method containing the value you are passing in, and not the datatype. And you have not created any Parameter Objects , to store those parameter values for the SQL statement. cmdSoftware.Parameters.Add("@SoftwareNum", Software.SoftwareNum) should be [code] [b]cmdSoftware.Parameters.Add("@SoftwareNum", SqlDataType.Int) [/b] [/code] …

Member Avatar for Comatose
0
463
Member Avatar for rooparaj

Try looking at : [url="http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/ctrlref/webctrl/Button/Button3.src"]LINK 1 [/url]- Button Changes [url="http://aspnet101.com/aspnet101/tutorials.aspx?id=28"]LINK 2 [/url]- Tab Control You normal would change this using CSS , as VB script/code is the code for the business logic of the application. HTML is the layout code for the ASP.Net Page, and CSS would be used for …

Member Avatar for sreenivas.varma
0
446
Member Avatar for morag

Ok, the client has .NET Framework installed? You say ASP? Do you mean ASP.NET or classic ASP? Have you restarted IIS ( or whatever the Webserver that is hosting .Net) after your upload just to make sure? You mention uploading to the host, but then checking the conneciton. You are …

Member Avatar for binoj_daniel
0
180
Member Avatar for rooparaj

To my knowledge you have to set the Method of Storage for the session. See: [url="http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_howto_session_store.htm"]Link[/url] You need to specify the session storage method: [list] [*][color=Red][url="http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_howto_session_store.htm#In%20Process"]In Process[/url][/color] [*][color=Red][url="http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_howto_session_store.htm#State%20Server"]State Server[/url][/color] [*][color=Red][url="http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_howto_session_store.htm#SQL%20Server"]SQL Server[/url][/color] [/list] So that is why ou are having an empty Session! Hope this helps! [QUOTE=rooparaj]I am facing problem in …

Member Avatar for johnly
0
334
Member Avatar for atv161

[QUOTE=atv161]how can I select which data I want on a report from code in vb.net? I've been trying to use a dataset but that isnt working.[/QUOTE] take a look at this link: [URL=http://www.devarticles.com/c/a/C-Sharp/Creating-Graphical-Reports-With-Crystal-Reports-in-.NET/]Crystal Reports Deployment[/URL] My system is going down for virus removal, and when it comes back up I …

Member Avatar for gomathinayagam
0
182
Member Avatar for Dhruv Shah

[quote=Dhruv Shah;252950]i am developing a job site and i require to search for records from the database. i m passing value fro that parameter in textbox. so please help me thanks in advance[/quote] pseudo_code: [code] Dim strSQL as String strSQL = "SELECT Field1, Field2 FROM tbltemp WHERE Field1 = '" …

Member Avatar for krany18
0
421
Member Avatar for Brodin

Haven't worked in VB6 in a long time, so not sure if something like this would help?? :confused: [code] Private Sub Search_Click() Set dbindex = td.Indexes(0) dbrecordset.Index = dbindex.Name SearchForm.Show End Sub [/code] After the user dismisses the Search… dialog box, we retrieve the text to search for from that …

Member Avatar for voxviennasierra
0
169
Member Avatar for Paladine

Ok folks, I am just curious, what would be the slickest program to use for creating these nice image maps that so many sights have today? I mean, no days you have to be more than just a programming/analyst, but a bloody artist too...least with the web side anyway. Anyone?

Member Avatar for peter_budo
0
721
Member Avatar for hkarthik

Remember that this code is running on the web server in a process that is not running as the currently logged on (to the server) user. Therefore the process will be running under its own Window Station, and will not be able to interact with the desktop in any way. …

Member Avatar for reach_yousuf
0
192
Member Avatar for Amir Ali

Not sure I follow what you are saying. I did try it. By default the text (as the name of the textbox, in my case TextBox1) is automatically selected on startup. Why? That is because the control has [i]focus[/i]. If that is not what you want, then set the focus …

Member Avatar for koolkeran
1
853
Member Avatar for tapanp

Umm, ok. If you look at that error it tells you flat out... how do you expect to call on a CLSID (registry object) that you don't want to install in the server? Inorder to create the XLS file (which is an object) you will need to object registered in …

Member Avatar for hu_yang
0
323
Member Avatar for dina

True....sort of. Depends on what you classify a Database to be? Is not a DB a collection of relational data? Hence SQL, MySQL, SQL Anywhere, etc are just flavors of the SQL DB Type, while Access is just a flavor of the OleDB Type? Kind of like Excel is not …

Member Avatar for morphosin
0
1K
Member Avatar for Paladine

I may be dating myself, but anyone else care to open up to their past "like/love" of the computer erra to date? What do I mean? I mean, what thing or things did you find most appealing in computers over the years? Was it the creation of Linux or windows, …

Member Avatar for tecktalk
1
244
Member Avatar for KatB

Ok, thanks for the run down, but as the guidelines for posting here at Techtalk, is that you show some attempt at your assignment, and we can give guidance when you get stuck. Now after saying that; And for staters are you doing this in [B]Visual Basic [/B]or [B]Visual Basic.Net[/B]?? …

Member Avatar for jesan
0
635
Member Avatar for Paladine

I have an AMD X2 3800+ system, which until a few days ago had a 7800 GT video card, and now I have an 880GTS 512 MB card. Prior to the new card I was able to run, albiet slowly, City of Heroes on my system with dual screens. 1. …

Member Avatar for Avaj
0
184
Member Avatar for Slade

Maybe I am just tried, but what I have read of your question has left me confused? What are you saying with regards to header and inputs are confusing? [quote] ne of these inputs will be the header for the html e.g. "DaniWeb TechTalk computer support", the other for the …

Member Avatar for mallyajiggs
0
406
Member Avatar for Tahuti

Do you have another OS that you want to install on to the computer? i.e. Windows 2000 or Windows XP ? Do you have any software where like Partition Magic?

Member Avatar for chizy2
0
822
Member Avatar for n1cole

I have to agree. My experience with both JDBC and ODBC, as strange as this sounds, as shown that JDBC is faster. Which makes you wonder since JDBC requests through ODBC to a datasource. Not that I understand it completely. But I have created a forum in ASP and in …

Member Avatar for zanzo
0
627
Member Avatar for tgreer

Excellent code and guide for a beginner, [b]tgreer[/b]. :) [QUOTE=tgreer]I've posted a new article on my site, dealing with how to integrate JavaScript and ASP.NET. It's a "beginner level" article. [url="http://www.tgreer.com/aspnet_html_03.html"]http://www.tgreer.com/aspnet_html_03.html[/url][/QUOTE]

Member Avatar for SheSaidImaPregy
0
214
Member Avatar for zakarie

Just out of curiosity, what do you have runnin in your taskbar? i.e. the little area where time is displayed?

Member Avatar for giogioforums
0
794
Member Avatar for ppat

What version of ASP.NET? 1.0, 1.1, 2.0, or 3.0... each has different security levels/requirements/restrictions unique to its code level. For 2.0 : [URL="http://aspnet.4guysfromrolla.com/articles/120705-1.aspx"]http://aspnet.4guysfromrolla.com/articles/120705-1.aspx[/URL]

Member Avatar for Paladine
0
108
Member Avatar for snifer

You could also place this "connection" in a Web.config file, for security purposes... And to be sure... what version of ASP.NET are you speaking of? .Net 1.0, 1.1, 2.0, 3.0 ? 2.0 Tutorial: [URL="http://aspnet.4guysfromrolla.com/articles/110905-1.aspx"]http://aspnet.4guysfromrolla.com/articles/110905-1.aspx[/URL]

Member Avatar for Paladine
0
107
Member Avatar for brainchief

New Zealand! But then again, I am a die hard Canadian.. love Canada, hate the government here. :-) Australia is a close Second! Been to both....

Member Avatar for MidiMagic
0
723
Member Avatar for njwnews
Member Avatar for JCD

[QUOTE=slade]Just a suggestion, I'm not particularly skilled with vb either so my suggestion may seem ridiculous but I thought I'd try to help anyways. Have you tried replacing the if statements with case statements? Like this? Instead of [CODE] If CompanyName = "FranksCars" Then Discount = "

Member Avatar for ardsuggy
0
224
Member Avatar for djbsabkcb

I am assuming you mean with regards to a table? There is no way to do this, at least that I know of or ever heard of. The tables in access are not like an excel spreadsheet; used for display. Rather they are used to store data

Member Avatar for GolferGuy
0
119
Member Avatar for ohthisisj

What Software package are you using to burn? What operating system....?? What kind of CD-R's are you using?

Member Avatar for mohanrobin
0
128
Member Avatar for satees

Good points [B] nikkiH[/B]! One thing that can be done as well is to retrieve the date/time from the database as stored and use the parse/format methods in ASP.NET to produce the desired output. [B]Satees[/B] - the links [B]nikkiH[/B] provide is an excellent starting point.

Member Avatar for SheSaidImaPregy
0
218
Member Avatar for swep

Provide the sequence of events you go through that generates this error message and screen shot or capture the entire error message and we may be able to help

Member Avatar for justapimp
0
1K
Member Avatar for bharath

uMM, A few more details of what you "need" would help! What kind of projects? Windows API? ASP/Web based? Database/Dynamic, Games? Kind of wide open request!

Member Avatar for bjagadish06
0
129
Member Avatar for srikkanthan

OR if I recall just give Permission to the IUSR_anonymous User in Windows access to the directory/files. It is the default user used by ASP.Net

Member Avatar for prabinv
-1
181
Member Avatar for Slade
Member Avatar for leongaj

so you want someone to convert this for you? Interesting request. Let me ask you what version on visual basic do you have right now? where did you get he source code in BASIC from? Do you have the source files for it? If so post them. Makes it easier …

Member Avatar for jbennet
0
173

The End.