Topics
-
- 1 reply
- 708 views
I want to open a crystal report from a ASP.NET web application written in VB. Can anyone give me a programming example?
Last reply by mike55, -
- 2 replies
- 1.3k views
I want to change the appearance of the buttons on my form so that the BackColor property is White. The problem that I am having is that when a button is disabled the font color still looks pretty dark making it difficult to distinguish from an enabled button.
Last reply by keySharp, -
- 0 replies
- 913 views
i have written a printing module in visual basic.net which manages my reports and printjobs i need help on the following: the user must select a printer and papersource on a control panel this settings i save to a database so when a printjob has to print i read the settings from the database and select the printer and papersource and print the job i can read the available printer and the available papersources but i hang in the selection from the papersource so how can i select the papersource? another question is how do i change the papersource during one printjob all reports with 1 page should be printed from tray1 all reports with more then 1 page the first…
Last reply by andmar, -
-
- Administrators
- 1 reply
- 12.8k views
Result of being bored in a hotel a few nights ago. Fairly rough and ready (only took a few hours and several guiness to throw together) but should handle ID3 v1 tags fine. Supports ID3 v2 tags more or less : Provides property access for the more common tags but should read and write all tags. Text based tags are untested with anything but ASCII content. Error handling may be a bit lacking feel free to PM me with any critical problems and I'll try to find time to fix them ;) Can be used something like MP3TagLibrary.ID3v2Tag test = new MP3TagLibrary.ID3v2Tag(); MessageBox.Show(test.Artist); //should display artist test.Artist= "This will overwrite the real tag - be …
Last reply by PlausiblyDamp, -
-
- 4 replies
- 1.5k views
How can I compare two numeric string to see which one is bigger?, I mean, I have two strings submited by textboxes....I try to compare if sting a (14) is bigger than string B (9), but it keeps saying me B is bigger (if I just compare textbox1 < textbox2). How can I compare two strings by its numeric values? I tried to use convert.toint16, but it says I give the string in bad format. How can I compare those???
Last reply by Wile, -
- 0 replies
- 1.4k views
Hi, good day , this forum is excellent :D Exposition: -I have a datagrid, which is binding to a datatable , the datable initially contents a one row. Escenario: -Datagrid has a 2 rows, the firts rows is a vacie row(to my datatable), and second row is the marked with ("*") , the user open the form with a grid and his posisionated in the first row and first col ( 0,0 ) , after , the user click on the row marked with astericsk(second row) Question: -How know the previos row index to the grid , after the user changes the a row to a other row ?? , because i need validating the row, and if row is vacie and user changes a row marked("*") , i msgbox to the user for …
Last reply by jorgeglez, -
-
- Moderators
- 4 replies
- 1.4k views
i need to get very aquainted with sql server, and i need a good book. there are many availiable, so was hoping someone here could narrow down my list of choices. thanks
Last reply by Robby, -
-
- 0 replies
- 1.5k views
Hello... i'm trying to create an image column in a datagrid but it isn't working(both the boundcolumn and the hyperlink column are working fine). Below i'm posting both the asp.net code from my datagrid and the vb code from database connection. Can anyone tell me why it isn't working???? Datagrid code --------------------------------------------------------------------------------------------------------------------------- <asp:dataGrid id="dgrid" runat="server" Font-Size="X-Small" AllowSorting="True" AutoGenerateColumns="False"> <Columns> <asp:TemplateColumn HeaderText="Thumbnail"> <ItemTemplate> …
Last reply by phight, -
I get the error: here is all of the code except the windows form code. help :(?
Last reply by snarfblam, -
- 0 replies
- 1.6k views
I would like to make client database. Provider is Firebird. There are .NET Components they are more-or-less like SqlDb Components. If I want to use ADO.NET I should do relation on the server, or in .Net client, or there and there? This question appeared whene I make SELECT with two JOINED table and I put it as DATASOURCE to datagrid. And my question was how to add new row, and update row JOINed table ?? This is for me very important, please help me. br
Last reply by calvados, -
-
- Administrators
- 2 replies
- 1.4k views
At work they do a large project in Progress, which is a large Database application (comparable to Oracle and SQL Server) with a comprehensive programming language attached. They took me in as a VB6/VB.net programmer and for the last two days I've been learning Progress. Progress itself is very easy. The IDE could be nicer, but the language isn't hard at all. 2 days in and I'd say I could do 70% of a business application off the top of my head or looking up syntax. Progress also allows "Include" files and my new company uses them extensively. This is a bit of a problem. Progress uses Includes like PHP does, basically where the line of code is pointing to th…
Last reply by ThePentiumGuy, -
-
-
- Administrators
- Leaders
- 3 replies
- 1.3k views
What are the benefits on having option strict on as opposed to turning it off? God knows its easier to develop an application with it off.
Last reply by PlausiblyDamp, -
-
- 2 replies
- 2.8k views
As you all know, when using a texture in Direct3D we must inform the texture's size when using it as a sprite in a form of a rectangle. What I need to know is how can I retrieve the picture's size which is being assigned to the texture object so that I can create the apropriate rectangle to display the correct texture aspect ratio. Like, if I load a 32x32 picture into a texture object I also need to inform the Sprite.Draw command that the texture is a 32x32 image. Pseucode: //Check the apropriate texture size to use if the original image's size which was loaded into the current texture is 32x32 sprite.draw(texture with size 32x32) else if image size is 128…
Last reply by EFileTahi-A, -
-
- Leaders
- 7 replies
- 1.3k views
I have a variable dim list as string() = new string() {"list1", "list2"} how can I add to this while looping through a recordset?? Cheers Simon
Last reply by IngisKahn, -
-
- 8 replies
- 7.6k views
I'm looking for source code on how to convert an entire HTML page into a BITMAP image. Not a screenshot; I'm able to get that. But my BITMAP needs to save what is not currently displayed as well(scroll). Any help would be greatly appreciated! Thanks in advance Ben
Last reply by woklet, -
- 7 replies
- 1k views
VB.NET 2003 and SQL 2000 I am attempting to create a web form to query a SQL DB to post xray history using Windows authentication. Currently the test IIS is running on my XP PC and the SQL server is on the network (domain). The Form works fine when I run it from the VB Designer. When I run it from just a browser it fails the first time with a General Network Error. Check you Network documentation. If I try it again it works....I think because my code does not disconnect from the sql server even if I close the browser. When I get the initial error, I can look in the Ent Manager and see that I did get connected to the SQL server. I looked up the error on the Microsoft…
Last reply by rothjm, -
- 13 replies
- 1.5k views
I have created a web application and it works fine on the computer it was created on. However when I try to browse to the application on another machine it does not work? The computers are networked, it gives me a page cannot be displayed error. I guess I am trying to use the computer the app. was created on as a web host. Not sure whats wrong and did I mention I am new to ASP.NET
Last reply by lothos12345, -
- 3 replies
- 3.5k views
I have an MDI child form. When the user uses the arrow keys to go between main menu items they can get to both the child forms system menu (see attachment) and the parent forms system menu. How do I delete/remove the child forms system menu? Thanks so much for any help. I've looked everywhere but can't seem to find anything.
Last reply by moodman, -
- 1 reply
- 822 views
Anyone happen to know what I'd need to do to enable my program to detect/catch/hook clicks in IE (and possibly other browsers) and then handle the click action myself? I'm interested in making my own download manager, and the ability to detect file downloads in the browser, then handle the downloads myself, would make a great addition to my program. Any pointers?
Last reply by mskeel, -
- 1 reply
- 1.8k views
hi to all, i'm currently developing an application to control user access to locations using finger prints. Now to each user there is a schedual associated to him that will define if he can accesse that location in that time. now i insert without problem a schedual and list it too. Now the problem comes when i try to update a schedual. when i try to open the form it gives me this erro error creating window handle can anyone give me a help?
Last reply by stustarz,
-
Who's Online 0 Members, 0 Anonymous, 83 Guests (See full list)
- There are no registered users currently online