440 Posted Topics

Member Avatar for snufse

Ok a few things. What web browser are you using to view it in? Is the browser set to accept inline images? Is the image file name exactly as you have coded it (i.e. Not Logo.jpg, or LOGO.jpg, or logo.JPG)?? Try placing the Image in the same directory as your …

Member Avatar for Paladine
0
335
Member Avatar for macsgirl

Well you never seem to call UpdateDB() Function which would probably be what would store update the DB for you? Edit mode the index of a dropdownlist does not start at the right value. I have having problem when in edit mode the dropdownlist the index does not start at …

Member Avatar for Paladine
0
184
Member Avatar for EddyJiang

The problem is this line of code [B][COLOR=red]dTable= session("myCat")[/COLOR][/B] you are trying to put a session varible datatype to a Datatable datatype (make sense?) but you can't do this implicitly, you must cast it to the datatype you want. so it should be something like this [COLOR=RoyalBlue][B]dTable = CType(Session("myCat"), DataTable)[/B][/COLOR] …

Member Avatar for Paladine
0
266
Member Avatar for Mayur
Member Avatar for DiNo_r

if objReader2.Read() then dgSubPage.DataSource = objReader2 dgSubPage.DataBind() else ... end if

Member Avatar for Paladine
0
121
Member Avatar for larry78

Well that is possible if you have a missing part to your code.... In your code for the VB.Net application do you have connection open still? Remember the prinicples of .NET. You make calls to the DB, via opening a connection, retrieving your datasnapshot, then close the connection once the …

Member Avatar for Paladine
0
151
Member Avatar for zaphod2003

OK, are you doing this in ASP.NET with VB.Net Code behind or a Visual Basic.Net application? From your post, I get the feeling that it is in ASP.NET (.."[i]I thought I would the application in pure VB.NET[/i]" = my confusion..) Saying that, here is a very good overview of ADO.NET …

Member Avatar for zaphod2003
0
139
Member Avatar for Dark_Omen

[url]http://www.windowsforms.net/[/url] Fast Track C# Published by Wrox Visual C# Programming Published by Sybex [QUOTE=Dark_Omen]Does anyone know of any good tutorials online that teach windows forms in c#? Also does anyone know any good books that dicusses this topic? Thanks[/QUOTE]

Member Avatar for Paladine
0
134
Member Avatar for srikkanthan

Ok, well to my knowledge you can't once you have installed SP2. This is a new update to Internet Explorer, but I could be wrong on that part, as I do not use Internet Explorer. [QUOTE=srikkanthan]Hi I have a web page - in that i give a link to exe …

Member Avatar for srikkanthan
0
194
Member Avatar for Sycophant

Ok, I am tired so bare that in mind. But where is the event tied to the SignIn ImageButton? That is the submit button correct? Is the code for this [b] Login_Click [/b] is not tied to any object in the HTML side of the ASP.Net page? Saying that, I …

Member Avatar for Paladine
0
313
Member Avatar for fineline

Shouldnt have to add the account. Check this. Control Panel --> Administrative Tools --> Computer Management --> Local Users and Groups --> Users And see if there ASP.NET User is there? If it is, you may have a corrupt user profile, and if it is not something went wrong in …

Member Avatar for Letscode
0
149
Member Avatar for aarunraaj

Have you checked the folder permissions, to verify the Power users are allow to access the folder in IIS? [QUOTE=aarunraaj]Hi, I install IIS in windows 2000 Professional computer for Development purpose. in Administrator the IIS is Working Fine. But when i try to login a user with Power user Privilige …

Member Avatar for Paladine
0
237
Member Avatar for Txoov

[QUOTE=Txoov]I'm having a bit of problem with this testing page, [URL=http://www.uwstout.edu/alumni/improved/index.php?id=2]click here[/URL]. Whenever you click on the Welcome or Mission, the CSS buton changed as if there is a a.visisted put on the #lftSideMenu div, but the CSS does not have #lftSideMenu a.visited on. So why is it acting like …

Member Avatar for Txoov
0
134
Member Avatar for laynie21

Ok, To start, the web.config route of doing a login page, is not a requirement, so you page SHOULD work fine, as you said it is. It is important that you understand the use of the web.config file; a different means to the same end. But that is another discussion. …

Member Avatar for Paladine
0
216
Member Avatar for sethu
Member Avatar for columth

ASP.Net application files must reside in a "virtual directory" with the web server sees as that. Saying that, of those 3 files you have, they do not include the important ones from a functionality point of view: [b] global.asax, & web.config[/b]. [i]The former files controls application events, allowing you to …

Member Avatar for Paladine
0
70
Member Avatar for lorf14plus

I find this a little hard to follow/understand. Let me see if I get this?? You have a menu system, the user selects registration page? From this menu that selection should then take the user to the registration page?? I am a little confused with this line : [i]"then I …

Member Avatar for lorf14plus
0
193
Member Avatar for needhelp2005

Hmmm, well I used your code and it worked for me? Have you put break points in and seen what values are being passed? [QUOTE=needhelp2005]sending form data to database creates a error! hi i have created a form which should connect to a database and update it when the user …

Member Avatar for Paladine
0
181
Member Avatar for augie0216

YUP! The server error message is telling you exactly what the problem is: [b]This line of code, infact all the of the the lines of code below </form> tag need to be between <form></form> tags:[/b] [code] <asp:Button id="btnSubmit" style="Z-INDEX: 104; LEFT: 288px; POSITION: absolute; TOP: 248px" runat="server" Text="Submit"></asp:Button> [/code] And …

Member Avatar for Paladine
0
152
Member Avatar for rinyunzen

OK, You need to relax, and give me a step by step approach to how your application is to work. What will the user be doing? Provide the sequence of events... i.e. 1. user logins in, 2. user clicks main menu, etc. Remember!!! I am not working on your application, …

Member Avatar for rinyunzen
0
173
Member Avatar for KG800

Ok, you say this can't be in asp.net..... my response is why? Does the server not allow dynamic webpages? Inorder to connect to the DB and populate the page you have the following options: 1. ASP (Classic) 2. ASP.Net 3. JSP 4. PHP And in any of these options, the …

Member Avatar for KG800
0
149
Member Avatar for augie0216

Well you could do this many ways, but since you have not indicated that you are using a Database to store you information lets assume you don't and use an array. You could use several one-dimensional arrays or one multidimensional array. Store the information, then based on the choise by …

Member Avatar for NPH
0
342
Member Avatar for squeakerz83

[b]tgreer[/b] Is 100% correct. What you are asking is dangerous and breaks the rules of n-tier application development. But as tgreer mentioned, please provide more information, because what you are asking is not very clear, in the sense of why would you ever give such control to an end user? …

Member Avatar for Paladine
0
93
Member Avatar for EddyJiang

Ok, this is the problem You can't do this per say. [b]dTable=session("myCat")[/b] but what you shoul do is this: [b]dTable=CStr(session("myCat"))[/b] You need to convert it to a string. dTable is not set to anything recognizable (as the error message states). Hope this helps! [SIZE=3][b]*Note* Please use the CODE brackets when …

Member Avatar for Paladine
0
200
Member Avatar for rddreams
Member Avatar for jasonkit84

By viewing, you mean inside VB.Net if comes out in a different font? If that is the case, yes it would. Have you tried printing to the printer to see the result?

Member Avatar for jasonkit84
0
133
Member Avatar for Tdot

try looking at [url="http://www.projectsourcecode.com"][size=-1][color=#008000]www.planet-[b]source[/b]-[b]code[/b].com[/color][/size][/url]

Member Avatar for Tdot
0
192
Member Avatar for Mohsin Khan

[color=#000099]Imports[/color] CrystalDecisions.CrystalReports.Engine [color=#000099] Imports[/color] CrystalDecisions.Shared via a google search since I am work with none of my references. But I would give them a try!

Member Avatar for Mohsin Khan
0
167
Member Avatar for deeraj

I will provide the link: [url="http://www.dotnet247.com/247reference/a.aspx?u=http://www.dotnetbips.com/displayarticle.aspx?id=101"]LINK[/url] [quote=Bipin Joshi] [b]Displaying Images from SQL Server database in ASP.NET DataGrid[/b] [b]Introduction[/b] ASP.NET DataGrid web control can be bound quickly with any database table like SQL server. For most of the data types all you need to do is to add a bound column …

Member Avatar for deeraj
0
210
Member Avatar for jacob_h

Just to clarify, do you mean that with multiple Excel Spreadsheets running you get one Excel Indicator on the taskbar for them? If that is the case you must be running Windows XP Operating System; and this is a taskbar setting, Right click on the taskbar and select properties. I …

Member Avatar for jacob_h
0
97
Member Avatar for HereInOz

Just out of curiosity it sounds like it could be that the link to the tables has been lost. Reset the link(s) and it should work. But I am only guessing....I would have to check it out when I get home. Only Office 2000 and Windows 2000 at work.

Member Avatar for HereInOz
0
141
Member Avatar for N[e]tt[e]

You want something other than a Message Box? Why not make a Label or Textbox populate with a response that shows the stock left is less than 10? Do you mean a windows alert? Why make it that complicated? I would go with either a label or message box route. …

Member Avatar for N[e]tt[e]
0
159
Member Avatar for acuariano

Not that I am aware of for personal use. Professional use there is, but you would have to know how to do Sound Mixing to make it work. In order to seperate the sounds for Center, and Rear Channels. That is what Dolby Digital Prologic II does is takes the …

Member Avatar for Paladine
0
108
Member Avatar for marijana

Well simple enough..... . my first suggestion would be .NET Framework? Download from the Microsoft website? [url="http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en"]LINK[/url] Found via Google Search engine ".Net Framework for Windows 98" Hope this helps Happy coding :cool: [QUOTE=marijana]i'm kind of new .NET programmer and i don't know which files i need to install on …

Member Avatar for Mullethead
0
263
Member Avatar for Dark_Omen

Well i would start out at the ASP.Net website ([url="http://www.asp.net"]www.asp.net[/url] - clever eh?). And I have provided the link off that site for tutorials, which you can view the source code on. The source code is both in VB.Net and C#.Net . Some even have J# if you are interested. …

Member Avatar for Paladine
0
120
Member Avatar for smgtreker

[url="http://www.dotnet247.com/247reference/a.aspx?u=http://www.codeproject.com/cs/miscctrl/CustomAutoScrollPanel.asp"]LINK[/url] [url="http://www.windowsitlibrary.com/Content/770/04/1.html"][b]AutoScroll[/b] [/url] [quote] If you set the AutoScroll property to True, and you resize your form so that some controls "fall off the edge," scrollbars will be provided automatically so that the user can scroll the form and access the hidden controls. AutoScroll provides a very crude solution for …

Member Avatar for smgtreker
0
162
Member Avatar for Kmatt
Member Avatar for guins100

Umm ecaal statement??? OK, see if this helps. Dim nValue1 as Integer Dim nValue2 as Integer Dim nResult as Integer nValue1 = 5 nValue2 = 10 nResult = AddValues(nValue1, nValue2) Function AddValues(Paramater1 as Integer, Parameter2 as Integer) as Integer AddValues = Parameter1 + Parameter2 Return AddValues End Function Msgbox "The …

Member Avatar for guins100
0
97
Member Avatar for squeakerz83

So what is the issue? Is the if intID <> 0 giving you an issue? My advice is take a look at the link in my sig to the UPDATED: ASP.Net Login Page, as it will give you code that is similar and may explain some things for you.

Member Avatar for Paladine
0
137
Member Avatar for Slade

It is called a Combobox in Visual Basic! --> Under Windows Forms in the Toolbox

Member Avatar for dreyes67
0
300
Member Avatar for castro1688

C++ is an improvement on C in the sense of OOP. It tries to be an complete OOP language, but its cousin Java 2 is much more robust in the OOP programming than C++. C++.Net is C++ in the .Net environment. Making it Cross platform compatible ( the one thing …

Member Avatar for cpopham
0
108
Member Avatar for Richie

Ok let me see if I can help. A CLASS is nothing more than a blueprint of an object. And an object is nothing more than a "physical" (actually virtual is a better word) representation of a CLASS. And when we say INSTANTIATE and object or class we mean to …

Member Avatar for Paladine
0
123
Member Avatar for imfsub12

Sorry to hear that [b]imfsub12[/b]. I know this is a little late with a reply, but I just started as a moderator today. :-) Have you resolved the issue? Have you looked at setting the code that writes the date to the DB to format the date into the proper …

Member Avatar for Paladine
0
51
Member Avatar for mddv
Member Avatar for Page
0
260
Member Avatar for oenone

Looks very Stylin! Nice choice. I have heard of them, just never actually seen one up close and personal. :-)

Member Avatar for webbo
0
84
Member Avatar for Martian

[QUOTE=Martian]Wow..not a single person sent a reply.[/QUOTE] In my opinion ... [b]No[/b] it is not easier to learn SQL by learning Access first. The two are entirely different applications/programs/databases (if you can call Access that). My best advice is to pick up [i]SAM's Learn SQL in 10 minutes book[/i] and …

Member Avatar for RonR
0
203
Member Avatar for edbuck
Member Avatar for QKSTechTrainee

Don't have the answer but here is some related script that may point you in the right direction. [code] Author: Jason Tanem Description: This script reads in the names of drives and sends an email warning via Outlook if finds that a drive is below 2.5 GB free. Script: '= …

Member Avatar for TimMunro
1
393
Member Avatar for I_Byte

Ok, first off, what extactly are you trying to do with shapes? Secondly, you can only return something in a function if it has a value, thus you can not return a Console.writeline method. It has no intrinsic value. Also, when using Console.writeline, or anyother method of the Console object …

Member Avatar for DeFrog777
0
152

The End.